diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/factory/TableNodeFactory.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/factory/TableNodeFactory.java index 064db8ad..368fca4b 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/factory/TableNodeFactory.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/factory/TableNodeFactory.java @@ -122,7 +122,7 @@ public class TableNodeFactory { textBlock = context.getTextBlockFactory().fromContext(sequences, tableCell, context, page); tableCell.setLeafTextBlock(textBlock); } else { - cell.getTextBlocks().forEach(tb -> DocumentGraphFactory.addParagraphOrHeadline(tableCell, tb, context, emptyList())); + cell.getTextBlocks().forEach(tb -> DocumentGraphFactory.addParagraphOrHeadline(tableCell, tb, context, List.of(tb))); } } diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/graph/textblock/AtomicTextBlock.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/graph/textblock/AtomicTextBlock.java index 4aa66165..3fc40c4d 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/graph/textblock/AtomicTextBlock.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/graph/textblock/AtomicTextBlock.java @@ -25,6 +25,7 @@ import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.EqualsAndHashCode; +import lombok.Getter; import lombok.experimental.FieldDefaults; @Data @@ -44,6 +45,7 @@ public class AtomicTextBlock implements TextBlock { //position coordinates List stringIdxToPositionIdx; + @Getter List positions; @EqualsAndHashCode.Exclude @@ -119,17 +121,20 @@ public class AtomicTextBlock implements TextBlock { } - public CharSequence getLine(int lineNumber) { + public Boundary getLineBoundary(int lineNumber) { if (lineNumber >= numberOfLines() || lineNumber < 0) { - throw new IndexOutOfBoundsException(format("line %d out of range for AtomicTextBlock with %d lines", lineNumber, numberOfLines())); + return new Boundary(boundary.start(), boundary.start()); + } + if (numberOfLines() == 1) { + return boundary; } if (lineNumber == 0) { - return subSequence(boundary.start(), lineBreaks.get(0) + boundary.start()); + return new Boundary(boundary.start(), lineBreaks.get(0) + boundary.start()); } else if (lineNumber == numberOfLines() - 1) { - return subSequence(lineBreaks.get(lineBreaks.size() - 1) + boundary.start(), boundary.end()); + return new Boundary(lineBreaks.get(lineBreaks.size() - 1) + boundary.start(), boundary.end()); } - return subSequence(lineBreaks.get(lineNumber - 1) + boundary.start(), lineBreaks.get(lineNumber) + boundary.start()); + return new Boundary(lineBreaks.get(lineNumber - 1) + boundary.start(), lineBreaks.get(lineNumber) + boundary.start()); } @@ -209,10 +214,7 @@ public class AtomicTextBlock implements TextBlock { return ""; } - Set lbInBoundary = lineBreaks.stream() - .map(i -> i+ boundary.start()) - .filter(boundary::contains) - .collect(Collectors.toSet()); + Set lbInBoundary = lineBreaks.stream().map(i -> i + boundary.start()).filter(boundary::contains).collect(Collectors.toSet()); if (boundary.end() == getBoundary().end()) { lbInBoundary.add(getBoundary().end()); } diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/graph/textblock/ConcatenatedTextBlock.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/graph/textblock/ConcatenatedTextBlock.java index c560814e..959c05ef 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/graph/textblock/ConcatenatedTextBlock.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/graph/textblock/ConcatenatedTextBlock.java @@ -89,7 +89,7 @@ public class ConcatenatedTextBlock implements TextBlock { @Override public int numberOfLines() { - return atomicTextBlocks.stream().map(AtomicTextBlock::getLineBreaks).mapToInt(List::size).sum(); + return atomicTextBlocks.stream().mapToInt(AtomicTextBlock::numberOfLines).sum(); } @@ -114,18 +114,37 @@ public class ConcatenatedTextBlock implements TextBlock { } + @Override public Rectangle2D getPosition(int stringIdx) { return getAtomicTextBlockByStringIndex(stringIdx).getPosition(stringIdx); } + public Boundary getLineBoundary(int lineNumber) { + + if (atomicTextBlocks.size() == 1) { + return atomicTextBlocks.get(0).getLineBoundary(lineNumber); + } + int lineNumberInCurrentBlock = lineNumber; + for (AtomicTextBlock atomicTextBlock : atomicTextBlocks) { + if (lineNumberInCurrentBlock < atomicTextBlock.numberOfLines()) { + return atomicTextBlock.getLineBoundary(lineNumberInCurrentBlock); + } + lineNumberInCurrentBlock -= atomicTextBlock.numberOfLines(); + } + return new Boundary(boundary.start(), boundary.start()); + } @Override public List getPositions(Boundary stringBoundary) { + List textBlocks = getAllAtomicTextBlocksPartiallyInStringBoundary(stringBoundary); + if (textBlocks.isEmpty()) { + return Collections.emptyList(); + } if (textBlocks.size() == 1) { return textBlocks.get(0).getPositions(stringBoundary); } diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/graph/textblock/TextBlock.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/graph/textblock/TextBlock.java index f757ae81..0270bf20 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/graph/textblock/TextBlock.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/graph/textblock/TextBlock.java @@ -12,6 +12,7 @@ import java.util.stream.Collectors; import com.iqser.red.service.redaction.v1.server.layoutparsing.document.graph.Boundary; import com.iqser.red.service.redaction.v1.server.layoutparsing.document.graph.nodes.Page; +import com.iqser.red.service.redaction.v1.server.layoutparsing.document.utils.RectangleTransformations; public interface TextBlock extends CharSequence { @@ -30,6 +31,10 @@ public interface TextBlock extends CharSequence { int getPreviousLinebreak(int fromIndex); + Boundary getLineBoundary(int lineNumber); + + + List getLineBreaks(); @@ -48,6 +53,23 @@ public interface TextBlock extends CharSequence { int numberOfLines(); + default CharSequence getLine(int lineNumber) { + + return subSequence(getLineBoundary(lineNumber)); + } + + + default List getLinePositions(int lineNumber) { + + return getPositions(getLineBoundary(lineNumber)); + } + + + default Rectangle2D getLineBBox(int lineNumber) { + + return RectangleTransformations.rectangle2DBBox(getLinePositions(lineNumber)); + } + default String searchTextWithLineBreaks() { return subSequenceWithLineBreaks(getBoundary()); diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/services/EntityCreationService.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/services/EntityCreationService.java index 9b189dfa..34e84e02 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/services/EntityCreationService.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/services/EntityCreationService.java @@ -3,6 +3,7 @@ package com.iqser.red.service.redaction.v1.server.layoutparsing.document.service import static com.iqser.red.service.redaction.v1.server.layoutparsing.document.utils.RedactionSearchUtility.getExpandedEndByRegex; import static com.iqser.red.service.redaction.v1.server.layoutparsing.document.utils.RedactionSearchUtility.getExpandedStartByRegex; import static com.iqser.red.service.redaction.v1.server.redaction.utils.SeparatorUtils.boundaryIsSurroundedBySeparators; +import static java.util.stream.Collectors.toMap; import java.util.Collection; import java.util.Collections; @@ -15,8 +16,10 @@ import java.util.Set; import java.util.stream.Collectors; import java.util.stream.Stream; +import org.apache.commons.lang3.tuple.Pair; import org.kie.api.runtime.KieSession; +import com.google.common.base.Functions; import com.iqser.red.service.persistence.service.v1.api.shared.model.redactionlog.Engine; import com.iqser.red.service.redaction.v1.server.layoutparsing.document.graph.Boundary; import com.iqser.red.service.redaction.v1.server.layoutparsing.document.graph.DocumentTree; @@ -26,8 +29,10 @@ import com.iqser.red.service.redaction.v1.server.layoutparsing.document.graph.en import com.iqser.red.service.redaction.v1.server.layoutparsing.document.graph.nodes.NodeType; import com.iqser.red.service.redaction.v1.server.layoutparsing.document.graph.nodes.Page; import com.iqser.red.service.redaction.v1.server.layoutparsing.document.graph.nodes.SemanticNode; +import com.iqser.red.service.redaction.v1.server.layoutparsing.document.graph.nodes.Table; import com.iqser.red.service.redaction.v1.server.layoutparsing.document.graph.nodes.TableCell; import com.iqser.red.service.redaction.v1.server.layoutparsing.document.graph.textblock.TextBlock; +import com.iqser.red.service.redaction.v1.server.layoutparsing.document.utils.RectangleTransformations; import com.iqser.red.service.redaction.v1.server.layoutparsing.document.utils.RedactionSearchUtility; import com.iqser.red.service.redaction.v1.server.redaction.adapter.NerEntities; import com.iqser.red.service.redaction.v1.server.redaction.adapter.NerEntitiesAdapter; @@ -61,7 +66,72 @@ public class EntityCreationService { } - public Stream betweenStringsInclusive(String start, String stop, String type, EntityType entityType, SemanticNode node) { + public Stream betweenStringsIgnoreCase(String start, String stop, String type, EntityType entityType, SemanticNode node) { + + List startBoundaries = RedactionSearchUtility.findBoundariesByStringIgnoreCase(start, node.getTextBlock()); + List stopBoundaries = RedactionSearchUtility.findBoundariesByStringIgnoreCase(stop, node.getTextBlock()); + + return betweenBoundaries(startBoundaries, stopBoundaries, type, entityType, node); + } + + + public Stream betweenStringsIncludeStart(String start, String stop, String type, EntityType entityType, SemanticNode node) { + + List startBoundaries = RedactionSearchUtility.findBoundariesByString(start, node.getTextBlock()); + List stopBoundaries = RedactionSearchUtility.findBoundariesByString(stop, node.getTextBlock()); + + startBoundaries.forEach(boundary -> { + boundary.setStart(boundary.start() - start.length()); + boundary.setEnd(boundary.end() - start.length()); + }); + + return betweenBoundaries(startBoundaries, stopBoundaries, type, entityType, node); + } + + + public Stream betweenStringsIncludeStartIgnoreCase(String start, String stop, String type, EntityType entityType, SemanticNode node) { + + List startBoundaries = RedactionSearchUtility.findBoundariesByStringIgnoreCase(start, node.getTextBlock()); + List stopBoundaries = RedactionSearchUtility.findBoundariesByStringIgnoreCase(stop, node.getTextBlock()); + + startBoundaries.forEach(boundary -> { + boundary.setStart(boundary.start() - start.length()); + boundary.setEnd(boundary.end() - start.length()); + }); + + return betweenBoundaries(startBoundaries, stopBoundaries, type, entityType, node); + } + + + public Stream betweenStringsIncludeEnd(String start, String stop, String type, EntityType entityType, SemanticNode node) { + + List startBoundaries = RedactionSearchUtility.findBoundariesByString(start, node.getTextBlock()); + List stopBoundaries = RedactionSearchUtility.findBoundariesByString(stop, node.getTextBlock()); + + stopBoundaries.forEach(boundary -> { + boundary.setStart(boundary.start() + stop.length()); + boundary.setEnd(boundary.end() + stop.length()); + }); + + return betweenBoundaries(startBoundaries, stopBoundaries, type, entityType, node); + } + + + public Stream betweenStringsIncludeEndIgnoreCase(String start, String stop, String type, EntityType entityType, SemanticNode node) { + + List startBoundaries = RedactionSearchUtility.findBoundariesByStringIgnoreCase(start, node.getTextBlock()); + List stopBoundaries = RedactionSearchUtility.findBoundariesByStringIgnoreCase(stop, node.getTextBlock()); + + stopBoundaries.forEach(boundary -> { + boundary.setStart(boundary.start() + stop.length()); + boundary.setEnd(boundary.end() + stop.length()); + }); + + return betweenBoundaries(startBoundaries, stopBoundaries, type, entityType, node); + } + + + public Stream betweenStringsIncludeStartAndEnd(String start, String stop, String type, EntityType entityType, SemanticNode node) { List startBoundaries = RedactionSearchUtility.findBoundariesByString(start, node.getTextBlock()); List stopBoundaries = RedactionSearchUtility.findBoundariesByString(stop, node.getTextBlock()); @@ -79,7 +149,10 @@ public class EntityCreationService { } - public Stream betweenStringsInclusiveIgnoreCase(String start, String stop, String type, EntityType entityType, SemanticNode node) { + + + + public Stream betweenStringsIncludeStartAndEndIgnoreCase(String start, String stop, String type, EntityType entityType, SemanticNode node) { List startBoundaries = RedactionSearchUtility.findBoundariesByStringIgnoreCase(start, node.getTextBlock()); List stopBoundaries = RedactionSearchUtility.findBoundariesByStringIgnoreCase(stop, node.getTextBlock()); @@ -97,13 +170,7 @@ public class EntityCreationService { } - public Stream betweenStringsIgnoreCase(String start, String stop, String type, EntityType entityType, SemanticNode node) { - List startBoundaries = RedactionSearchUtility.findBoundariesByStringIgnoreCase(start, node.getTextBlock()); - List stopBoundaries = RedactionSearchUtility.findBoundariesByStringIgnoreCase(stop, node.getTextBlock()); - - return betweenBoundaries(startBoundaries, stopBoundaries, type, entityType, node); - } public Stream betweenRegexes(String regexStart, String regexStop, String type, EntityType entityType, SemanticNode node) { @@ -209,6 +276,55 @@ public class EntityCreationService { } + public Stream lineAfterStringAcrossColumns(String string, String type, EntityType entityType, Table tableNode) { + + return tableNode.streamTableCells() + .flatMap(tableCell -> lineAfterBoundariesAcrossColumns(RedactionSearchUtility.findBoundariesByString(string, tableCell.getTextBlock()), + tableCell, + type, + entityType, + tableNode)); + } + + + public Stream lineAfterStringAcrossColumnsIgnoreCase(String string, String type, EntityType entityType, Table tableNode) { + + return tableNode.streamTableCells() + .flatMap(tableCell -> lineAfterBoundariesAcrossColumns(RedactionSearchUtility.findBoundariesByStringIgnoreCase(string, tableCell.getTextBlock()), + tableCell, + type, + entityType, + tableNode)); + } + + + /** + * Looks across the remaining table row to the right of the provided TableCell if any line intersects the y coordinates of the found text. + * + * @param boundaries a list of boundaries + * @param tableCell the table cell + * @param type the type + * @param entityType the entity type + * @param tableNode the table node + * @return a stream of RedactionEntities + */ + private Stream lineAfterBoundariesAcrossColumns(List boundaries, TableCell tableCell, String type, EntityType entityType, Table tableNode) { + + return boundaries.stream() + .map(boundary -> RectangleTransformations.rectangle2DBBox(tableCell.getTextBlock().getPositions(boundary))) + .map(bBox -> Pair.of(bBox.getMaxY(), bBox.getMinY())) + .map(maxMinPair -> tableNode.streamRow(tableCell.getRow()) + .filter(nextTableCell -> nextTableCell.getCol() > tableCell.getCol()) + .map(nextTableCell -> RedactionSearchUtility.findBoundaryOfAllLinesInYRange(maxMinPair.getLeft(), maxMinPair.getRight(), nextTableCell.getTextBlock())) + .map(b -> b.trim(tableNode.getTextBlock())) + .filter(boundary -> isValidEntityBoundary(tableNode.getTextBlock(), boundary)) + .map(boundary -> byBoundary(boundary, type, entityType, tableNode)) + .filter(Optional::isPresent) + .map(Optional::get)) + .flatMap(Functions.identity()); + } + + public Optional semanticNodeAfterString(SemanticNode semanticNode, String string, String type, EntityType entityType) { var textBlock = semanticNode.getTextBlock(); diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/utils/RedactionSearchUtility.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/utils/RedactionSearchUtility.java index 1ca46870..628fcf04 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/utils/RedactionSearchUtility.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/layoutparsing/document/utils/RedactionSearchUtility.java @@ -2,11 +2,13 @@ package com.iqser.red.service.redaction.v1.server.layoutparsing.document.utils; import static java.lang.String.format; +import java.awt.geom.Rectangle2D; import java.util.LinkedList; import java.util.List; import java.util.Locale; import java.util.regex.Matcher; import java.util.regex.Pattern; +import java.util.stream.IntStream; import com.iqser.red.service.redaction.v1.server.layoutparsing.document.graph.Boundary; import com.iqser.red.service.redaction.v1.server.layoutparsing.document.graph.entity.RedactionEntity; @@ -86,6 +88,22 @@ public class RedactionSearchUtility { return expandedStart; } + public static Boundary findBoundaryOfAllLinesInYRange(double maxY, double minY, TextBlock textBlock) { + + List lineBoundaries = IntStream.range(0, textBlock.numberOfLines()).boxed().map(textBlock::getLineBoundary).filter(lineBoundary -> isWithinYRange(maxY, minY, textBlock, lineBoundary)).toList(); + if (lineBoundaries.isEmpty()) { + return new Boundary(textBlock.getBoundary().start(), textBlock.getBoundary().start()); + } + return Boundary.merge(lineBoundaries); + } + + + private static boolean isWithinYRange(double maxY, double minY, TextBlock textBlock, Boundary lineBoundary) { + + Rectangle2D lineBBox = RectangleTransformations.rectangle2DBBox(textBlock.getPositions(lineBoundary)); + return lineBBox.getMinY() < maxY && minY < lineBBox.getMaxY(); + } + public static List findBoundariesByRegex(String regexPattern, TextBlock textBlock) { @@ -158,8 +176,8 @@ public class RedactionSearchUtility { public static List findBoundariesByStringIgnoreCase(String searchString, TextBlock textBlock) { - String searchStringLowerCase = searchString.toLowerCase(Locale.ROOT); - return findBoundariesByString(searchStringLowerCase, textBlock); + Pattern pattern = Pattern.compile(Pattern.quote(searchString), Pattern.CASE_INSENSITIVE); + return getBoundariesByPattern(textBlock, 0, pattern); } } diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/DocumineFloraTest.java b/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/DocumineFloraTest.java index 9675c445..ad0ac7a8 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/DocumineFloraTest.java +++ b/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/DocumineFloraTest.java @@ -46,8 +46,8 @@ public class DocumineFloraTest extends AbstractRedactionIntegrationTest { public void titleExtraction() throws IOException { - AnalyzeRequest request = prepareStorage("files/Documine/Flora/ProblemDocs/403-17_Fantom_ToxicidadeInalatoriaAguda.pdf", - "files/Documine/Flora/ProblemDocs/d75cd9358f7949552697764428183472.TABLES.json"); + AnalyzeRequest request = prepareStorage("files/Documine/Flora/ProblemDocs/23_In Vitro Percutaneous Absorption - Human Split-Thickness Skin (1).pdf", + "files/Documine/Flora/ProblemDocs/23_In Vitro Percutaneous Absorption - Human Split-Thickness Skin (1).json"); System.out.println("Start Full integration test"); analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/drools/documine_flora.drl b/redaction-service-v1/redaction-service-server-v1/src/test/resources/drools/documine_flora.drl index 86352fa1..03ba460b 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/test/resources/drools/documine_flora.drl +++ b/redaction-service-v1/redaction-service-server-v1/src/test/resources/drools/documine_flora.drl @@ -315,36 +315,36 @@ rule "DOC.5.0: Strain" end -//rule "DOC.7.0: study title by document structure" -// when -// $table: Table(isOnPage(1), -// (containsString("Final Report") || containsString("SPL")), -// numberOfRows == 1, -// numberOfCols == 1) -// then -// -// entityCreationService.bySemanticNode($table.getCell(0, 0).streamChildren().toList().get(1), "title", EntityType.ENTITY).ifPresent(entity -> { -// entity.apply("DOC.7.0", "Study title found", "n-a"); -// }); -// end - - -rule "DOC.7.0: study title" +rule "DOC.7.0: study title by document structure" when - $section: Section(isOnPage(1) && (containsString("Final Report") || containsString("SPL"))) + $table: Table(isOnPage(1), + (containsString("Final Report") || containsString("SPL")), + numberOfRows == 1, + numberOfCols == 1) then - entityCreationService.byRegexWithLineBreaks("(?<=\\n)[\\w\\W]{1,300}(?=\\nFinal Report)", "title", EntityType.ENTITY, $section).findFirst().ifPresent(entity -> { - entity.apply("DOC.7.0", "Title found", "n-a"); - }); - entityCreationService.betweenStrings("TITLE", "DATA REQUIREMENT", "title", EntityType.ENTITY, $section).findFirst().ifPresent(entity -> { - entity.apply("DOC.7.0", "Title found", "n-a"); - }); - entityCreationService.betweenStrings("Laboratories", "SPL", "title", EntityType.ENTITY, $section).findFirst().ifPresent(entity -> { - entity.apply("DOC.7.0", "Title found", "n-a"); + + entityCreationService.bySemanticNode($table.getCell(0, 0).streamChildren().toList().get(1), "title", EntityType.ENTITY).ifPresent(entity -> { + entity.apply("DOC.7.0", "Study title found", "n-a"); }); end +//rule "DOC.7.0: study title" +// when +// $section: Section(isOnPage(1) && (containsString("Final Report") || containsString("SPL"))) +// then +// entityCreationService.byRegexWithLineBreaks("(?<=\\n)[\\w\\W]{1,300}(?=\\nFinal Report)", "title", EntityType.ENTITY, $section).findFirst().ifPresent(entity -> { +// entity.apply("DOC.7.0", "Title found", "n-a"); +// }); +// entityCreationService.betweenStrings("TITLE", "DATA REQUIREMENT", "title", EntityType.ENTITY, $section).findFirst().ifPresent(entity -> { +// entity.apply("DOC.7.0", "Title found", "n-a"); +// }); +// entityCreationService.betweenStrings("Laboratories", "SPL", "title", EntityType.ENTITY, $section).findFirst().ifPresent(entity -> { +// entity.apply("DOC.7.0", "Title found", "n-a"); +// }); +// end + + rule "DOC.8.1: Performing Laboratory (Name)" when $section: Section(containsString("PERFORMING LABORATORY:")) @@ -422,8 +422,8 @@ rule "DOC.10.0: Batch number from CoA" $section: Section( ( anyHeadlineContainsString("Analytical Report") - || anyHeadlineContainsString("Certificate of Analysis") - || containsStringIgnoreCase("certificate of analysis") + || anyHeadlineContainsStringIgnoreCase("Certificate of Analysis") + || containsStringIgnoreCase("Certificate of Analysis") ) && ( containsStringIgnoreCase("batch") @@ -460,16 +460,16 @@ rule "DOC.10.1: Batch number" when $section: Section( ( - anyHeadlineContainsString("Test Substance") - || getHeadline().containsString("Test and Control Substances") - || getHeadline().containsString("Test Substances") - || getHeadline().containsString("Test Substance") - || getHeadline().containsString("Test Item") + anyHeadlineContainsStringIgnoreCase("Test Substance") + || anyHeadlineContainsStringIgnoreCase("Test and Control Substances") + || anyHeadlineContainsStringIgnoreCase("Test Substances") + || anyHeadlineContainsStringIgnoreCase("Test Substance") + || anyHeadlineContainsStringIgnoreCase("Test Item") ) && !( - getHeadline().containsString("component") - || getHeadline().containsString("reference") - || getHeadline().containsString("blank") + anyHeadlineContainsString("component") + || anyHeadlineContainsString("reference") + || anyHeadlineContainsString("blank") ) && containsStringIgnoreCase("batch") ) @@ -491,6 +491,35 @@ rule "DOC.10.1: Batch number" end +rule "DOC.10.2: Batch number" + when + $section: Section( + ( + anyHeadlineContainsStringIgnoreCase("Test Substance") + || anyHeadlineContainsStringIgnoreCase("Test and Control Substances") + || anyHeadlineContainsStringIgnoreCase("Test Substances") + || anyHeadlineContainsStringIgnoreCase("Test Substance") + || anyHeadlineContainsStringIgnoreCase("Test Item") + ) + && !( + anyHeadlineContainsString("component") + || anyHeadlineContainsString("reference") + || anyHeadlineContainsString("blank") + ) + && containsStringIgnoreCase("batch") + ) + $table: Table() from $section.streamAllSubNodesOfType(NodeType.TABLE).toList() + then + entityCreationService.lineAfterStringAcrossColumnsIgnoreCase("Batch number:", "batch_number", EntityType.ENTITY, $table).forEach(entity -> { + entity.apply("DOC.10.2", "Batch number found", "n-a"); + }); + entityCreationService.lineAfterStringAcrossColumnsIgnoreCase("Batch (Lot) Number:", "batch_number", EntityType.ENTITY, $table).forEach(entity -> { + entity.apply("DOC.10.2", "Batch number found", "n-a"); + }); + end + + + rule "DOC.11.0: Conclusions - LD50, LC50, Confidence" when @@ -529,7 +558,7 @@ rule "DOC.12.0: Guideline Deviation" when FileAttribute(label == "OECD Number", valueEqualsAnyOf("402","403","404","405","425","429","436","471")) $section: Section( - (getHeadline().containsString("General Information") || containsString("GENERAL INFORMATION")) + (getHeadline().containsStringIgnoreCase("General Information") || containsString("GENERAL INFORMATION")) && (containsStringIgnoreCase("from the") || containsStringIgnoreCase("to the")) ) then @@ -542,7 +571,7 @@ rule "DOC.12.0: Guideline Deviation" entityCreationService.betweenStrings("Deviations from the study plan", "Regulatory Guidelines", "guideline_deviation", EntityType.ENTITY, $section).forEach(entity -> { entity.apply("DOC.12.0", "Deviation from the study plan found", "n-a"); }); - entityCreationService.byRegex("(?>Study plan adherence)(.{1,20}deviations.{1,20} to the study plan.{0,50}\\.)\\s", "guideline_deviation", EntityType.ENTITY, 1, $section).forEach(entity -> { + entityCreationService.byRegexIgnoreCase("(?>Study plan adherence)(.{1,20}deviations.{1,20} to the study plan.{0,50}\\.)\\s", "guideline_deviation", EntityType.ENTITY, 1, $section).forEach(entity -> { entity.apply("DOC.12.0", "Guideline deviation found in text.", "n-a"); }); entityCreationService.betweenStrings("Deviations from the study plan", "validity of the study.", "guideline_deviation", EntityType.ENTITY, $section).forEach(entity -> { @@ -579,14 +608,14 @@ rule "DOC.14.0: Dosages" when FileAttribute(label == "OECD Number", value == "425") $section: Section( - (anyHeadlineContainsString("Dosages") || anyHeadlineContainsString("Study Design")) + (anyHeadlineContainsStringIgnoreCase("Dosages") || anyHeadlineContainsStringIgnoreCase("Study Design")) && !getHeadline().containsString("TABLE") ) then - entityCreationService.betweenStringsInclusive("The animals were treated", ".", "dosages", EntityType.ENTITY, $section).forEach(entity -> { + entityCreationService.betweenStringsIncludeStartAndEnd("The animals were treated", ".", "dosages", EntityType.ENTITY, $section).forEach(entity -> { entity.apply("DOC.14.0", "Dosage found", "n-a"); }); - entityCreationService.betweenStringsInclusive("Animals were treated", ".", "dosages", EntityType.ENTITY, $section).forEach(entity -> { + entityCreationService.betweenStringsIncludeStartAndEnd("Animals were treated", ".", "dosages", EntityType.ENTITY, $section).forEach(entity -> { entity.apply("DOC.14.0", "Dosage found", "n-a"); }); entityCreationService.byRegexWithLineBreaks("(?:\\.[\\s|\\n]|^.{5,20}\\n)([^\\.]{1,200}(?:animal|given|received)[^\\.]{1,200}dose\\s(?:levels?\\s)?(?:of|at)[^\\.]{1,200})(?:\\.[\\s|\\n|$])", "dosages", EntityType.ENTITY,1, $section).forEach(entity -> { @@ -615,7 +644,7 @@ rule "DOC.17.0: Study Conclusion" entityCreationService.bySemanticNodeParagraphsOnly($section, "study_conclusion", EntityType.ENTITY) .forEach(entity -> entity.apply("DOC.17.0", "Study Conclusion found", "n-a")); end - + /* rule "DOC.18.0: Weight Behavior Changes" when @@ -633,8 +662,84 @@ rule "DOC.18.0: Weight Behavior Changes" entityCreationService.bySemanticNodeParagraphsOnly($section, "weight_behavior_changes", EntityType.ENTITY) .forEach(entity -> entity.apply("DOC.18.0", "Weight behavior changes found", "n-a")); end +*/ +rule "DOC.18.0: Weight Behavior Changes" + when + FileAttribute(label == "OECD Number", value == "402") + $section: Section( + getHeadline().containsString("Results") + && ( + containsString("body weight") + || containsString("body weights") + || containsString("bodyweight") + || containsString("bodyweights") + ) + ) + then + entityCreationService.bySemanticNodeParagraphsOnly($section, "weight_behavior_changes", EntityType.ENTITY) + .forEach(entity -> entity.apply("DOC.18.0", "Weight behavior changes found", "n-a")); + end +rule "DOC.19.0: Necropsy findings" + when + FileAttribute(label == "OECD Number", valueEqualsAnyOf("402","403","436")) + $section: Section( + ( + anyHeadlineContainsStringIgnoreCase("Necropsy") + || getHeadline().containsStringIgnoreCase("Macroscopic Findings") + || getHeadline().containsStringIgnoreCase("Macroscopic examination") + ) + && !getHeadline().containsStringIgnoreCase("Table") + && !getHeadline().containsStringIgnoreCase("Appendix") + && !getHeadline().containsStringIgnoreCase("3 - MACROSCOPIC FINDINGS") + //&& !containsString("3 - MACROSCOPIC FINDINGS") + //&& !anyHeadlineContainsString("3 - MACROSCOPIC FINDINGS") + ) + then + entityCreationService.bySemanticNodeParagraphsOnly($section, "necropsy_findings", EntityType.ENTITY) + .forEach( entity -> entity.apply("DOC.19.0", "Necropsy section found", "n-a")); + end + +/* +rule "DOC.19.0: Necropsy findings" + when + FileAttribute(label == "OECD Number", valueEqualsAnyOf("402","403","436")) + $section: Section( + ( + anyHeadlineContainsStringIgnoreCase("Necropsy") + || getHeadline().containsStringIgnoreCase("Macroscopic Findings") + || getHeadline().containsStringIgnoreCase("Macroscopic examination") + ) + && !getHeadline().containsStringIgnoreCase("Table") + && !getHeadline().containsStringIgnoreCase("Appendix") + ) + then + entityCreationService.bySemanticNodeParagraphsOnly($section, "necropsy_findings", EntityType.ENTITY) + .forEach( entity -> entity.apply("DOC.19.0", "Necropsy section found", "n-a")); + end +*/ + +rule "DOC.22.0: Clinical observations" + when + FileAttribute(label == "OECD Number", value == "403") + $section: Section( + ( + anyHeadlineContainsStringIgnoreCase("Clinical Observations") + || anyHeadlineContainsStringIgnoreCase("Clinical observations") + || anyHeadlineContainsStringIgnoreCase("In-life Observations") + || anyHeadlineContainsStringIgnoreCase("Postmortem Observations") + ) + && !anyHeadlineContainsStringIgnoreCase("Appendix") + && !anyHeadlineContainsStringIgnoreCase("Table") + && !anyHeadlineContainsStringIgnoreCase("Mortality") + ) + then + entityCreationService.bySemanticNodeParagraphsOnly($section, "clinical_observations", EntityType.ENTITY) + .forEach(entity -> entity.apply("DOC.22.0", "Clinical observations section found", "n-a")); + end + +/* rule "DOC.19.0: Necropsy findings" when FileAttribute(label == "OECD Number", valueEqualsAnyOf("402","403","436")) @@ -670,7 +775,7 @@ rule "DOC.22.0: Clinical observations" entityCreationService.bySemanticNodeParagraphsOnly($section, "clinical_observations", EntityType.ENTITY) .forEach(entity -> entity.apply("DOC.22.0", "Clinical observations section found", "n-a")); end - +*/ /* Die beiden waren vorher auch auskommentiert rule "DOC.23.1: Bodyweight changes" @@ -723,19 +828,33 @@ rule "DOC.24.0: Study Design" when FileAttribute(label == "OECD Number", valueEqualsAnyOf("402","404","405","406","428","429","438","439","474","487")) $section: Section( + //retry this with only getHeadline().containsStringIgnoreCase("study design") anyHeadlineContainsStringIgnoreCase("study design") + && !anyHeadlineContainsString("Preliminary screening test") ) then entityCreationService.bySemanticNodeParagraphsOnly($section, "study_design", EntityType.ENTITY) .forEach(entity -> entity.apply("DOC.24.0", "Study design section found", "n-a")); end +/* +rule "DOC.24.0: Study Design" + when + FileAttribute(label == "OECD Number", valueEqualsAnyOf("402","404","405","406","428","429","438","439","474","487")) + $section: Section( + anyHeadlineContainsStringIgnoreCase("study design") + ) + then + entityCreationService.bySemanticNodeParagraphsOnly($section, "study_design", EntityType.ENTITY) + .forEach(entity -> entity.apply("DOC.24.0", "Study design section found", "n-a")); + end +*/ rule "DOC.25.0: Results and Conclusion (406, 428, 438, 439, 474 & 487)" when FileAttribute(label == "OECD Number", valueEqualsAnyOf("406","428","438","439","474","487")) $section: Section( - (getHeadline().containsString("Results") || getHeadline().containsString("Conclusion")) + (getHeadline().containsStringIgnoreCase("Results") || getHeadline().containsStringIgnoreCase("Conclusion")) && !getHeadline().containsString("POSITIVE CONTROL") && !getHeadline().containsString("Positive Control") && !getHeadline().containsString("Evaluation") @@ -752,7 +871,22 @@ rule "DOC.25.0: Results and Conclusion (406, 428, 438, 439, 474 & 487)" end +// TBD: This rule now finds both Results and RESULTS AND DISCUSSION. This ensures that we do not have empty Components in some of the files. In RESULTS AND DISCUSSION we should find every Subsection, not just the first. +rule "DOC.26.0: Detailing (404 & 405)" + when + FileAttribute(label == "OECD Number", valueEqualsAnyOf("404","405")) + $section: Section( + anyHeadlineContainsStringIgnoreCase("Results") + && !getHeadline().containsStringIgnoreCase("Evaluation") + && !getHeadline().containsStringIgnoreCase("study") + ) + then + entityCreationService.bySemanticNodeParagraphsOnly($section, "detailing", EntityType.ENTITY) + .forEach(entity -> entity.apply("DOC.26.0", "Detailing found", "n-a")); + end + +/* rule "DOC.26.0: Detailing (404 & 405)" when FileAttribute(label == "OECD Number", valueEqualsAnyOf("404","405")) @@ -766,13 +900,13 @@ rule "DOC.26.0: Detailing (404 & 405)" entityCreationService.bySemanticNodeParagraphsOnly($section, "detailing", EntityType.ENTITY) .forEach(entity -> entity.apply("DOC.26.0", "Detailing found", "n-a")); end - +*/ rule "DOC.32.0: Preliminary Test Results (429)" when FileAttribute(label == "OECD Number", value == "429") $section: Section( - ((getHeadline().containsString("Preliminary Screening Test") && containsString("Clinical observations")) + ((anyHeadlineContainsString("Preliminary Screening Test") && containsString("Clinical observations")) || getHeadline().containsString("Pre-Experiment")) ) then @@ -942,18 +1076,28 @@ rule "DOC.40.0: Positive Control" rule "DOC.42.0: Mortality Statement" when FileAttribute(label == "OECD Number", value == "402") - $headline: Headline(containsString("Mortality") && !containsString("TABLE")) + $headline: Headline(containsStringIgnoreCase("Mortality") && !containsString("TABLE")) then entityCreationService.bySemanticNodeParagraphsOnly($headline.getParent(), "mortality_statement", EntityType.ENTITY) .forEach(entity -> entity.apply("DOC.42.0", "Mortality Statement found", "n-a")); end +/* +rule "DOC.42.0: Mortality Statement" + when + FileAttribute(label == "OECD Number", value == "402") + $headline: Headline(containsString("Mortality") && !containsString("TABLE")) + then + entityCreationService.bySemanticNodeParagraphsOnly($headline.getParent(), "mortality_statement", EntityType.ENTITY) + .forEach(entity -> entity.apply("DOC.42.0", "Mortality Statement found", "n-a")); + end +*/ rule "DOC.43.0: Dose Mortality" when FileAttribute(label == "OECD Number", value == "425") $table: Table( - (hasHeader("Mortality") || hasHeader("Long Term Results") || hasHeader("Long Term Outcome") || hasHeader("Comments") || hasHeader("Viability / Mortality") || hasHeader("Viability/Mortality")) + (hasHeader("Mortality") || hasHeader("Long Term Results") || hasHeader("LongTerm Outcome") || hasHeader("Long Term Outcome") || hasHeader("Comments") || hasHeader("Viability / Mortality") || hasHeader("Viability/Mortality")) && (hasHeader("Dose [mg/kg bodyweight]") || hasHeader("Dose [mg/kg body weight]") ||hasHeader("Dose (mg/kg)") || hasHeader("Dose levei (mg/kg)") || hasHeader("Dose Level (mg/kg)") || hasHeader("Dose level (mg/kg)") || hasHeader("Dosage [mg/kg body weight]")) ) @@ -962,6 +1106,7 @@ rule "DOC.43.0: Dose Mortality" $table.streamTableCellsWithHeader("Comments"), $table.streamTableCellsWithHeader("Long Term Results"), $table.streamTableCellsWithHeader("Long Term Outcome"), + $table.streamTableCellsWithHeader("LongTerm Outcome"), $table.streamTableCellsWithHeader("Viability / Mortality"), $table.streamTableCellsWithHeader("Viability/Mortality") ).flatMap(a -> a) @@ -1110,6 +1255,7 @@ rule "X.0.0: remove Entity contained by Entity of same type" retract($contained); end + // Rule unit: X.7 rule "X.7.0: remove all images" salience 512 @@ -1120,6 +1266,7 @@ rule "X.7.0: remove all images" retract($image); end + //------------------------------------ File attributes rules ------------------------------------ // Rule unit: FA.1 @@ -1134,8 +1281,6 @@ rule "FA.1.0: remove duplicate FileAttributes" end -//------------------------------------ Local dictionary search rules ------------------------------------ - // Rule unit: LDS.0 rule "LDS.0.0: run local dictionary search" agenda-group "LOCAL_DICTIONARY_ADDS" diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Documine/Flora/ProblemDocs/10.SYN524464 FS (A16148C) - Absorção cutânea.pdf b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Documine/Flora/ProblemDocs/10.SYN524464 FS (A16148C) - Absorção cutânea.pdf new file mode 100644 index 00000000..0f8602ea Binary files /dev/null and b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Documine/Flora/ProblemDocs/10.SYN524464 FS (A16148C) - Absorção cutânea.pdf differ diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Documine/Flora/ProblemDocs/23_In Vitro Percutaneous Absorption - Human Split-Thickness Skin (1).json b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Documine/Flora/ProblemDocs/23_In Vitro Percutaneous Absorption - Human Split-Thickness Skin (1).json new file mode 100644 index 00000000..105c6f9d --- /dev/null +++ b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Documine/Flora/ProblemDocs/23_In Vitro Percutaneous Absorption - Human Split-Thickness Skin (1).json @@ -0,0 +1 @@ +{"dossierId": "202a8335-d812-413a-93ce-080f1acd7009", "fileId": "65051120dab03921304aa484f1c3f7b8", "targetFileExtension": "ORIGIN.pdf.gz", "responseFileExtension": "TABLES.json.gz", "data": [{"pageInfo": {"number": 21, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 126.72000122070312, "y0": 476.2799987792969, "x1": 301.67999267578125, "y1": 602.6400146484375, "width": 174.95999145507812, "height": 126.36001586914062}, {"x0": 302.3999938964844, "y0": 476.2799987792969, "x1": 504.0, "y1": 602.6400146484375, "width": 201.60000610351562, "height": 126.36001586914062}, {"x0": 108.36000061035156, "y0": 186.47998046875, "x1": 282.9599914550781, "y1": 285.47998046875, "width": 174.59999084472656, "height": 99.0}, {"x0": 283.67999267578125, "y0": 186.47998046875, "x1": 522.3599853515625, "y1": 285.47998046875, "width": 238.67999267578125, "height": 99.0}]}, {"pageInfo": {"number": 22, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 147.24000549316406, "y0": 572.760009765625, "x1": 323.6400146484375, "y1": 658.0799560546875, "width": 176.40000915527344, "height": 85.3199462890625}, {"x0": 324.3599853515625, "y0": 572.760009765625, "x1": 483.4800109863281, "y1": 658.0799560546875, "width": 159.12002563476562, "height": 85.3199462890625}, {"x0": 152.63999938964844, "y0": 388.79998779296875, "x1": 329.0400085449219, "y1": 474.1199951171875, "width": 176.40000915527344, "height": 85.32000732421875}, {"x0": 329.760009765625, "y0": 388.79998779296875, "x1": 478.0799865722656, "y1": 474.1199951171875, "width": 148.31997680664062, "height": 85.32000732421875}, {"x0": 120.5999984741211, "y0": 190.79998779296875, "x1": 296.6400146484375, "y1": 289.79998779296875, "width": 176.0400161743164, "height": 99.0}, {"x0": 297.3599853515625, "y0": 190.79998779296875, "x1": 510.1199951171875, "y1": 289.79998779296875, "width": 212.760009765625, "height": 99.0}]}, {"pageInfo": {"number": 23, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 140.75999450683594, "y0": 658.4400024414062, "x1": 316.79998779296875, "y1": 729.0, "width": 176.0399932861328, "height": 70.55999755859375}, {"x0": 317.5199890136719, "y0": 658.4400024414062, "x1": 489.9599914550781, "y1": 729.0, "width": 172.44000244140625, "height": 70.55999755859375}, {"x0": 142.1999969482422, "y0": 572.760009765625, "x1": 318.6000061035156, "y1": 643.3200073242188, "width": 176.40000915527344, "height": 70.55999755859375}, {"x0": 318.9599914550781, "y0": 572.760009765625, "x1": 488.5199890136719, "y1": 643.3200073242188, "width": 169.55999755859375, "height": 70.55999755859375}]}, {"pageInfo": {"number": 28, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 90.72000122070312, "y0": 377.2799987792969, "x1": 161.27999877929688, "y1": 397.79998779296875, "width": 70.55999755859375, "height": 20.519989013671875}, {"x0": 162.0, "y0": 377.2799987792969, "x1": 294.1199951171875, "y1": 397.79998779296875, "width": 132.1199951171875, "height": 20.519989013671875}, {"x0": 294.8399963378906, "y0": 377.2799987792969, "x1": 421.9200134277344, "y1": 397.79998779296875, "width": 127.08001708984375, "height": 20.519989013671875}, {"x0": 422.6400146484375, "y0": 377.2799987792969, "x1": 540.0, "y1": 397.79998779296875, "width": 117.3599853515625, "height": 20.519989013671875}, {"x0": 90.72000122070312, "y0": 348.1199951171875, "x1": 161.27999877929688, "y1": 376.55999755859375, "width": 70.55999755859375, "height": 28.44000244140625}, {"x0": 162.0, "y0": 348.1199951171875, "x1": 294.4800109863281, "y1": 376.55999755859375, "width": 132.48001098632812, "height": 28.44000244140625}, {"x0": 294.8399963378906, "y0": 348.1199951171875, "x1": 421.9200134277344, "y1": 376.55999755859375, "width": 127.08001708984375, "height": 28.44000244140625}, {"x0": 422.6400146484375, "y0": 348.1199951171875, "x1": 540.0, "y1": 376.55999755859375, "width": 117.3599853515625, "height": 28.44000244140625}]}, {"pageInfo": {"number": 29, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 90.72000122070312, "y0": 526.6799926757812, "x1": 161.27999877929688, "y1": 547.199951171875, "width": 70.55999755859375, "height": 20.51995849609375}, {"x0": 162.0, "y0": 526.6799926757812, "x1": 294.1199951171875, "y1": 547.199951171875, "width": 132.1199951171875, "height": 20.51995849609375}, {"x0": 294.8399963378906, "y0": 526.6799926757812, "x1": 421.9200134277344, "y1": 547.199951171875, "width": 127.08001708984375, "height": 20.51995849609375}, {"x0": 422.6400146484375, "y0": 526.6799926757812, "x1": 540.0, "y1": 547.199951171875, "width": 117.3599853515625, "height": 20.51995849609375}, {"x0": 90.72000122070312, "y0": 497.5199890136719, "x1": 161.27999877929688, "y1": 525.9599609375, "width": 70.55999755859375, "height": 28.439971923828125}, {"x0": 162.0, "y0": 497.5199890136719, "x1": 294.1199951171875, "y1": 525.9599609375, "width": 132.1199951171875, "height": 28.439971923828125}, {"x0": 294.8399963378906, "y0": 497.5199890136719, "x1": 421.9200134277344, "y1": 525.9599609375, "width": 127.08001708984375, "height": 28.439971923828125}, {"x0": 422.6400146484375, "y0": 497.5199890136719, "x1": 540.0, "y1": 525.9599609375, "width": 117.3599853515625, "height": 28.439971923828125}, {"x0": 97.91999816894531, "y0": 273.96002197265625, "x1": 275.3999938964844, "y1": 302.760009765625, "width": 177.47999572753906, "height": 28.79998779296875}, {"x0": 276.1199951171875, "y0": 288.719970703125, "x1": 532.7999877929688, "y1": 302.760009765625, "width": 256.67999267578125, "height": 14.0400390625}, {"x0": 276.1199951171875, "y0": 273.96002197265625, "x1": 392.760009765625, "y1": 288.0, "width": 116.6400146484375, "height": 14.03997802734375}, {"x0": 393.4800109863281, "y0": 273.96002197265625, "x1": 462.6000061035156, "y1": 288.0, "width": 69.1199951171875, "height": 14.03997802734375}, {"x0": 463.32000732421875, "y0": 273.96002197265625, "x1": 532.7999877929688, "y1": 288.0, "width": 69.47998046875, "height": 14.03997802734375}, {"x0": 97.91999816894531, "y0": 176.39996337890625, "x1": 275.3999938964844, "y1": 273.239990234375, "width": 177.47999572753906, "height": 96.84002685546875}, {"x0": 276.1199951171875, "y0": 176.39996337890625, "x1": 392.760009765625, "y1": 273.239990234375, "width": 116.6400146484375, "height": 96.84002685546875}, {"x0": 393.4800109863281, "y0": 176.39996337890625, "x1": 462.6000061035156, "y1": 273.239990234375, "width": 69.1199951171875, "height": 96.84002685546875}, {"x0": 463.32000732421875, "y0": 176.39996337890625, "x1": 532.7999877929688, "y1": 273.239990234375, "width": 69.47998046875, "height": 96.84002685546875}]}, {"pageInfo": {"number": 30, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 87.83999633789062, "y0": 212.760009765625, "x1": 288.7200012207031, "y1": 228.96002197265625, "width": 200.8800048828125, "height": 16.20001220703125}, {"x0": 289.44000244140625, "y0": 212.760009765625, "x1": 392.0400085449219, "y1": 228.96002197265625, "width": 102.60000610351562, "height": 16.20001220703125}, {"x0": 392.760009765625, "y0": 212.760009765625, "x1": 467.2799987792969, "y1": 228.96002197265625, "width": 74.51998901367188, "height": 16.20001220703125}, {"x0": 468.0, "y0": 212.760009765625, "x1": 542.52001953125, "y1": 228.96002197265625, "width": 74.52001953125, "height": 16.20001220703125}, {"x0": 87.83999633789062, "y0": 139.32000732421875, "x1": 288.7200012207031, "y1": 212.03997802734375, "width": 200.8800048828125, "height": 72.719970703125}, {"x0": 289.44000244140625, "y0": 139.32000732421875, "x1": 392.0400085449219, "y1": 212.03997802734375, "width": 102.60000610351562, "height": 72.719970703125}, {"x0": 392.760009765625, "y0": 139.32000732421875, "x1": 467.2799987792969, "y1": 212.03997802734375, "width": 74.51998901367188, "height": 72.719970703125}, {"x0": 468.0, "y0": 139.32000732421875, "x1": 542.8800048828125, "y1": 212.03997802734375, "width": 74.8800048828125, "height": 72.719970703125}]}, {"pageInfo": {"number": 31, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 91.44000244140625, "y0": 645.1199951171875, "x1": 282.239990234375, "y1": 673.9199829101562, "width": 190.79998779296875, "height": 28.79998779296875}, {"x0": 282.6000061035156, "y0": 659.8800048828125, "x1": 539.280029296875, "y1": 673.9199829101562, "width": 256.6800231933594, "height": 14.03997802734375}, {"x0": 282.6000061035156, "y0": 645.1199951171875, "x1": 399.6000061035156, "y1": 659.1599731445312, "width": 117.0, "height": 14.03997802734375}, {"x0": 399.9599914550781, "y0": 645.1199951171875, "x1": 469.44000244140625, "y1": 659.1599731445312, "width": 69.48001098632812, "height": 14.03997802734375}, {"x0": 470.1600036621094, "y0": 645.1199951171875, "x1": 539.280029296875, "y1": 659.1599731445312, "width": 69.12002563476562, "height": 14.03997802734375}, {"x0": 91.44000244140625, "y0": 527.0399780273438, "x1": 282.239990234375, "y1": 644.4000244140625, "width": 190.79998779296875, "height": 117.36004638671875}, {"x0": 282.6000061035156, "y0": 527.0399780273438, "x1": 399.6000061035156, "y1": 644.4000244140625, "width": 117.0, "height": 117.36004638671875}, {"x0": 399.9599914550781, "y0": 527.0399780273438, "x1": 469.44000244140625, "y1": 644.4000244140625, "width": 69.48001098632812, "height": 117.36004638671875}, {"x0": 470.1600036621094, "y0": 527.0399780273438, "x1": 539.280029296875, "y1": 644.4000244140625, "width": 69.12002563476562, "height": 117.36004638671875}]}, {"pageInfo": {"number": 32, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 87.83999633789062, "y0": 425.1600036621094, "x1": 288.7200012207031, "y1": 435.239990234375, "width": 200.8800048828125, "height": 10.079986572265625}, {"x0": 289.44000244140625, "y0": 425.1600036621094, "x1": 392.0400085449219, "y1": 435.239990234375, "width": 102.60000610351562, "height": 10.079986572265625}, {"x0": 392.760009765625, "y0": 425.1600036621094, "x1": 467.2799987792969, "y1": 435.239990234375, "width": 74.51998901367188, "height": 10.079986572265625}, {"x0": 468.0, "y0": 425.1600036621094, "x1": 542.52001953125, "y1": 435.239990234375, "width": 74.52001953125, "height": 10.079986572265625}, {"x0": 87.83999633789062, "y0": 351.3599853515625, "x1": 288.7200012207031, "y1": 424.44000244140625, "width": 200.8800048828125, "height": 73.08001708984375}, {"x0": 289.44000244140625, "y0": 351.3599853515625, "x1": 392.0400085449219, "y1": 424.44000244140625, "width": 102.60000610351562, "height": 73.08001708984375}, {"x0": 392.760009765625, "y0": 351.3599853515625, "x1": 467.2799987792969, "y1": 424.44000244140625, "width": 74.51998901367188, "height": 73.08001708984375}, {"x0": 468.0, "y0": 351.3599853515625, "x1": 542.8800048828125, "y1": 424.44000244140625, "width": 74.8800048828125, "height": 73.08001708984375}]}, {"pageInfo": {"number": 33, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 152.27999877929688, "y0": 740.8800048828125, "x1": 369.0, "y1": 754.9199829101562, "width": 216.72000122070312, "height": 14.03997802734375}, {"x0": 369.7200012207031, "y0": 740.8800048828125, "x1": 478.44000244140625, "y1": 754.9199829101562, "width": 108.72000122070312, "height": 14.03997802734375}, {"x0": 152.27999877929688, "y0": 712.0799560546875, "x1": 369.0, "y1": 740.1599731445312, "width": 216.72000122070312, "height": 28.08001708984375}, {"x0": 369.7200012207031, "y0": 712.0799560546875, "x1": 478.44000244140625, "y1": 740.1599731445312, "width": 108.72000122070312, "height": 28.08001708984375}, {"x0": 152.27999877929688, "y0": 683.280029296875, "x1": 369.0, "y1": 711.3599853515625, "width": 216.72000122070312, "height": 28.0799560546875}, {"x0": 369.7200012207031, "y0": 683.280029296875, "x1": 478.44000244140625, "y1": 711.3599853515625, "width": 108.72000122070312, "height": 28.0799560546875}, {"x0": 152.27999877929688, "y0": 654.1199951171875, "x1": 369.0, "y1": 682.5599975585938, "width": 216.72000122070312, "height": 28.44000244140625}, {"x0": 369.7200012207031, "y0": 654.1199951171875, "x1": 478.44000244140625, "y1": 682.5599975585938, "width": 108.72000122070312, "height": 28.44000244140625}, {"x0": 104.76000213623047, "y0": 501.47998046875, "x1": 250.9199981689453, "y1": 542.52001953125, "width": 146.15999603271484, "height": 41.0400390625}, {"x0": 251.63999938964844, "y0": 501.47998046875, "x1": 325.79998779296875, "y1": 542.52001953125, "width": 74.15998840332031, "height": 41.0400390625}, {"x0": 326.5199890136719, "y0": 528.47998046875, "x1": 525.9600219726562, "y1": 542.52001953125, "width": 199.44003295898438, "height": 14.0400390625}, {"x0": 326.5199890136719, "y0": 517.6799926757812, "x1": 382.32000732421875, "y1": 528.1199951171875, "width": 55.800018310546875, "height": 10.44000244140625}, {"x0": 383.0400085449219, "y0": 517.6799926757812, "x1": 425.8800048828125, "y1": 528.1199951171875, "width": 42.839996337890625, "height": 10.44000244140625}, {"x0": 426.6000061035156, "y0": 517.6799926757812, "x1": 482.3999938964844, "y1": 528.1199951171875, "width": 55.79998779296875, "height": 10.44000244140625}, {"x0": 483.1199951171875, "y0": 517.6799926757812, "x1": 525.9600219726562, "y1": 528.1199951171875, "width": 42.84002685546875, "height": 10.44000244140625}, {"x0": 326.5199890136719, "y0": 501.47998046875, "x1": 382.32000732421875, "y1": 516.9599609375, "width": 55.800018310546875, "height": 15.47998046875}, {"x0": 383.0400085449219, "y0": 501.47998046875, "x1": 425.8800048828125, "y1": 516.9599609375, "width": 42.839996337890625, "height": 15.47998046875}, {"x0": 426.6000061035156, "y0": 501.47998046875, "x1": 482.3999938964844, "y1": 516.9599609375, "width": 55.79998779296875, "height": 15.47998046875}, {"x0": 483.1199951171875, "y0": 501.47998046875, "x1": 525.9600219726562, "y1": 516.9599609375, "width": 42.84002685546875, "height": 15.47998046875}, {"x0": 104.76000213623047, "y0": 438.8399963378906, "x1": 250.9199981689453, "y1": 500.7599792480469, "width": 146.15999603271484, "height": 61.91998291015625}, {"x0": 251.63999938964844, "y0": 438.8399963378906, "x1": 325.79998779296875, "y1": 500.7599792480469, "width": 74.15998840332031, "height": 61.91998291015625}, {"x0": 326.5199890136719, "y0": 438.8399963378906, "x1": 382.32000732421875, "y1": 500.7599792480469, "width": 55.800018310546875, "height": 61.91998291015625}, {"x0": 383.0400085449219, "y0": 438.8399963378906, "x1": 425.8800048828125, "y1": 500.7599792480469, "width": 42.839996337890625, "height": 61.91998291015625}, {"x0": 426.6000061035156, "y0": 438.8399963378906, "x1": 482.3999938964844, "y1": 500.7599792480469, "width": 55.79998779296875, "height": 61.91998291015625}, {"x0": 483.1199951171875, "y0": 438.8399963378906, "x1": 525.9600219726562, "y1": 500.7599792480469, "width": 42.84002685546875, "height": 61.91998291015625}, {"x0": 152.27999877929688, "y0": 298.08001708984375, "x1": 369.0, "y1": 312.1199951171875, "width": 216.72000122070312, "height": 14.03997802734375}, {"x0": 369.7200012207031, "y0": 298.08001708984375, "x1": 478.44000244140625, "y1": 312.1199951171875, "width": 108.72000122070312, "height": 14.03997802734375}, {"x0": 152.27999877929688, "y0": 269.27996826171875, "x1": 369.0, "y1": 297.719970703125, "width": 216.72000122070312, "height": 28.44000244140625}, {"x0": 369.7200012207031, "y0": 269.27996826171875, "x1": 478.44000244140625, "y1": 297.719970703125, "width": 108.72000122070312, "height": 28.44000244140625}, {"x0": 152.27999877929688, "y0": 240.47998046875, "x1": 369.0, "y1": 268.55999755859375, "width": 216.72000122070312, "height": 28.08001708984375}, {"x0": 369.7200012207031, "y0": 240.47998046875, "x1": 478.44000244140625, "y1": 268.55999755859375, "width": 108.72000122070312, "height": 28.08001708984375}, {"x0": 152.27999877929688, "y0": 211.67999267578125, "x1": 369.0, "y1": 239.760009765625, "width": 216.72000122070312, "height": 28.08001708984375}, {"x0": 369.7200012207031, "y0": 211.67999267578125, "x1": 478.44000244140625, "y1": 239.760009765625, "width": 108.72000122070312, "height": 28.08001708984375}]}, {"pageInfo": {"number": 34, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 104.76000213623047, "y0": 713.8800048828125, "x1": 250.9199981689453, "y1": 754.9199829101562, "width": 146.15999603271484, "height": 41.03997802734375}, {"x0": 251.63999938964844, "y0": 713.8800048828125, "x1": 325.79998779296875, "y1": 754.9199829101562, "width": 74.15998840332031, "height": 41.03997802734375}, {"x0": 326.5199890136719, "y0": 740.8800048828125, "x1": 525.9600219726562, "y1": 754.9199829101562, "width": 199.44003295898438, "height": 14.03997802734375}, {"x0": 326.5199890136719, "y0": 730.0800170898438, "x1": 382.32000732421875, "y1": 740.1599731445312, "width": 55.800018310546875, "height": 10.0799560546875}, {"x0": 383.0400085449219, "y0": 730.0800170898438, "x1": 425.8800048828125, "y1": 740.1599731445312, "width": 42.839996337890625, "height": 10.0799560546875}, {"x0": 426.6000061035156, "y0": 730.0800170898438, "x1": 482.3999938964844, "y1": 740.1599731445312, "width": 55.79998779296875, "height": 10.0799560546875}, {"x0": 483.1199951171875, "y0": 730.0800170898438, "x1": 525.9600219726562, "y1": 740.1599731445312, "width": 42.84002685546875, "height": 10.0799560546875}, {"x0": 326.5199890136719, "y0": 713.8800048828125, "x1": 382.32000732421875, "y1": 729.3599853515625, "width": 55.800018310546875, "height": 15.47998046875}, {"x0": 383.0400085449219, "y0": 713.8800048828125, "x1": 425.8800048828125, "y1": 729.3599853515625, "width": 42.839996337890625, "height": 15.47998046875}, {"x0": 426.6000061035156, "y0": 713.8800048828125, "x1": 482.3999938964844, "y1": 729.3599853515625, "width": 55.79998779296875, "height": 15.47998046875}, {"x0": 483.1199951171875, "y0": 713.8800048828125, "x1": 525.9600219726562, "y1": 729.3599853515625, "width": 42.84002685546875, "height": 15.47998046875}, {"x0": 104.76000213623047, "y0": 651.239990234375, "x1": 250.9199981689453, "y1": 713.1599731445312, "width": 146.15999603271484, "height": 61.91998291015625}, {"x0": 251.63999938964844, "y0": 651.239990234375, "x1": 325.79998779296875, "y1": 713.1599731445312, "width": 74.15998840332031, "height": 61.91998291015625}, {"x0": 326.5199890136719, "y0": 651.239990234375, "x1": 382.32000732421875, "y1": 713.1599731445312, "width": 55.800018310546875, "height": 61.91998291015625}, {"x0": 383.0400085449219, "y0": 651.239990234375, "x1": 425.8800048828125, "y1": 713.1599731445312, "width": 42.839996337890625, "height": 61.91998291015625}, {"x0": 426.6000061035156, "y0": 651.239990234375, "x1": 482.3999938964844, "y1": 713.1599731445312, "width": 55.79998779296875, "height": 61.91998291015625}, {"x0": 483.1199951171875, "y0": 651.239990234375, "x1": 525.9600219726562, "y1": 713.1599731445312, "width": 42.84002685546875, "height": 61.91998291015625}]}, {"pageInfo": {"number": 35, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 101.16000366210938, "y0": 576.719970703125, "x1": 289.44000244140625, "y1": 605.52001953125, "width": 188.27999877929688, "height": 28.800048828125}, {"x0": 290.1600036621094, "y0": 591.47998046875, "x1": 529.5599975585938, "y1": 605.52001953125, "width": 239.39999389648438, "height": 14.0400390625}, {"x0": 290.1600036621094, "y0": 576.719970703125, "x1": 389.8800048828125, "y1": 590.760009765625, "width": 99.72000122070312, "height": 14.0400390625}, {"x0": 390.239990234375, "y0": 576.719970703125, "x1": 459.7200012207031, "y1": 590.760009765625, "width": 69.48001098632812, "height": 14.0400390625}, {"x0": 460.44000244140625, "y0": 576.719970703125, "x1": 529.5599975585938, "y1": 590.760009765625, "width": 69.1199951171875, "height": 14.0400390625}, {"x0": 101.16000366210938, "y0": 416.1600036621094, "x1": 289.44000244140625, "y1": 576.3599853515625, "width": 188.27999877929688, "height": 160.19998168945312}, {"x0": 290.1600036621094, "y0": 416.1600036621094, "x1": 389.8800048828125, "y1": 576.3599853515625, "width": 99.72000122070312, "height": 160.19998168945312}, {"x0": 390.239990234375, "y0": 416.1600036621094, "x1": 459.7200012207031, "y1": 576.3599853515625, "width": 69.48001098632812, "height": 160.19998168945312}, {"x0": 460.44000244140625, "y0": 416.1600036621094, "x1": 529.5599975585938, "y1": 576.3599853515625, "width": 69.1199951171875, "height": 160.19998168945312}, {"x0": 128.8800048828125, "y0": 241.20001220703125, "x1": 317.5199890136719, "y1": 270.0, "width": 188.63998413085938, "height": 28.79998779296875}, {"x0": 318.239990234375, "y0": 255.96002197265625, "x1": 501.4800109863281, "y1": 270.0, "width": 183.24002075195312, "height": 14.03997802734375}, {"x0": 318.239990234375, "y0": 241.20001220703125, "x1": 417.6000061035156, "y1": 255.239990234375, "width": 99.36001586914062, "height": 14.03997802734375}, {"x0": 418.32000732421875, "y0": 241.20001220703125, "x1": 501.4800109863281, "y1": 255.239990234375, "width": 83.16000366210938, "height": 14.03997802734375}, {"x0": 128.8800048828125, "y0": 171.0, "x1": 317.5199890136719, "y1": 240.47998046875, "width": 188.63998413085938, "height": 69.47998046875}, {"x0": 318.239990234375, "y0": 171.0, "x1": 417.6000061035156, "y1": 240.47998046875, "width": 99.36001586914062, "height": 69.47998046875}, {"x0": 418.32000732421875, "y0": 171.0, "x1": 501.4800109863281, "y1": 240.47998046875, "width": 83.16000366210938, "height": 69.47998046875}]}, {"pageInfo": {"number": 36, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 101.16000366210938, "y0": 603.719970703125, "x1": 289.44000244140625, "y1": 632.52001953125, "width": 188.27999877929688, "height": 28.800048828125}, {"x0": 290.1600036621094, "y0": 618.47998046875, "x1": 529.5599975585938, "y1": 632.52001953125, "width": 239.39999389648438, "height": 14.0400390625}, {"x0": 290.1600036621094, "y0": 603.719970703125, "x1": 389.8800048828125, "y1": 617.760009765625, "width": 99.72000122070312, "height": 14.0400390625}, {"x0": 390.239990234375, "y0": 603.719970703125, "x1": 459.7200012207031, "y1": 617.760009765625, "width": 69.48001098632812, "height": 14.0400390625}, {"x0": 460.44000244140625, "y0": 603.719970703125, "x1": 529.5599975585938, "y1": 617.760009765625, "width": 69.1199951171875, "height": 14.0400390625}, {"x0": 101.16000366210938, "y0": 428.7599792480469, "x1": 289.44000244140625, "y1": 603.0, "width": 188.27999877929688, "height": 174.24002075195312}, {"x0": 290.1600036621094, "y0": 428.7599792480469, "x1": 389.8800048828125, "y1": 603.0, "width": 99.72000122070312, "height": 174.24002075195312}, {"x0": 390.239990234375, "y0": 428.7599792480469, "x1": 459.7200012207031, "y1": 603.0, "width": 69.48001098632812, "height": 174.24002075195312}, {"x0": 460.44000244140625, "y0": 428.7599792480469, "x1": 529.5599975585938, "y1": 603.0, "width": 69.1199951171875, "height": 174.24002075195312}, {"x0": 169.55999755859375, "y0": 267.8399658203125, "x1": 357.8399963378906, "y1": 296.6400146484375, "width": 188.27999877929688, "height": 28.800048828125}, {"x0": 358.55999755859375, "y0": 282.5999755859375, "x1": 461.1600036621094, "y1": 296.6400146484375, "width": 102.60000610351562, "height": 14.0400390625}, {"x0": 358.55999755859375, "y0": 267.8399658203125, "x1": 461.1600036621094, "y1": 281.8800048828125, "width": 102.60000610351562, "height": 14.0400390625}, {"x0": 169.55999755859375, "y0": 204.1199951171875, "x1": 357.8399963378906, "y1": 267.1199951171875, "width": 188.27999877929688, "height": 63.0}, {"x0": 358.55999755859375, "y0": 204.1199951171875, "x1": 461.1600036621094, "y1": 267.1199951171875, "width": 102.60000610351562, "height": 63.0}]}, {"pageInfo": {"number": 37, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 86.4000015258789, "y0": 409.67999267578125, "x1": 264.239990234375, "y1": 462.9599914550781, "width": 177.8399887084961, "height": 53.279998779296875}, {"x0": 264.9599914550781, "y0": 409.67999267578125, "x1": 347.760009765625, "y1": 462.9599914550781, "width": 82.80001831054688, "height": 53.279998779296875}, {"x0": 348.4800109863281, "y0": 437.7599792480469, "x1": 544.3200073242188, "y1": 462.9599914550781, "width": 195.83999633789062, "height": 25.20001220703125}, {"x0": 348.4800109863281, "y0": 424.44000244140625, "x1": 444.9599914550781, "y1": 437.03997802734375, "width": 96.47998046875, "height": 12.5999755859375}, {"x0": 446.0400085449219, "y0": 424.44000244140625, "x1": 544.3200073242188, "y1": 437.03997802734375, "width": 98.27999877929688, "height": 12.5999755859375}, {"x0": 348.4800109863281, "y0": 409.67999267578125, "x1": 401.3999938964844, "y1": 423.7200012207031, "width": 52.91998291015625, "height": 14.040008544921875}, {"x0": 402.1199951171875, "y0": 409.67999267578125, "x1": 444.9599914550781, "y1": 423.7200012207031, "width": 42.839996337890625, "height": 14.040008544921875}, {"x0": 446.0400085449219, "y0": 409.67999267578125, "x1": 499.32000732421875, "y1": 423.7200012207031, "width": 53.279998779296875, "height": 14.040008544921875}, {"x0": 500.0400085449219, "y0": 409.67999267578125, "x1": 544.3200073242188, "y1": 423.7200012207031, "width": 44.279998779296875, "height": 14.040008544921875}, {"x0": 86.4000015258789, "y0": 360.0, "x1": 264.239990234375, "y1": 408.9599914550781, "width": 177.8399887084961, "height": 48.959991455078125}, {"x0": 264.9599914550781, "y0": 360.0, "x1": 347.760009765625, "y1": 408.9599914550781, "width": 82.80001831054688, "height": 48.959991455078125}, {"x0": 348.4800109863281, "y0": 360.0, "x1": 401.3999938964844, "y1": 408.9599914550781, "width": 52.91998291015625, "height": 48.959991455078125}, {"x0": 402.1199951171875, "y0": 360.0, "x1": 445.32000732421875, "y1": 408.9599914550781, "width": 43.20001220703125, "height": 48.959991455078125}, {"x0": 445.67999267578125, "y0": 360.0, "x1": 499.32000732421875, "y1": 408.9599914550781, "width": 53.6400146484375, "height": 48.959991455078125}, {"x0": 500.0400085449219, "y0": 360.0, "x1": 544.3200073242188, "y1": 408.9599914550781, "width": 44.279998779296875, "height": 48.959991455078125}, {"x0": 86.4000015258789, "y0": 346.32000732421875, "x1": 264.239990234375, "y1": 358.91998291015625, "width": 177.8399887084961, "height": 12.5999755859375}, {"x0": 264.9599914550781, "y0": 346.32000732421875, "x1": 347.760009765625, "y1": 358.91998291015625, "width": 82.80001831054688, "height": 12.5999755859375}, {"x0": 348.4800109863281, "y0": 346.32000732421875, "x1": 544.3200073242188, "y1": 358.91998291015625, "width": 195.83999633789062, "height": 12.5999755859375}, {"x0": 86.4000015258789, "y0": 291.96002197265625, "x1": 264.239990234375, "y1": 345.239990234375, "width": 177.8399887084961, "height": 53.27996826171875}, {"x0": 264.9599914550781, "y0": 291.96002197265625, "x1": 347.760009765625, "y1": 345.239990234375, "width": 82.80001831054688, "height": 53.27996826171875}, {"x0": 348.4800109863281, "y0": 320.03997802734375, "x1": 544.3200073242188, "y1": 345.239990234375, "width": 195.83999633789062, "height": 25.20001220703125}, {"x0": 348.4800109863281, "y0": 306.719970703125, "x1": 445.32000732421875, "y1": 319.32000732421875, "width": 96.83999633789062, "height": 12.60003662109375}, {"x0": 445.67999267578125, "y0": 306.719970703125, "x1": 544.3200073242188, "y1": 319.32000732421875, "width": 98.6400146484375, "height": 12.60003662109375}, {"x0": 348.4800109863281, "y0": 291.96002197265625, "x1": 401.3999938964844, "y1": 306.0, "width": 52.91998291015625, "height": 14.03997802734375}, {"x0": 402.1199951171875, "y0": 291.96002197265625, "x1": 445.32000732421875, "y1": 306.0, "width": 43.20001220703125, "height": 14.03997802734375}, {"x0": 445.67999267578125, "y0": 291.96002197265625, "x1": 499.32000732421875, "y1": 306.0, "width": 53.6400146484375, "height": 14.03997802734375}, {"x0": 500.0400085449219, "y0": 291.96002197265625, "x1": 544.3200073242188, "y1": 306.0, "width": 44.279998779296875, "height": 14.03997802734375}, {"x0": 86.4000015258789, "y0": 248.760009765625, "x1": 264.239990234375, "y1": 291.239990234375, "width": 177.8399887084961, "height": 42.47998046875}, {"x0": 264.9599914550781, "y0": 248.760009765625, "x1": 347.760009765625, "y1": 291.239990234375, "width": 82.80001831054688, "height": 42.47998046875}, {"x0": 348.4800109863281, "y0": 248.760009765625, "x1": 401.3999938964844, "y1": 291.239990234375, "width": 52.91998291015625, "height": 42.47998046875}, {"x0": 402.1199951171875, "y0": 248.760009765625, "x1": 445.32000732421875, "y1": 291.239990234375, "width": 43.20001220703125, "height": 42.47998046875}, {"x0": 445.67999267578125, "y0": 248.760009765625, "x1": 499.32000732421875, "y1": 291.239990234375, "width": 53.6400146484375, "height": 42.47998046875}, {"x0": 500.0400085449219, "y0": 248.760009765625, "x1": 544.3200073242188, "y1": 291.239990234375, "width": 44.279998779296875, "height": 42.47998046875}]}, {"pageInfo": {"number": 38, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 125.63999938964844, "y0": 744.8399658203125, "x1": 326.5199890136719, "y1": 754.9199829101562, "width": 200.87998962402344, "height": 10.08001708984375}, {"x0": 326.8800048828125, "y0": 744.8399658203125, "x1": 429.8399963378906, "y1": 754.9199829101562, "width": 102.95999145507812, "height": 10.08001708984375}, {"x0": 430.55999755859375, "y0": 744.8399658203125, "x1": 505.0799865722656, "y1": 754.9199829101562, "width": 74.51998901367188, "height": 10.08001708984375}, {"x0": 125.63999938964844, "y0": 671.0399780273438, "x1": 326.5199890136719, "y1": 744.1199951171875, "width": 200.87998962402344, "height": 73.08001708984375}, {"x0": 326.8800048828125, "y0": 671.0399780273438, "x1": 429.8399963378906, "y1": 744.1199951171875, "width": 102.95999145507812, "height": 73.08001708984375}, {"x0": 430.55999755859375, "y0": 671.0399780273438, "x1": 505.0799865722656, "y1": 744.1199951171875, "width": 74.51998901367188, "height": 73.08001708984375}, {"x0": 163.0800018310547, "y0": 645.8399658203125, "x1": 363.9599914550781, "y1": 656.280029296875, "width": 200.87998962402344, "height": 10.4400634765625}, {"x0": 364.67999267578125, "y0": 645.8399658203125, "x1": 467.2799987792969, "y1": 656.280029296875, "width": 102.60000610351562, "height": 10.4400634765625}, {"x0": 163.0800018310547, "y0": 572.4000244140625, "x1": 363.9599914550781, "y1": 645.47998046875, "width": 200.87998962402344, "height": 73.0799560546875}, {"x0": 364.67999267578125, "y0": 572.4000244140625, "x1": 467.2799987792969, "y1": 645.47998046875, "width": 102.60000610351562, "height": 73.0799560546875}, {"x0": 158.75999450683594, "y0": 543.239990234375, "x1": 362.5199890136719, "y1": 557.280029296875, "width": 203.75999450683594, "height": 14.0400390625}, {"x0": 363.239990234375, "y0": 543.239990234375, "x1": 471.6000061035156, "y1": 557.280029296875, "width": 108.36001586914062, "height": 14.0400390625}, {"x0": 158.75999450683594, "y0": 514.4400024414062, "x1": 362.5199890136719, "y1": 542.52001953125, "width": 203.75999450683594, "height": 28.08001708984375}, {"x0": 363.239990234375, "y0": 514.4400024414062, "x1": 471.6000061035156, "y1": 542.52001953125, "width": 108.36001586914062, "height": 28.08001708984375}, {"x0": 158.75999450683594, "y0": 499.67999267578125, "x1": 362.5199890136719, "y1": 513.719970703125, "width": 203.75999450683594, "height": 14.03997802734375}, {"x0": 363.239990234375, "y0": 499.67999267578125, "x1": 471.6000061035156, "y1": 513.719970703125, "width": 108.36001586914062, "height": 14.03997802734375}, {"x0": 91.44000244140625, "y0": 387.0, "x1": 320.760009765625, "y1": 413.2799987792969, "width": 229.32000732421875, "height": 26.279998779296875}, {"x0": 321.4800109863281, "y0": 400.32000732421875, "x1": 539.280029296875, "y1": 413.2799987792969, "width": 217.80001831054688, "height": 12.959991455078125}, {"x0": 321.4800109863281, "y0": 387.0, "x1": 430.20001220703125, "y1": 399.6000061035156, "width": 108.72000122070312, "height": 12.600006103515625}, {"x0": 430.55999755859375, "y0": 387.0, "x1": 539.280029296875, "y1": 399.6000061035156, "width": 108.72003173828125, "height": 12.600006103515625}, {"x0": 91.44000244140625, "y0": 343.79998779296875, "x1": 320.760009765625, "y1": 386.2799987792969, "width": 229.32000732421875, "height": 42.480010986328125}, {"x0": 321.4800109863281, "y0": 343.79998779296875, "x1": 430.20001220703125, "y1": 386.2799987792969, "width": 108.72000122070312, "height": 42.480010986328125}, {"x0": 430.55999755859375, "y0": 343.79998779296875, "x1": 539.280029296875, "y1": 386.2799987792969, "width": 108.72003173828125, "height": 42.480010986328125}, {"x0": 91.44000244140625, "y0": 329.7599792480469, "x1": 320.760009765625, "y1": 342.7200012207031, "width": 229.32000732421875, "height": 12.96002197265625}, {"x0": 321.4800109863281, "y0": 329.7599792480469, "x1": 430.20001220703125, "y1": 342.7200012207031, "width": 108.72000122070312, "height": 12.96002197265625}, {"x0": 430.55999755859375, "y0": 329.7599792480469, "x1": 539.280029296875, "y1": 342.7200012207031, "width": 108.72003173828125, "height": 12.96002197265625}, {"x0": 91.44000244140625, "y0": 307.79998779296875, "x1": 320.760009765625, "y1": 328.67999267578125, "width": 229.32000732421875, "height": 20.8800048828125}, {"x0": 321.4800109863281, "y0": 318.5999755859375, "x1": 430.20001220703125, "y1": 328.67999267578125, "width": 108.72000122070312, "height": 10.08001708984375}, {"x0": 430.55999755859375, "y0": 318.5999755859375, "x1": 539.280029296875, "y1": 328.67999267578125, "width": 108.72003173828125, "height": 10.08001708984375}, {"x0": 321.4800109863281, "y0": 307.79998779296875, "x1": 430.20001220703125, "y1": 317.8800048828125, "width": 108.72000122070312, "height": 10.08001708984375}, {"x0": 430.55999755859375, "y0": 307.79998779296875, "x1": 539.280029296875, "y1": 317.8800048828125, "width": 108.72003173828125, "height": 10.08001708984375}, {"x0": 91.44000244140625, "y0": 264.5999755859375, "x1": 320.760009765625, "y1": 307.08001708984375, "width": 229.32000732421875, "height": 42.48004150390625}, {"x0": 321.4800109863281, "y0": 264.5999755859375, "x1": 430.20001220703125, "y1": 307.08001708984375, "width": 108.72000122070312, "height": 42.48004150390625}, {"x0": 430.55999755859375, "y0": 264.5999755859375, "x1": 539.280029296875, "y1": 307.08001708984375, "width": 108.72003173828125, "height": 42.48004150390625}]}, {"pageInfo": {"number": 50, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 233.27999877929688, "y0": 454.32000732421875, "x1": 338.760009765625, "y1": 474.8399963378906, "width": 105.48001098632812, "height": 20.519989013671875}, {"x0": 339.4800109863281, "y0": 454.32000732421875, "x1": 460.0799865722656, "y1": 474.8399963378906, "width": 120.5999755859375, "height": 20.519989013671875}, {"x0": 460.79998779296875, "y0": 454.32000732421875, "x1": 559.4400024414062, "y1": 474.8399963378906, "width": 98.6400146484375, "height": 20.519989013671875}, {"x0": 560.1599731445312, "y0": 454.32000732421875, "x1": 658.7999877929688, "y1": 474.8399963378906, "width": 98.6400146484375, "height": 20.519989013671875}, {"x0": 233.27999877929688, "y0": 442.44000244140625, "x1": 338.760009765625, "y1": 453.6000061035156, "width": 105.48001098632812, "height": 11.160003662109375}, {"x0": 339.4800109863281, "y0": 442.44000244140625, "x1": 460.0799865722656, "y1": 453.6000061035156, "width": 120.5999755859375, "height": 11.160003662109375}, {"x0": 460.79998779296875, "y0": 442.44000244140625, "x1": 559.4400024414062, "y1": 453.6000061035156, "width": 98.6400146484375, "height": 11.160003662109375}, {"x0": 560.1599731445312, "y0": 442.44000244140625, "x1": 658.7999877929688, "y1": 453.6000061035156, "width": 98.6400146484375, "height": 11.160003662109375}, {"x0": 233.27999877929688, "y0": 430.55999755859375, "x1": 338.760009765625, "y1": 441.7200012207031, "width": 105.48001098632812, "height": 11.160003662109375}, {"x0": 339.4800109863281, "y0": 430.55999755859375, "x1": 460.0799865722656, "y1": 441.7200012207031, "width": 120.5999755859375, "height": 11.160003662109375}, {"x0": 460.79998779296875, "y0": 430.55999755859375, "x1": 559.4400024414062, "y1": 441.7200012207031, "width": 98.6400146484375, "height": 11.160003662109375}, {"x0": 560.1599731445312, "y0": 430.55999755859375, "x1": 658.7999877929688, "y1": 441.7200012207031, "width": 98.6400146484375, "height": 11.160003662109375}, {"x0": 233.27999877929688, "y0": 305.2799987792969, "x1": 338.760009765625, "y1": 429.8399963378906, "width": 105.48001098632812, "height": 124.55999755859375}, {"x0": 339.4800109863281, "y0": 305.2799987792969, "x1": 460.0799865722656, "y1": 429.8399963378906, "width": 120.5999755859375, "height": 124.55999755859375}, {"x0": 460.79998779296875, "y0": 305.2799987792969, "x1": 559.4400024414062, "y1": 429.8399963378906, "width": 98.6400146484375, "height": 124.55999755859375}, {"x0": 560.1599731445312, "y0": 305.2799987792969, "x1": 658.7999877929688, "y1": 429.8399963378906, "width": 98.6400146484375, "height": 124.55999755859375}, {"x0": 233.27999877929688, "y0": 293.3999938964844, "x1": 338.760009765625, "y1": 304.55999755859375, "width": 105.48001098632812, "height": 11.160003662109375}, {"x0": 339.4800109863281, "y0": 293.3999938964844, "x1": 460.0799865722656, "y1": 304.55999755859375, "width": 120.5999755859375, "height": 11.160003662109375}, {"x0": 460.79998779296875, "y0": 293.3999938964844, "x1": 559.4400024414062, "y1": 304.55999755859375, "width": 98.6400146484375, "height": 11.160003662109375}, {"x0": 560.1599731445312, "y0": 293.3999938964844, "x1": 658.7999877929688, "y1": 304.55999755859375, "width": 98.6400146484375, "height": 11.160003662109375}, {"x0": 233.27999877929688, "y0": 167.760009765625, "x1": 338.760009765625, "y1": 292.67999267578125, "width": 105.48001098632812, "height": 124.91998291015625}, {"x0": 339.4800109863281, "y0": 167.760009765625, "x1": 460.0799865722656, "y1": 292.67999267578125, "width": 120.5999755859375, "height": 124.91998291015625}, {"x0": 460.79998779296875, "y0": 167.760009765625, "x1": 559.4400024414062, "y1": 292.67999267578125, "width": 98.6400146484375, "height": 124.91998291015625}, {"x0": 560.1599731445312, "y0": 167.760009765625, "x1": 658.7999877929688, "y1": 292.67999267578125, "width": 98.6400146484375, "height": 124.91998291015625}]}, {"pageInfo": {"number": 51, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 281.1600036621094, "y0": 448.91998291015625, "x1": 440.2799987792969, "y1": 477.7200012207031, "width": 159.1199951171875, "height": 28.800018310546875}, {"x0": 440.6400146484375, "y0": 463.67999267578125, "x1": 610.9199829101562, "y1": 477.7200012207031, "width": 170.27996826171875, "height": 14.040008544921875}, {"x0": 440.6400146484375, "y0": 448.91998291015625, "x1": 511.55999755859375, "y1": 462.96002197265625, "width": 70.91998291015625, "height": 14.0400390625}, {"x0": 512.280029296875, "y0": 448.91998291015625, "x1": 610.9199829101562, "y1": 462.96002197265625, "width": 98.63995361328125, "height": 14.0400390625}, {"x0": 281.1600036621094, "y0": 371.1600036621094, "x1": 440.2799987792969, "y1": 448.55999755859375, "width": 159.1199951171875, "height": 77.39999389648438}, {"x0": 440.6400146484375, "y0": 371.1600036621094, "x1": 511.55999755859375, "y1": 448.55999755859375, "width": 70.91998291015625, "height": 77.39999389648438}, {"x0": 512.280029296875, "y0": 371.1600036621094, "x1": 610.9199829101562, "y1": 448.55999755859375, "width": 98.63995361328125, "height": 77.39999389648438}, {"x0": 281.1600036621094, "y0": 293.3999938964844, "x1": 440.2799987792969, "y1": 370.44000244140625, "width": 159.1199951171875, "height": 77.04000854492188}, {"x0": 440.6400146484375, "y0": 293.3999938964844, "x1": 511.55999755859375, "y1": 370.44000244140625, "width": 70.91998291015625, "height": 77.04000854492188}, {"x0": 512.280029296875, "y0": 293.3999938964844, "x1": 610.9199829101562, "y1": 370.44000244140625, "width": 98.63995361328125, "height": 77.04000854492188}, {"x0": 281.1600036621094, "y0": 222.1199951171875, "x1": 440.2799987792969, "y1": 292.67999267578125, "width": 159.1199951171875, "height": 70.55999755859375}, {"x0": 440.6400146484375, "y0": 222.1199951171875, "x1": 511.55999755859375, "y1": 292.67999267578125, "width": 70.91998291015625, "height": 70.55999755859375}, {"x0": 512.280029296875, "y0": 222.1199951171875, "x1": 610.9199829101562, "y1": 292.67999267578125, "width": 98.63995361328125, "height": 70.55999755859375}]}, {"pageInfo": {"number": 52, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 233.27999877929688, "y0": 457.20001220703125, "x1": 338.760009765625, "y1": 477.7200012207031, "width": 105.48001098632812, "height": 20.519989013671875}, {"x0": 339.4800109863281, "y0": 457.20001220703125, "x1": 460.0799865722656, "y1": 477.7200012207031, "width": 120.5999755859375, "height": 20.519989013671875}, {"x0": 460.79998779296875, "y0": 457.20001220703125, "x1": 559.4400024414062, "y1": 477.7200012207031, "width": 98.6400146484375, "height": 20.519989013671875}, {"x0": 560.1599731445312, "y0": 457.20001220703125, "x1": 658.7999877929688, "y1": 477.7200012207031, "width": 98.6400146484375, "height": 20.519989013671875}, {"x0": 233.27999877929688, "y0": 445.32000732421875, "x1": 338.760009765625, "y1": 456.47998046875, "width": 105.48001098632812, "height": 11.15997314453125}, {"x0": 339.4800109863281, "y0": 445.32000732421875, "x1": 460.0799865722656, "y1": 456.47998046875, "width": 120.5999755859375, "height": 11.15997314453125}, {"x0": 460.79998779296875, "y0": 445.32000732421875, "x1": 559.4400024414062, "y1": 456.47998046875, "width": 98.6400146484375, "height": 11.15997314453125}, {"x0": 560.1599731445312, "y0": 445.32000732421875, "x1": 658.7999877929688, "y1": 456.47998046875, "width": 98.6400146484375, "height": 11.15997314453125}, {"x0": 233.27999877929688, "y0": 433.44000244140625, "x1": 338.760009765625, "y1": 444.6000061035156, "width": 105.48001098632812, "height": 11.160003662109375}, {"x0": 339.4800109863281, "y0": 433.44000244140625, "x1": 460.0799865722656, "y1": 444.6000061035156, "width": 120.5999755859375, "height": 11.160003662109375}, {"x0": 460.79998779296875, "y0": 433.44000244140625, "x1": 559.4400024414062, "y1": 444.6000061035156, "width": 98.6400146484375, "height": 11.160003662109375}, {"x0": 560.1599731445312, "y0": 433.44000244140625, "x1": 658.7999877929688, "y1": 444.6000061035156, "width": 98.6400146484375, "height": 11.160003662109375}, {"x0": 233.27999877929688, "y0": 285.4800109863281, "x1": 338.760009765625, "y1": 432.7200012207031, "width": 105.48001098632812, "height": 147.239990234375}, {"x0": 339.4800109863281, "y0": 285.4800109863281, "x1": 460.0799865722656, "y1": 432.7200012207031, "width": 120.5999755859375, "height": 147.239990234375}, {"x0": 460.79998779296875, "y0": 285.4800109863281, "x1": 559.4400024414062, "y1": 432.7200012207031, "width": 98.6400146484375, "height": 147.239990234375}, {"x0": 560.1599731445312, "y0": 285.4800109863281, "x1": 658.7999877929688, "y1": 432.7200012207031, "width": 98.6400146484375, "height": 147.239990234375}, {"x0": 233.27999877929688, "y0": 273.6000061035156, "x1": 338.760009765625, "y1": 284.760009765625, "width": 105.48001098632812, "height": 11.160003662109375}, {"x0": 339.4800109863281, "y0": 273.6000061035156, "x1": 460.0799865722656, "y1": 284.760009765625, "width": 120.5999755859375, "height": 11.160003662109375}, {"x0": 460.79998779296875, "y0": 273.6000061035156, "x1": 559.4400024414062, "y1": 284.760009765625, "width": 98.6400146484375, "height": 11.160003662109375}, {"x0": 560.1599731445312, "y0": 273.6000061035156, "x1": 658.7999877929688, "y1": 284.760009765625, "width": 98.6400146484375, "height": 11.160003662109375}, {"x0": 233.27999877929688, "y0": 125.6400146484375, "x1": 338.760009765625, "y1": 272.8800048828125, "width": 105.48001098632812, "height": 147.239990234375}, {"x0": 339.4800109863281, "y0": 125.6400146484375, "x1": 460.0799865722656, "y1": 272.8800048828125, "width": 120.5999755859375, "height": 147.239990234375}, {"x0": 460.79998779296875, "y0": 125.6400146484375, "x1": 559.4400024414062, "y1": 272.8800048828125, "width": 98.6400146484375, "height": 147.239990234375}, {"x0": 560.1599731445312, "y0": 125.6400146484375, "x1": 658.7999877929688, "y1": 272.8800048828125, "width": 98.6400146484375, "height": 147.239990234375}]}, {"pageInfo": {"number": 53, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 274.32000732421875, "y0": 448.91998291015625, "x1": 447.1199951171875, "y1": 477.7200012207031, "width": 172.79998779296875, "height": 28.800018310546875}, {"x0": 447.4800109863281, "y0": 463.67999267578125, "x1": 617.760009765625, "y1": 477.7200012207031, "width": 170.27999877929688, "height": 14.040008544921875}, {"x0": 447.4800109863281, "y0": 448.91998291015625, "x1": 518.4000244140625, "y1": 462.96002197265625, "width": 70.92001342773438, "height": 14.0400390625}, {"x0": 519.1199951171875, "y0": 448.91998291015625, "x1": 617.760009765625, "y1": 462.96002197265625, "width": 98.6400146484375, "height": 14.0400390625}, {"x0": 274.32000732421875, "y0": 371.1600036621094, "x1": 447.1199951171875, "y1": 448.55999755859375, "width": 172.79998779296875, "height": 77.39999389648438}, {"x0": 447.4800109863281, "y0": 371.1600036621094, "x1": 518.4000244140625, "y1": 448.55999755859375, "width": 70.92001342773438, "height": 77.39999389648438}, {"x0": 519.1199951171875, "y0": 371.1600036621094, "x1": 617.760009765625, "y1": 448.55999755859375, "width": 98.6400146484375, "height": 77.39999389648438}, {"x0": 274.32000732421875, "y0": 299.8800048828125, "x1": 447.1199951171875, "y1": 370.44000244140625, "width": 172.79998779296875, "height": 70.55999755859375}, {"x0": 447.4800109863281, "y0": 299.8800048828125, "x1": 518.4000244140625, "y1": 370.44000244140625, "width": 70.92001342773438, "height": 70.55999755859375}, {"x0": 519.1199951171875, "y0": 300.239990234375, "x1": 617.760009765625, "y1": 370.44000244140625, "width": 98.6400146484375, "height": 70.20001220703125}, {"x0": 274.32000732421875, "y0": 228.60000610351562, "x1": 447.1199951171875, "y1": 299.5199890136719, "width": 172.79998779296875, "height": 70.91998291015625}, {"x0": 447.4800109863281, "y0": 228.60000610351562, "x1": 518.4000244140625, "y1": 299.5199890136719, "width": 70.92001342773438, "height": 70.91998291015625}, {"x0": 519.1199951171875, "y0": 228.60000610351562, "x1": 617.760009765625, "y1": 299.1600036621094, "width": 98.6400146484375, "height": 70.55999755859375}]}, {"pageInfo": {"number": 54, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 157.67999267578125, "y0": 431.2799987792969, "x1": 302.0400085449219, "y1": 462.6000061035156, "width": 144.36001586914062, "height": 31.32000732421875}, {"x0": 302.760009765625, "y0": 452.52001953125, "x1": 356.0400085449219, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 356.760009765625, "y0": 452.52001953125, "x1": 410.0400085449219, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 410.760009765625, "y0": 452.52001953125, "x1": 464.0400085449219, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 464.760009765625, "y0": 452.52001953125, "x1": 518.0399780273438, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 518.760009765625, "y0": 452.52001953125, "x1": 572.0399780273438, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 572.760009765625, "y0": 452.52001953125, "x1": 626.0399780273438, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 626.760009765625, "y0": 452.52001953125, "x1": 680.0399780273438, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 680.760009765625, "y0": 452.52001953125, "x1": 734.0399780273438, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 302.760009765625, "y0": 431.2799987792969, "x1": 356.0400085449219, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 356.760009765625, "y0": 431.2799987792969, "x1": 410.0400085449219, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 410.760009765625, "y0": 431.2799987792969, "x1": 464.0400085449219, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 464.760009765625, "y0": 431.2799987792969, "x1": 518.0399780273438, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 518.760009765625, "y0": 431.2799987792969, "x1": 572.0399780273438, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 572.760009765625, "y0": 431.2799987792969, "x1": 626.0399780273438, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 626.760009765625, "y0": 431.2799987792969, "x1": 680.0399780273438, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 680.760009765625, "y0": 431.2799987792969, "x1": 734.0399780273438, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 157.67999267578125, "y0": 265.32000732421875, "x1": 302.0400085449219, "y1": 430.55999755859375, "width": 144.36001586914062, "height": 165.239990234375}, {"x0": 302.760009765625, "y0": 265.32000732421875, "x1": 356.0400085449219, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 356.760009765625, "y0": 265.32000732421875, "x1": 410.0400085449219, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 410.760009765625, "y0": 265.32000732421875, "x1": 464.0400085449219, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 464.760009765625, "y0": 265.32000732421875, "x1": 518.0399780273438, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 518.760009765625, "y0": 265.32000732421875, "x1": 572.0399780273438, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 572.760009765625, "y0": 265.32000732421875, "x1": 626.0399780273438, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 626.760009765625, "y0": 265.32000732421875, "x1": 680.0399780273438, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 680.760009765625, "y0": 265.32000732421875, "x1": 734.0399780273438, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 157.67999267578125, "y0": 254.51998901367188, "x1": 302.0400085449219, "y1": 264.6000061035156, "width": 144.36001586914062, "height": 10.08001708984375}, {"x0": 302.760009765625, "y0": 254.51998901367188, "x1": 356.0400085449219, "y1": 264.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 356.760009765625, "y0": 254.51998901367188, "x1": 410.0400085449219, "y1": 264.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 410.760009765625, "y0": 254.51998901367188, "x1": 464.0400085449219, "y1": 264.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 464.760009765625, "y0": 254.51998901367188, "x1": 518.0399780273438, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}, {"x0": 518.760009765625, "y0": 254.51998901367188, "x1": 572.0399780273438, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}, {"x0": 572.760009765625, "y0": 254.51998901367188, "x1": 626.0399780273438, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}, {"x0": 626.760009765625, "y0": 254.51998901367188, "x1": 680.0399780273438, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}, {"x0": 680.760009765625, "y0": 254.51998901367188, "x1": 734.0399780273438, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}]}, {"pageInfo": {"number": 55, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.4000015258789, "y0": 458.2799987792969, "x1": 266.760009765625, "y1": 489.6000061035156, "width": 144.3600082397461, "height": 31.32000732421875}, {"x0": 267.4800109863281, "y0": 479.52001953125, "x1": 320.760009765625, "y1": 489.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 321.4800109863281, "y0": 479.52001953125, "x1": 374.760009765625, "y1": 489.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 375.4800109863281, "y0": 479.52001953125, "x1": 428.760009765625, "y1": 489.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 429.4800109863281, "y0": 479.52001953125, "x1": 482.760009765625, "y1": 489.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 483.4800109863281, "y0": 479.52001953125, "x1": 536.760009765625, "y1": 489.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 537.47998046875, "y0": 479.52001953125, "x1": 590.760009765625, "y1": 489.6000061035156, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 591.47998046875, "y0": 479.52001953125, "x1": 644.760009765625, "y1": 489.6000061035156, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 645.47998046875, "y0": 479.52001953125, "x1": 698.760009765625, "y1": 489.6000061035156, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 699.47998046875, "y0": 479.52001953125, "x1": 734.0399780273438, "y1": 489.6000061035156, "width": 34.55999755859375, "height": 10.079986572265625}, {"x0": 734.760009765625, "y0": 479.52001953125, "x1": 769.6799926757812, "y1": 489.6000061035156, "width": 34.91998291015625, "height": 10.079986572265625}, {"x0": 267.4800109863281, "y0": 458.2799987792969, "x1": 320.760009765625, "y1": 478.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 321.4800109863281, "y0": 458.2799987792969, "x1": 374.760009765625, "y1": 478.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 375.4800109863281, "y0": 458.2799987792969, "x1": 428.760009765625, "y1": 478.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 429.4800109863281, "y0": 458.2799987792969, "x1": 482.760009765625, "y1": 478.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 483.4800109863281, "y0": 458.2799987792969, "x1": 536.760009765625, "y1": 478.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 537.47998046875, "y0": 458.2799987792969, "x1": 590.760009765625, "y1": 478.79998779296875, "width": 53.280029296875, "height": 20.519989013671875}, {"x0": 591.47998046875, "y0": 458.2799987792969, "x1": 644.760009765625, "y1": 478.79998779296875, "width": 53.280029296875, "height": 20.519989013671875}, {"x0": 645.47998046875, "y0": 458.2799987792969, "x1": 698.760009765625, "y1": 478.79998779296875, "width": 53.280029296875, "height": 20.519989013671875}, {"x0": 699.47998046875, "y0": 458.2799987792969, "x1": 734.0399780273438, "y1": 478.79998779296875, "width": 34.55999755859375, "height": 20.519989013671875}, {"x0": 734.760009765625, "y0": 458.2799987792969, "x1": 769.6799926757812, "y1": 478.79998779296875, "width": 34.91998291015625, "height": 20.519989013671875}, {"x0": 122.4000015258789, "y0": 292.32000732421875, "x1": 266.760009765625, "y1": 457.55999755859375, "width": 144.3600082397461, "height": 165.239990234375}, {"x0": 267.4800109863281, "y0": 292.32000732421875, "x1": 320.760009765625, "y1": 457.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 321.4800109863281, "y0": 292.32000732421875, "x1": 374.760009765625, "y1": 457.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 375.4800109863281, "y0": 292.32000732421875, "x1": 428.760009765625, "y1": 457.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 429.4800109863281, "y0": 292.32000732421875, "x1": 482.760009765625, "y1": 457.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 483.4800109863281, "y0": 292.32000732421875, "x1": 536.760009765625, "y1": 457.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 537.47998046875, "y0": 292.32000732421875, "x1": 590.760009765625, "y1": 457.55999755859375, "width": 53.280029296875, "height": 165.239990234375}, {"x0": 591.47998046875, "y0": 292.32000732421875, "x1": 644.760009765625, "y1": 457.55999755859375, "width": 53.280029296875, "height": 165.239990234375}, {"x0": 645.47998046875, "y0": 292.32000732421875, "x1": 698.760009765625, "y1": 457.55999755859375, "width": 53.280029296875, "height": 165.239990234375}, {"x0": 699.47998046875, "y0": 292.32000732421875, "x1": 734.0399780273438, "y1": 457.55999755859375, "width": 34.55999755859375, "height": 165.239990234375}, {"x0": 734.760009765625, "y0": 292.32000732421875, "x1": 769.6799926757812, "y1": 457.55999755859375, "width": 34.91998291015625, "height": 165.239990234375}, {"x0": 122.4000015258789, "y0": 281.5199890136719, "x1": 266.760009765625, "y1": 291.6000061035156, "width": 144.3600082397461, "height": 10.08001708984375}, {"x0": 267.4800109863281, "y0": 281.5199890136719, "x1": 320.760009765625, "y1": 291.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 321.4800109863281, "y0": 281.5199890136719, "x1": 374.760009765625, "y1": 291.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 375.4800109863281, "y0": 281.5199890136719, "x1": 428.760009765625, "y1": 291.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 429.4800109863281, "y0": 281.5199890136719, "x1": 482.760009765625, "y1": 291.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 483.4800109863281, "y0": 281.5199890136719, "x1": 536.760009765625, "y1": 291.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 537.47998046875, "y0": 281.5199890136719, "x1": 590.760009765625, "y1": 291.6000061035156, "width": 53.280029296875, "height": 10.08001708984375}, {"x0": 591.47998046875, "y0": 281.5199890136719, "x1": 644.760009765625, "y1": 291.6000061035156, "width": 53.280029296875, "height": 10.08001708984375}, {"x0": 645.47998046875, "y0": 281.5199890136719, "x1": 698.760009765625, "y1": 291.6000061035156, "width": 53.280029296875, "height": 10.08001708984375}, {"x0": 699.47998046875, "y0": 281.5199890136719, "x1": 734.0399780273438, "y1": 291.6000061035156, "width": 34.55999755859375, "height": 10.08001708984375}, {"x0": 734.760009765625, "y0": 281.5199890136719, "x1": 769.6799926757812, "y1": 291.6000061035156, "width": 34.91998291015625, "height": 10.08001708984375}]}, {"pageInfo": {"number": 56, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 171.0, "y0": 402.47998046875, "x1": 313.20001220703125, "y1": 434.1600036621094, "width": 142.20001220703125, "height": 31.680023193359375}, {"x0": 313.9200134277344, "y0": 423.7200012207031, "x1": 364.32000732421875, "y1": 434.1600036621094, "width": 50.399993896484375, "height": 10.44000244140625}, {"x0": 365.0400085449219, "y0": 423.7200012207031, "x1": 415.0799865722656, "y1": 434.1600036621094, "width": 50.03997802734375, "height": 10.44000244140625}, {"x0": 415.79998779296875, "y0": 423.7200012207031, "x1": 466.20001220703125, "y1": 434.1600036621094, "width": 50.4000244140625, "height": 10.44000244140625}, {"x0": 466.9200134277344, "y0": 423.7200012207031, "x1": 517.3200073242188, "y1": 434.1600036621094, "width": 50.399993896484375, "height": 10.44000244140625}, {"x0": 518.0399780273438, "y0": 423.7200012207031, "x1": 568.0800170898438, "y1": 434.1600036621094, "width": 50.0400390625, "height": 10.44000244140625}, {"x0": 568.7999877929688, "y0": 423.7200012207031, "x1": 619.2000122070312, "y1": 434.1600036621094, "width": 50.4000244140625, "height": 10.44000244140625}, {"x0": 619.9199829101562, "y0": 423.7200012207031, "x1": 670.3200073242188, "y1": 434.1600036621094, "width": 50.4000244140625, "height": 10.44000244140625}, {"x0": 671.0399780273438, "y0": 423.7200012207031, "x1": 721.0800170898438, "y1": 434.1600036621094, "width": 50.0400390625, "height": 10.44000244140625}, {"x0": 313.9200134277344, "y0": 402.47998046875, "x1": 364.32000732421875, "y1": 423.0, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 365.0400085449219, "y0": 402.47998046875, "x1": 415.0799865722656, "y1": 423.0, "width": 50.03997802734375, "height": 20.52001953125}, {"x0": 415.79998779296875, "y0": 402.47998046875, "x1": 466.20001220703125, "y1": 423.0, "width": 50.4000244140625, "height": 20.52001953125}, {"x0": 466.9200134277344, "y0": 402.47998046875, "x1": 517.3200073242188, "y1": 423.0, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 518.0399780273438, "y0": 402.47998046875, "x1": 568.0800170898438, "y1": 423.0, "width": 50.0400390625, "height": 20.52001953125}, {"x0": 568.7999877929688, "y0": 402.47998046875, "x1": 619.2000122070312, "y1": 423.0, "width": 50.4000244140625, "height": 20.52001953125}, {"x0": 619.9199829101562, "y0": 402.47998046875, "x1": 670.3200073242188, "y1": 423.0, "width": 50.4000244140625, "height": 20.52001953125}, {"x0": 671.0399780273438, "y0": 402.47998046875, "x1": 721.0800170898438, "y1": 423.0, "width": 50.0400390625, "height": 20.52001953125}, {"x0": 171.0, "y0": 329.760009765625, "x1": 313.20001220703125, "y1": 402.1199951171875, "width": 142.20001220703125, "height": 72.3599853515625}, {"x0": 313.9200134277344, "y0": 329.760009765625, "x1": 364.32000732421875, "y1": 402.1199951171875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 365.0400085449219, "y0": 329.760009765625, "x1": 415.0799865722656, "y1": 402.1199951171875, "width": 50.03997802734375, "height": 72.3599853515625}, {"x0": 415.79998779296875, "y0": 329.760009765625, "x1": 466.20001220703125, "y1": 402.1199951171875, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 466.9200134277344, "y0": 329.760009765625, "x1": 517.3200073242188, "y1": 402.1199951171875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 518.0399780273438, "y0": 329.760009765625, "x1": 568.0800170898438, "y1": 402.1199951171875, "width": 50.0400390625, "height": 72.3599853515625}, {"x0": 568.7999877929688, "y0": 329.760009765625, "x1": 619.2000122070312, "y1": 402.1199951171875, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 619.9199829101562, "y0": 329.760009765625, "x1": 670.3200073242188, "y1": 402.1199951171875, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 671.0399780273438, "y0": 329.760009765625, "x1": 721.0800170898438, "y1": 402.1199951171875, "width": 50.0400390625, "height": 72.3599853515625}, {"x0": 122.4000015258789, "y0": 280.79998779296875, "x1": 264.9599914550781, "y1": 319.32000732421875, "width": 142.55998992919922, "height": 38.52001953125}, {"x0": 265.67999267578125, "y0": 306.7200012207031, "x1": 721.0800170898438, "y1": 319.32000732421875, "width": 455.4000244140625, "height": 12.600006103515625}, {"x0": 721.7999877929688, "y0": 306.7200012207031, "x1": 769.6799926757812, "y1": 319.32000732421875, "width": 47.8800048828125, "height": 12.600006103515625}, {"x0": 265.67999267578125, "y0": 280.79998779296875, "x1": 316.0799865722656, "y1": 306.0, "width": 50.399993896484375, "height": 25.20001220703125}, {"x0": 316.44000244140625, "y0": 280.79998779296875, "x1": 366.8399963378906, "y1": 306.0, "width": 50.399993896484375, "height": 25.20001220703125}, {"x0": 367.55999755859375, "y0": 280.79998779296875, "x1": 417.9599914550781, "y1": 306.0, "width": 50.399993896484375, "height": 25.20001220703125}, {"x0": 418.67999267578125, "y0": 280.79998779296875, "x1": 469.0799865722656, "y1": 306.0, "width": 50.399993896484375, "height": 25.20001220703125}, {"x0": 469.44000244140625, "y0": 280.79998779296875, "x1": 519.8400268554688, "y1": 306.0, "width": 50.4000244140625, "height": 25.20001220703125}, {"x0": 520.5599975585938, "y0": 280.79998779296875, "x1": 570.9600219726562, "y1": 306.0, "width": 50.4000244140625, "height": 25.20001220703125}, {"x0": 571.6799926757812, "y0": 280.79998779296875, "x1": 622.0800170898438, "y1": 306.0, "width": 50.4000244140625, "height": 25.20001220703125}, {"x0": 622.4400024414062, "y0": 280.79998779296875, "x1": 672.8400268554688, "y1": 306.0, "width": 50.4000244140625, "height": 25.20001220703125}, {"x0": 673.5599975585938, "y0": 280.79998779296875, "x1": 721.0800170898438, "y1": 306.0, "width": 47.52001953125, "height": 25.20001220703125}, {"x0": 721.7999877929688, "y0": 280.79998779296875, "x1": 769.6799926757812, "y1": 306.0, "width": 47.8800048828125, "height": 25.20001220703125}, {"x0": 122.4000015258789, "y0": 190.79998779296875, "x1": 264.9599914550781, "y1": 280.08001708984375, "width": 142.55998992919922, "height": 89.280029296875}, {"x0": 265.67999267578125, "y0": 190.79998779296875, "x1": 316.0799865722656, "y1": 280.08001708984375, "width": 50.399993896484375, "height": 89.280029296875}, {"x0": 316.44000244140625, "y0": 190.79998779296875, "x1": 366.8399963378906, "y1": 280.08001708984375, "width": 50.399993896484375, "height": 89.280029296875}, {"x0": 367.55999755859375, "y0": 190.79998779296875, "x1": 417.9599914550781, "y1": 280.08001708984375, "width": 50.399993896484375, "height": 89.280029296875}, {"x0": 418.67999267578125, "y0": 190.79998779296875, "x1": 469.0799865722656, "y1": 280.08001708984375, "width": 50.399993896484375, "height": 89.280029296875}, {"x0": 469.44000244140625, "y0": 190.79998779296875, "x1": 519.8400268554688, "y1": 280.08001708984375, "width": 50.4000244140625, "height": 89.280029296875}, {"x0": 520.5599975585938, "y0": 190.79998779296875, "x1": 570.9600219726562, "y1": 280.08001708984375, "width": 50.4000244140625, "height": 89.280029296875}, {"x0": 571.6799926757812, "y0": 190.79998779296875, "x1": 622.0800170898438, "y1": 280.08001708984375, "width": 50.4000244140625, "height": 89.280029296875}, {"x0": 622.4400024414062, "y0": 190.79998779296875, "x1": 672.8400268554688, "y1": 280.08001708984375, "width": 50.4000244140625, "height": 89.280029296875}, {"x0": 673.5599975585938, "y0": 190.79998779296875, "x1": 721.0800170898438, "y1": 280.08001708984375, "width": 47.52001953125, "height": 89.280029296875}, {"x0": 721.7999877929688, "y0": 190.79998779296875, "x1": 769.6799926757812, "y1": 280.08001708984375, "width": 47.8800048828125, "height": 89.280029296875}]}, {"pageInfo": {"number": 57, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 157.67999267578125, "y0": 431.2799987792969, "x1": 302.0400085449219, "y1": 462.6000061035156, "width": 144.36001586914062, "height": 31.32000732421875}, {"x0": 302.760009765625, "y0": 452.52001953125, "x1": 356.0400085449219, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 356.760009765625, "y0": 452.52001953125, "x1": 410.0400085449219, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 410.760009765625, "y0": 452.52001953125, "x1": 464.0400085449219, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 464.760009765625, "y0": 452.52001953125, "x1": 518.0399780273438, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 518.760009765625, "y0": 452.52001953125, "x1": 572.0399780273438, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 572.760009765625, "y0": 452.52001953125, "x1": 626.0399780273438, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 626.760009765625, "y0": 452.52001953125, "x1": 680.0399780273438, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 680.760009765625, "y0": 452.52001953125, "x1": 734.0399780273438, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 302.760009765625, "y0": 431.2799987792969, "x1": 356.0400085449219, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 356.760009765625, "y0": 431.2799987792969, "x1": 410.0400085449219, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 410.760009765625, "y0": 431.2799987792969, "x1": 464.0400085449219, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 464.760009765625, "y0": 431.2799987792969, "x1": 518.0399780273438, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 518.760009765625, "y0": 431.2799987792969, "x1": 572.0399780273438, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 572.760009765625, "y0": 431.2799987792969, "x1": 626.0399780273438, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 626.760009765625, "y0": 431.2799987792969, "x1": 680.0399780273438, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 680.760009765625, "y0": 431.2799987792969, "x1": 734.0399780273438, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 157.67999267578125, "y0": 265.32000732421875, "x1": 302.0400085449219, "y1": 430.55999755859375, "width": 144.36001586914062, "height": 165.239990234375}, {"x0": 302.760009765625, "y0": 265.32000732421875, "x1": 356.0400085449219, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 356.760009765625, "y0": 265.32000732421875, "x1": 410.0400085449219, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 410.760009765625, "y0": 265.32000732421875, "x1": 464.0400085449219, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 464.760009765625, "y0": 265.32000732421875, "x1": 518.0399780273438, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 518.760009765625, "y0": 265.32000732421875, "x1": 572.0399780273438, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 572.760009765625, "y0": 265.32000732421875, "x1": 626.0399780273438, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 626.760009765625, "y0": 265.32000732421875, "x1": 680.0399780273438, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 680.760009765625, "y0": 265.32000732421875, "x1": 734.0399780273438, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 157.67999267578125, "y0": 254.51998901367188, "x1": 302.0400085449219, "y1": 264.6000061035156, "width": 144.36001586914062, "height": 10.08001708984375}, {"x0": 302.760009765625, "y0": 254.51998901367188, "x1": 356.0400085449219, "y1": 264.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 356.760009765625, "y0": 254.51998901367188, "x1": 410.0400085449219, "y1": 264.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 410.760009765625, "y0": 254.51998901367188, "x1": 464.0400085449219, "y1": 264.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 464.760009765625, "y0": 254.51998901367188, "x1": 518.0399780273438, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}, {"x0": 518.760009765625, "y0": 254.51998901367188, "x1": 572.0399780273438, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}, {"x0": 572.760009765625, "y0": 254.51998901367188, "x1": 626.0399780273438, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}, {"x0": 626.760009765625, "y0": 254.51998901367188, "x1": 680.0399780273438, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}, {"x0": 680.760009765625, "y0": 254.51998901367188, "x1": 734.0399780273438, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}]}, {"pageInfo": {"number": 58, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.4000015258789, "y0": 473.3999938964844, "x1": 265.32000732421875, "y1": 504.7200012207031, "width": 142.92000579833984, "height": 31.32000732421875}, {"x0": 266.0400085449219, "y0": 494.6400146484375, "x1": 318.9599914550781, "y1": 504.7200012207031, "width": 52.91998291015625, "height": 10.079986572265625}, {"x0": 319.67999267578125, "y0": 494.6400146484375, "x1": 372.6000061035156, "y1": 504.7200012207031, "width": 52.920013427734375, "height": 10.079986572265625}, {"x0": 373.32000732421875, "y0": 494.6400146484375, "x1": 425.8800048828125, "y1": 504.7200012207031, "width": 52.55999755859375, "height": 10.079986572265625}, {"x0": 426.6000061035156, "y0": 494.6400146484375, "x1": 479.5199890136719, "y1": 504.7200012207031, "width": 52.91998291015625, "height": 10.079986572265625}, {"x0": 480.239990234375, "y0": 494.6400146484375, "x1": 533.1599731445312, "y1": 504.7200012207031, "width": 52.91998291015625, "height": 10.079986572265625}, {"x0": 533.52001953125, "y0": 494.6400146484375, "x1": 586.4400024414062, "y1": 504.7200012207031, "width": 52.91998291015625, "height": 10.079986572265625}, {"x0": 587.1599731445312, "y0": 494.6400146484375, "x1": 640.0800170898438, "y1": 504.7200012207031, "width": 52.9200439453125, "height": 10.079986572265625}, {"x0": 640.7999877929688, "y0": 494.6400146484375, "x1": 694.0800170898438, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 694.4400024414062, "y0": 494.6400146484375, "x1": 734.0399780273438, "y1": 504.7200012207031, "width": 39.5999755859375, "height": 10.079986572265625}, {"x0": 734.760009765625, "y0": 494.6400146484375, "x1": 769.6799926757812, "y1": 504.7200012207031, "width": 34.91998291015625, "height": 10.079986572265625}, {"x0": 266.0400085449219, "y0": 473.3999938964844, "x1": 318.9599914550781, "y1": 493.9200134277344, "width": 52.91998291015625, "height": 20.52001953125}, {"x0": 319.67999267578125, "y0": 473.3999938964844, "x1": 372.6000061035156, "y1": 493.9200134277344, "width": 52.920013427734375, "height": 20.52001953125}, {"x0": 373.32000732421875, "y0": 473.3999938964844, "x1": 425.8800048828125, "y1": 493.9200134277344, "width": 52.55999755859375, "height": 20.52001953125}, {"x0": 426.6000061035156, "y0": 473.3999938964844, "x1": 479.5199890136719, "y1": 493.9200134277344, "width": 52.91998291015625, "height": 20.52001953125}, {"x0": 480.239990234375, "y0": 473.3999938964844, "x1": 533.1599731445312, "y1": 493.9200134277344, "width": 52.91998291015625, "height": 20.52001953125}, {"x0": 533.52001953125, "y0": 473.3999938964844, "x1": 586.4400024414062, "y1": 493.9200134277344, "width": 52.91998291015625, "height": 20.52001953125}, {"x0": 587.1599731445312, "y0": 473.3999938964844, "x1": 640.0800170898438, "y1": 493.9200134277344, "width": 52.9200439453125, "height": 20.52001953125}, {"x0": 640.7999877929688, "y0": 473.3999938964844, "x1": 694.0800170898438, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 694.4400024414062, "y0": 473.3999938964844, "x1": 734.0399780273438, "y1": 493.9200134277344, "width": 39.5999755859375, "height": 20.52001953125}, {"x0": 734.760009765625, "y0": 473.3999938964844, "x1": 769.6799926757812, "y1": 493.9200134277344, "width": 34.91998291015625, "height": 20.52001953125}, {"x0": 122.4000015258789, "y0": 307.08001708984375, "x1": 265.32000732421875, "y1": 472.67999267578125, "width": 142.92000579833984, "height": 165.5999755859375}, {"x0": 266.0400085449219, "y0": 307.08001708984375, "x1": 318.9599914550781, "y1": 472.67999267578125, "width": 52.91998291015625, "height": 165.5999755859375}, {"x0": 319.67999267578125, "y0": 307.08001708984375, "x1": 372.6000061035156, "y1": 472.67999267578125, "width": 52.920013427734375, "height": 165.5999755859375}, {"x0": 373.32000732421875, "y0": 307.08001708984375, "x1": 425.8800048828125, "y1": 472.67999267578125, "width": 52.55999755859375, "height": 165.5999755859375}, {"x0": 426.6000061035156, "y0": 307.08001708984375, "x1": 479.5199890136719, "y1": 472.67999267578125, "width": 52.91998291015625, "height": 165.5999755859375}, {"x0": 480.239990234375, "y0": 307.08001708984375, "x1": 533.1599731445312, "y1": 472.67999267578125, "width": 52.91998291015625, "height": 165.5999755859375}, {"x0": 533.52001953125, "y0": 307.08001708984375, "x1": 586.4400024414062, "y1": 472.67999267578125, "width": 52.91998291015625, "height": 165.5999755859375}, {"x0": 587.1599731445312, "y0": 307.08001708984375, "x1": 640.0800170898438, "y1": 472.67999267578125, "width": 52.9200439453125, "height": 165.5999755859375}, {"x0": 640.7999877929688, "y0": 307.08001708984375, "x1": 694.0800170898438, "y1": 472.67999267578125, "width": 53.280029296875, "height": 165.5999755859375}, {"x0": 694.4400024414062, "y0": 307.08001708984375, "x1": 734.0399780273438, "y1": 472.67999267578125, "width": 39.5999755859375, "height": 165.5999755859375}, {"x0": 734.760009765625, "y0": 307.08001708984375, "x1": 769.6799926757812, "y1": 472.67999267578125, "width": 34.91998291015625, "height": 165.5999755859375}, {"x0": 122.4000015258789, "y0": 296.2799987792969, "x1": 265.32000732421875, "y1": 306.3600158691406, "width": 142.92000579833984, "height": 10.08001708984375}, {"x0": 266.0400085449219, "y0": 296.2799987792969, "x1": 318.9599914550781, "y1": 306.3600158691406, "width": 52.91998291015625, "height": 10.08001708984375}, {"x0": 319.67999267578125, "y0": 296.2799987792969, "x1": 372.6000061035156, "y1": 306.3600158691406, "width": 52.920013427734375, "height": 10.08001708984375}, {"x0": 373.32000732421875, "y0": 296.2799987792969, "x1": 425.8800048828125, "y1": 306.3600158691406, "width": 52.55999755859375, "height": 10.08001708984375}, {"x0": 426.6000061035156, "y0": 296.2799987792969, "x1": 479.5199890136719, "y1": 306.3600158691406, "width": 52.91998291015625, "height": 10.08001708984375}, {"x0": 480.239990234375, "y0": 296.2799987792969, "x1": 533.1599731445312, "y1": 306.3600158691406, "width": 52.91998291015625, "height": 10.08001708984375}, {"x0": 533.52001953125, "y0": 296.2799987792969, "x1": 586.4400024414062, "y1": 306.3600158691406, "width": 52.91998291015625, "height": 10.08001708984375}, {"x0": 587.1599731445312, "y0": 296.2799987792969, "x1": 640.0800170898438, "y1": 306.3600158691406, "width": 52.9200439453125, "height": 10.08001708984375}, {"x0": 640.7999877929688, "y0": 296.2799987792969, "x1": 694.0800170898438, "y1": 306.3600158691406, "width": 53.280029296875, "height": 10.08001708984375}, {"x0": 694.4400024414062, "y0": 296.2799987792969, "x1": 734.0399780273438, "y1": 306.3600158691406, "width": 39.5999755859375, "height": 10.08001708984375}, {"x0": 734.760009765625, "y0": 296.2799987792969, "x1": 769.6799926757812, "y1": 306.3600158691406, "width": 34.91998291015625, "height": 10.08001708984375}]}, {"pageInfo": {"number": 59, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 171.0, "y0": 416.52001953125, "x1": 313.20001220703125, "y1": 447.8399963378906, "width": 142.20001220703125, "height": 31.319976806640625}, {"x0": 313.9200134277344, "y0": 437.760009765625, "x1": 364.32000732421875, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 365.0400085449219, "y0": 437.760009765625, "x1": 415.0799865722656, "y1": 447.8399963378906, "width": 50.03997802734375, "height": 10.079986572265625}, {"x0": 415.79998779296875, "y0": 437.760009765625, "x1": 466.20001220703125, "y1": 447.8399963378906, "width": 50.4000244140625, "height": 10.079986572265625}, {"x0": 466.9200134277344, "y0": 437.760009765625, "x1": 517.3200073242188, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 518.0399780273438, "y0": 437.760009765625, "x1": 568.0800170898438, "y1": 447.8399963378906, "width": 50.0400390625, "height": 10.079986572265625}, {"x0": 568.7999877929688, "y0": 437.760009765625, "x1": 619.2000122070312, "y1": 447.8399963378906, "width": 50.4000244140625, "height": 10.079986572265625}, {"x0": 619.9199829101562, "y0": 437.760009765625, "x1": 670.3200073242188, "y1": 447.8399963378906, "width": 50.4000244140625, "height": 10.079986572265625}, {"x0": 671.0399780273438, "y0": 437.760009765625, "x1": 721.0800170898438, "y1": 447.8399963378906, "width": 50.0400390625, "height": 10.079986572265625}, {"x0": 313.9200134277344, "y0": 416.52001953125, "x1": 364.32000732421875, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 365.0400085449219, "y0": 416.52001953125, "x1": 415.0799865722656, "y1": 437.0400085449219, "width": 50.03997802734375, "height": 20.519989013671875}, {"x0": 415.79998779296875, "y0": 416.52001953125, "x1": 466.20001220703125, "y1": 437.0400085449219, "width": 50.4000244140625, "height": 20.519989013671875}, {"x0": 466.9200134277344, "y0": 416.52001953125, "x1": 517.3200073242188, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 518.0399780273438, "y0": 416.52001953125, "x1": 568.0800170898438, "y1": 437.0400085449219, "width": 50.0400390625, "height": 20.519989013671875}, {"x0": 568.7999877929688, "y0": 416.52001953125, "x1": 619.2000122070312, "y1": 437.0400085449219, "width": 50.4000244140625, "height": 20.519989013671875}, {"x0": 619.9199829101562, "y0": 416.52001953125, "x1": 670.3200073242188, "y1": 437.0400085449219, "width": 50.4000244140625, "height": 20.519989013671875}, {"x0": 671.0399780273438, "y0": 416.52001953125, "x1": 721.0800170898438, "y1": 437.0400085449219, "width": 50.0400390625, "height": 20.519989013671875}, {"x0": 171.0, "y0": 343.44000244140625, "x1": 313.20001220703125, "y1": 415.79998779296875, "width": 142.20001220703125, "height": 72.3599853515625}, {"x0": 313.9200134277344, "y0": 343.44000244140625, "x1": 364.32000732421875, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 365.0400085449219, "y0": 343.44000244140625, "x1": 415.0799865722656, "y1": 415.79998779296875, "width": 50.03997802734375, "height": 72.3599853515625}, {"x0": 415.79998779296875, "y0": 343.44000244140625, "x1": 466.20001220703125, "y1": 415.79998779296875, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 466.9200134277344, "y0": 343.44000244140625, "x1": 517.3200073242188, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 518.0399780273438, "y0": 343.44000244140625, "x1": 568.0800170898438, "y1": 415.79998779296875, "width": 50.0400390625, "height": 72.3599853515625}, {"x0": 568.7999877929688, "y0": 343.44000244140625, "x1": 619.2000122070312, "y1": 415.79998779296875, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 619.9199829101562, "y0": 343.44000244140625, "x1": 670.3200073242188, "y1": 415.79998779296875, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 671.0399780273438, "y0": 343.44000244140625, "x1": 721.0800170898438, "y1": 415.79998779296875, "width": 50.0400390625, "height": 72.3599853515625}, {"x0": 122.4000015258789, "y0": 294.4800109863281, "x1": 264.9599914550781, "y1": 333.0, "width": 142.55998992919922, "height": 38.519989013671875}, {"x0": 265.67999267578125, "y0": 320.3999938964844, "x1": 721.0800170898438, "y1": 333.0, "width": 455.4000244140625, "height": 12.600006103515625}, {"x0": 721.7999877929688, "y0": 320.3999938964844, "x1": 769.6799926757812, "y1": 333.0, "width": 47.8800048828125, "height": 12.600006103515625}, {"x0": 265.67999267578125, "y0": 294.4800109863281, "x1": 316.0799865722656, "y1": 320.0400085449219, "width": 50.399993896484375, "height": 25.55999755859375}, {"x0": 316.44000244140625, "y0": 294.4800109863281, "x1": 366.8399963378906, "y1": 320.0400085449219, "width": 50.399993896484375, "height": 25.55999755859375}, {"x0": 367.55999755859375, "y0": 294.4800109863281, "x1": 417.9599914550781, "y1": 320.0400085449219, "width": 50.399993896484375, "height": 25.55999755859375}, {"x0": 418.67999267578125, "y0": 294.4800109863281, "x1": 469.0799865722656, "y1": 320.0400085449219, "width": 50.399993896484375, "height": 25.55999755859375}, {"x0": 469.44000244140625, "y0": 294.4800109863281, "x1": 519.8400268554688, "y1": 320.0400085449219, "width": 50.4000244140625, "height": 25.55999755859375}, {"x0": 571.6799926757812, "y0": 294.4800109863281, "x1": 622.0800170898438, "y1": 320.0400085449219, "width": 50.4000244140625, "height": 25.55999755859375}, {"x0": 622.4400024414062, "y0": 294.4800109863281, "x1": 672.8400268554688, "y1": 320.0400085449219, "width": 50.4000244140625, "height": 25.55999755859375}, {"x0": 673.5599975585938, "y0": 294.4800109863281, "x1": 721.0800170898438, "y1": 320.0400085449219, "width": 47.52001953125, "height": 25.55999755859375}, {"x0": 721.7999877929688, "y0": 294.4800109863281, "x1": 769.6799926757812, "y1": 320.0400085449219, "width": 47.8800048828125, "height": 25.55999755859375}, {"x0": 520.5599975585938, "y0": 294.4800109863281, "x1": 570.9600219726562, "y1": 319.67999267578125, "width": 50.4000244140625, "height": 25.199981689453125}, {"x0": 122.4000015258789, "y0": 204.83999633789062, "x1": 264.9599914550781, "y1": 293.760009765625, "width": 142.55998992919922, "height": 88.92001342773438}, {"x0": 265.67999267578125, "y0": 204.83999633789062, "x1": 316.0799865722656, "y1": 293.760009765625, "width": 50.399993896484375, "height": 88.92001342773438}, {"x0": 316.44000244140625, "y0": 204.83999633789062, "x1": 366.8399963378906, "y1": 293.760009765625, "width": 50.399993896484375, "height": 88.92001342773438}, {"x0": 367.55999755859375, "y0": 204.83999633789062, "x1": 417.9599914550781, "y1": 293.760009765625, "width": 50.399993896484375, "height": 88.92001342773438}, {"x0": 418.67999267578125, "y0": 204.83999633789062, "x1": 469.0799865722656, "y1": 293.760009765625, "width": 50.399993896484375, "height": 88.92001342773438}, {"x0": 469.44000244140625, "y0": 204.83999633789062, "x1": 519.8400268554688, "y1": 293.760009765625, "width": 50.4000244140625, "height": 88.92001342773438}, {"x0": 520.5599975585938, "y0": 204.83999633789062, "x1": 570.9600219726562, "y1": 293.760009765625, "width": 50.4000244140625, "height": 88.92001342773438}, {"x0": 571.6799926757812, "y0": 204.83999633789062, "x1": 622.0800170898438, "y1": 293.760009765625, "width": 50.4000244140625, "height": 88.92001342773438}, {"x0": 622.4400024414062, "y0": 204.83999633789062, "x1": 672.8400268554688, "y1": 293.760009765625, "width": 50.4000244140625, "height": 88.92001342773438}, {"x0": 673.5599975585938, "y0": 204.83999633789062, "x1": 721.0800170898438, "y1": 293.760009765625, "width": 47.52001953125, "height": 88.92001342773438}, {"x0": 721.7999877929688, "y0": 204.83999633789062, "x1": 769.6799926757812, "y1": 293.760009765625, "width": 47.8800048828125, "height": 88.92001342773438}]}, {"pageInfo": {"number": 60, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 157.67999267578125, "y0": 416.52001953125, "x1": 302.0400085449219, "y1": 447.8399963378906, "width": 144.36001586914062, "height": 31.319976806640625}, {"x0": 302.760009765625, "y0": 437.760009765625, "x1": 356.0400085449219, "y1": 447.8399963378906, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 356.760009765625, "y0": 437.760009765625, "x1": 410.0400085449219, "y1": 447.8399963378906, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 410.760009765625, "y0": 437.760009765625, "x1": 464.0400085449219, "y1": 447.8399963378906, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 464.760009765625, "y0": 437.760009765625, "x1": 518.0399780273438, "y1": 447.8399963378906, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 518.760009765625, "y0": 437.760009765625, "x1": 572.0399780273438, "y1": 447.8399963378906, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 572.760009765625, "y0": 437.760009765625, "x1": 626.0399780273438, "y1": 447.8399963378906, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 626.760009765625, "y0": 437.760009765625, "x1": 680.0399780273438, "y1": 447.8399963378906, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 680.760009765625, "y0": 437.760009765625, "x1": 734.0399780273438, "y1": 447.8399963378906, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 302.760009765625, "y0": 416.52001953125, "x1": 356.0400085449219, "y1": 437.0400085449219, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 356.760009765625, "y0": 416.52001953125, "x1": 410.0400085449219, "y1": 437.0400085449219, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 410.760009765625, "y0": 416.52001953125, "x1": 464.0400085449219, "y1": 437.0400085449219, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 464.760009765625, "y0": 416.52001953125, "x1": 518.0399780273438, "y1": 437.0400085449219, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 518.760009765625, "y0": 416.52001953125, "x1": 572.0399780273438, "y1": 437.0400085449219, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 572.760009765625, "y0": 416.52001953125, "x1": 626.0399780273438, "y1": 437.0400085449219, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 626.760009765625, "y0": 416.52001953125, "x1": 680.0399780273438, "y1": 437.0400085449219, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 680.760009765625, "y0": 416.52001953125, "x1": 734.0399780273438, "y1": 437.0400085449219, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 157.67999267578125, "y0": 208.79998779296875, "x1": 302.0400085449219, "y1": 415.79998779296875, "width": 144.36001586914062, "height": 207.0}, {"x0": 302.760009765625, "y0": 208.79998779296875, "x1": 356.0400085449219, "y1": 415.79998779296875, "width": 53.279998779296875, "height": 207.0}, {"x0": 356.760009765625, "y0": 208.79998779296875, "x1": 410.0400085449219, "y1": 415.79998779296875, "width": 53.279998779296875, "height": 207.0}, {"x0": 410.760009765625, "y0": 208.79998779296875, "x1": 464.0400085449219, "y1": 415.79998779296875, "width": 53.279998779296875, "height": 207.0}, {"x0": 464.760009765625, "y0": 208.79998779296875, "x1": 518.0399780273438, "y1": 415.79998779296875, "width": 53.27996826171875, "height": 207.0}, {"x0": 518.760009765625, "y0": 208.79998779296875, "x1": 572.0399780273438, "y1": 415.79998779296875, "width": 53.27996826171875, "height": 207.0}, {"x0": 572.760009765625, "y0": 208.79998779296875, "x1": 626.0399780273438, "y1": 415.79998779296875, "width": 53.27996826171875, "height": 207.0}, {"x0": 626.760009765625, "y0": 208.79998779296875, "x1": 680.0399780273438, "y1": 415.79998779296875, "width": 53.27996826171875, "height": 207.0}, {"x0": 680.760009765625, "y0": 208.79998779296875, "x1": 734.0399780273438, "y1": 415.79998779296875, "width": 53.27996826171875, "height": 207.0}]}, {"pageInfo": {"number": 61, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.4000015258789, "y0": 473.3999938964844, "x1": 266.760009765625, "y1": 504.7200012207031, "width": 144.3600082397461, "height": 31.32000732421875}, {"x0": 267.4800109863281, "y0": 494.6400146484375, "x1": 320.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 321.4800109863281, "y0": 494.6400146484375, "x1": 374.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 375.4800109863281, "y0": 494.6400146484375, "x1": 428.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 429.4800109863281, "y0": 494.6400146484375, "x1": 482.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 483.4800109863281, "y0": 494.6400146484375, "x1": 536.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 537.47998046875, "y0": 494.6400146484375, "x1": 590.760009765625, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 591.47998046875, "y0": 494.6400146484375, "x1": 644.760009765625, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 645.47998046875, "y0": 494.6400146484375, "x1": 698.760009765625, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 699.47998046875, "y0": 494.6400146484375, "x1": 734.0399780273438, "y1": 504.7200012207031, "width": 34.55999755859375, "height": 10.079986572265625}, {"x0": 734.760009765625, "y0": 494.6400146484375, "x1": 769.6799926757812, "y1": 504.7200012207031, "width": 34.91998291015625, "height": 10.079986572265625}, {"x0": 267.4800109863281, "y0": 473.3999938964844, "x1": 320.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 321.4800109863281, "y0": 473.3999938964844, "x1": 374.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 375.4800109863281, "y0": 473.3999938964844, "x1": 428.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 429.4800109863281, "y0": 473.3999938964844, "x1": 482.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 483.4800109863281, "y0": 473.3999938964844, "x1": 536.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 537.47998046875, "y0": 473.3999938964844, "x1": 590.760009765625, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 591.47998046875, "y0": 473.3999938964844, "x1": 644.760009765625, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 645.47998046875, "y0": 473.3999938964844, "x1": 698.760009765625, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 699.47998046875, "y0": 473.3999938964844, "x1": 734.0399780273438, "y1": 493.9200134277344, "width": 34.55999755859375, "height": 20.52001953125}, {"x0": 734.760009765625, "y0": 473.3999938964844, "x1": 769.6799926757812, "y1": 493.9200134277344, "width": 34.91998291015625, "height": 20.52001953125}, {"x0": 122.4000015258789, "y0": 265.67999267578125, "x1": 266.760009765625, "y1": 472.67999267578125, "width": 144.3600082397461, "height": 207.0}, {"x0": 267.4800109863281, "y0": 265.67999267578125, "x1": 320.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 207.0}, {"x0": 321.4800109863281, "y0": 265.67999267578125, "x1": 374.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 207.0}, {"x0": 375.4800109863281, "y0": 265.67999267578125, "x1": 428.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 207.0}, {"x0": 429.4800109863281, "y0": 265.67999267578125, "x1": 482.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 207.0}, {"x0": 483.4800109863281, "y0": 265.67999267578125, "x1": 536.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 207.0}, {"x0": 537.47998046875, "y0": 265.67999267578125, "x1": 590.760009765625, "y1": 472.67999267578125, "width": 53.280029296875, "height": 207.0}, {"x0": 591.47998046875, "y0": 265.67999267578125, "x1": 644.760009765625, "y1": 472.67999267578125, "width": 53.280029296875, "height": 207.0}, {"x0": 645.47998046875, "y0": 265.67999267578125, "x1": 698.760009765625, "y1": 472.67999267578125, "width": 53.280029296875, "height": 207.0}, {"x0": 699.47998046875, "y0": 265.67999267578125, "x1": 734.0399780273438, "y1": 472.67999267578125, "width": 34.55999755859375, "height": 207.0}, {"x0": 734.760009765625, "y0": 265.67999267578125, "x1": 769.6799926757812, "y1": 472.67999267578125, "width": 34.91998291015625, "height": 207.0}]}, {"pageInfo": {"number": 62, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 157.67999267578125, "y0": 417.6000061035156, "x1": 302.0400085449219, "y1": 448.91998291015625, "width": 144.36001586914062, "height": 31.319976806640625}, {"x0": 302.760009765625, "y0": 438.8399963378906, "x1": 356.0400085449219, "y1": 448.91998291015625, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 356.760009765625, "y0": 438.8399963378906, "x1": 410.0400085449219, "y1": 448.91998291015625, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 410.760009765625, "y0": 438.8399963378906, "x1": 464.0400085449219, "y1": 448.91998291015625, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 464.760009765625, "y0": 438.8399963378906, "x1": 518.0399780273438, "y1": 448.91998291015625, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 518.760009765625, "y0": 438.8399963378906, "x1": 572.0399780273438, "y1": 448.91998291015625, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 572.760009765625, "y0": 438.8399963378906, "x1": 626.0399780273438, "y1": 448.91998291015625, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 626.760009765625, "y0": 438.8399963378906, "x1": 680.0399780273438, "y1": 448.91998291015625, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 680.760009765625, "y0": 438.8399963378906, "x1": 734.0399780273438, "y1": 448.91998291015625, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 302.760009765625, "y0": 417.6000061035156, "x1": 356.0400085449219, "y1": 438.1199951171875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 356.760009765625, "y0": 417.6000061035156, "x1": 410.0400085449219, "y1": 438.1199951171875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 410.760009765625, "y0": 417.6000061035156, "x1": 464.0400085449219, "y1": 438.1199951171875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 464.760009765625, "y0": 417.6000061035156, "x1": 518.0399780273438, "y1": 438.1199951171875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 518.760009765625, "y0": 417.6000061035156, "x1": 572.0399780273438, "y1": 438.1199951171875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 572.760009765625, "y0": 417.6000061035156, "x1": 626.0399780273438, "y1": 438.1199951171875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 626.760009765625, "y0": 417.6000061035156, "x1": 680.0399780273438, "y1": 438.1199951171875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 680.760009765625, "y0": 417.6000061035156, "x1": 734.0399780273438, "y1": 438.1199951171875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 157.67999267578125, "y0": 251.6400146484375, "x1": 302.0400085449219, "y1": 416.8800048828125, "width": 144.36001586914062, "height": 165.239990234375}, {"x0": 302.760009765625, "y0": 251.6400146484375, "x1": 356.0400085449219, "y1": 416.8800048828125, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 356.760009765625, "y0": 251.6400146484375, "x1": 410.0400085449219, "y1": 416.8800048828125, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 410.760009765625, "y0": 251.6400146484375, "x1": 464.0400085449219, "y1": 416.8800048828125, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 464.760009765625, "y0": 251.6400146484375, "x1": 518.0399780273438, "y1": 416.8800048828125, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 518.760009765625, "y0": 251.6400146484375, "x1": 572.0399780273438, "y1": 416.8800048828125, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 572.760009765625, "y0": 251.6400146484375, "x1": 626.0399780273438, "y1": 416.8800048828125, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 626.760009765625, "y0": 251.6400146484375, "x1": 680.0399780273438, "y1": 416.8800048828125, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 680.760009765625, "y0": 251.6400146484375, "x1": 734.0399780273438, "y1": 416.8800048828125, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 157.67999267578125, "y0": 240.48001098632812, "x1": 302.0400085449219, "y1": 250.92001342773438, "width": 144.36001586914062, "height": 10.44000244140625}, {"x0": 302.760009765625, "y0": 240.48001098632812, "x1": 356.0400085449219, "y1": 250.92001342773438, "width": 53.279998779296875, "height": 10.44000244140625}, {"x0": 356.760009765625, "y0": 240.48001098632812, "x1": 410.0400085449219, "y1": 250.92001342773438, "width": 53.279998779296875, "height": 10.44000244140625}, {"x0": 410.760009765625, "y0": 240.48001098632812, "x1": 464.0400085449219, "y1": 250.92001342773438, "width": 53.279998779296875, "height": 10.44000244140625}, {"x0": 464.760009765625, "y0": 240.48001098632812, "x1": 518.0399780273438, "y1": 250.92001342773438, "width": 53.27996826171875, "height": 10.44000244140625}, {"x0": 518.760009765625, "y0": 240.48001098632812, "x1": 572.0399780273438, "y1": 250.92001342773438, "width": 53.27996826171875, "height": 10.44000244140625}, {"x0": 572.760009765625, "y0": 240.48001098632812, "x1": 626.0399780273438, "y1": 250.92001342773438, "width": 53.27996826171875, "height": 10.44000244140625}, {"x0": 626.760009765625, "y0": 240.48001098632812, "x1": 680.0399780273438, "y1": 250.92001342773438, "width": 53.27996826171875, "height": 10.44000244140625}, {"x0": 680.760009765625, "y0": 240.48001098632812, "x1": 734.0399780273438, "y1": 250.92001342773438, "width": 53.27996826171875, "height": 10.44000244140625}]}, {"pageInfo": {"number": 63, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.4000015258789, "y0": 473.3999938964844, "x1": 266.760009765625, "y1": 504.7200012207031, "width": 144.3600082397461, "height": 31.32000732421875}, {"x0": 267.4800109863281, "y0": 494.6400146484375, "x1": 320.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 321.4800109863281, "y0": 494.6400146484375, "x1": 374.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 375.4800109863281, "y0": 494.6400146484375, "x1": 428.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 429.4800109863281, "y0": 494.6400146484375, "x1": 482.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 483.4800109863281, "y0": 494.6400146484375, "x1": 536.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 537.47998046875, "y0": 494.6400146484375, "x1": 590.760009765625, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 591.47998046875, "y0": 494.6400146484375, "x1": 644.760009765625, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 645.47998046875, "y0": 494.6400146484375, "x1": 698.760009765625, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 699.47998046875, "y0": 494.6400146484375, "x1": 734.0399780273438, "y1": 504.7200012207031, "width": 34.55999755859375, "height": 10.079986572265625}, {"x0": 734.760009765625, "y0": 494.6400146484375, "x1": 769.6799926757812, "y1": 504.7200012207031, "width": 34.91998291015625, "height": 10.079986572265625}, {"x0": 267.4800109863281, "y0": 473.3999938964844, "x1": 320.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 321.4800109863281, "y0": 473.3999938964844, "x1": 374.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 375.4800109863281, "y0": 473.3999938964844, "x1": 428.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 429.4800109863281, "y0": 473.3999938964844, "x1": 482.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 483.4800109863281, "y0": 473.3999938964844, "x1": 536.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 537.47998046875, "y0": 473.3999938964844, "x1": 590.760009765625, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 591.47998046875, "y0": 473.3999938964844, "x1": 644.760009765625, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 645.47998046875, "y0": 473.3999938964844, "x1": 698.760009765625, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 699.47998046875, "y0": 473.3999938964844, "x1": 734.0399780273438, "y1": 493.9200134277344, "width": 34.55999755859375, "height": 20.52001953125}, {"x0": 734.760009765625, "y0": 473.3999938964844, "x1": 769.6799926757812, "y1": 493.9200134277344, "width": 34.91998291015625, "height": 20.52001953125}, {"x0": 122.4000015258789, "y0": 307.08001708984375, "x1": 266.760009765625, "y1": 472.67999267578125, "width": 144.3600082397461, "height": 165.5999755859375}, {"x0": 267.4800109863281, "y0": 307.08001708984375, "x1": 320.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 165.5999755859375}, {"x0": 321.4800109863281, "y0": 307.08001708984375, "x1": 374.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 165.5999755859375}, {"x0": 375.4800109863281, "y0": 307.08001708984375, "x1": 428.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 165.5999755859375}, {"x0": 429.4800109863281, "y0": 307.08001708984375, "x1": 482.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 165.5999755859375}, {"x0": 483.4800109863281, "y0": 307.08001708984375, "x1": 536.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 165.5999755859375}, {"x0": 537.47998046875, "y0": 307.08001708984375, "x1": 590.760009765625, "y1": 472.67999267578125, "width": 53.280029296875, "height": 165.5999755859375}, {"x0": 591.47998046875, "y0": 307.08001708984375, "x1": 644.760009765625, "y1": 472.67999267578125, "width": 53.280029296875, "height": 165.5999755859375}, {"x0": 645.47998046875, "y0": 307.08001708984375, "x1": 698.760009765625, "y1": 472.67999267578125, "width": 53.280029296875, "height": 165.5999755859375}, {"x0": 699.47998046875, "y0": 307.08001708984375, "x1": 734.0399780273438, "y1": 472.67999267578125, "width": 34.55999755859375, "height": 165.5999755859375}, {"x0": 734.760009765625, "y0": 307.08001708984375, "x1": 769.6799926757812, "y1": 472.67999267578125, "width": 34.91998291015625, "height": 165.5999755859375}, {"x0": 122.4000015258789, "y0": 296.2799987792969, "x1": 266.760009765625, "y1": 306.3600158691406, "width": 144.3600082397461, "height": 10.08001708984375}, {"x0": 267.4800109863281, "y0": 296.2799987792969, "x1": 320.760009765625, "y1": 306.3600158691406, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 321.4800109863281, "y0": 296.2799987792969, "x1": 374.760009765625, "y1": 306.3600158691406, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 375.4800109863281, "y0": 296.2799987792969, "x1": 428.760009765625, "y1": 306.3600158691406, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 429.4800109863281, "y0": 296.2799987792969, "x1": 482.760009765625, "y1": 306.3600158691406, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 483.4800109863281, "y0": 296.2799987792969, "x1": 536.760009765625, "y1": 306.3600158691406, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 537.47998046875, "y0": 296.2799987792969, "x1": 590.760009765625, "y1": 306.3600158691406, "width": 53.280029296875, "height": 10.08001708984375}, {"x0": 591.47998046875, "y0": 296.2799987792969, "x1": 644.760009765625, "y1": 306.3600158691406, "width": 53.280029296875, "height": 10.08001708984375}, {"x0": 645.47998046875, "y0": 296.2799987792969, "x1": 698.760009765625, "y1": 306.3600158691406, "width": 53.280029296875, "height": 10.08001708984375}, {"x0": 699.47998046875, "y0": 296.2799987792969, "x1": 734.0399780273438, "y1": 306.3600158691406, "width": 34.55999755859375, "height": 10.08001708984375}, {"x0": 734.760009765625, "y0": 296.2799987792969, "x1": 769.6799926757812, "y1": 306.3600158691406, "width": 34.91998291015625, "height": 10.08001708984375}]}, {"pageInfo": {"number": 64, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 186.83999633789062, "y0": 407.1600036621094, "x1": 297.0, "y1": 438.47998046875, "width": 110.16000366210938, "height": 31.319976806640625}, {"x0": 297.7200012207031, "y0": 428.4000244140625, "x1": 348.1199951171875, "y1": 438.47998046875, "width": 50.399993896484375, "height": 10.0799560546875}, {"x0": 348.8399963378906, "y0": 428.4000244140625, "x1": 399.239990234375, "y1": 438.47998046875, "width": 50.399993896484375, "height": 10.0799560546875}, {"x0": 399.9599914550781, "y0": 428.4000244140625, "x1": 450.0, "y1": 438.47998046875, "width": 50.040008544921875, "height": 10.0799560546875}, {"x0": 450.7200012207031, "y0": 428.4000244140625, "x1": 501.1199951171875, "y1": 438.47998046875, "width": 50.399993896484375, "height": 10.0799560546875}, {"x0": 501.8399963378906, "y0": 428.4000244140625, "x1": 552.239990234375, "y1": 438.47998046875, "width": 50.399993896484375, "height": 10.0799560546875}, {"x0": 552.9600219726562, "y0": 428.4000244140625, "x1": 603.0, "y1": 438.47998046875, "width": 50.03997802734375, "height": 10.0799560546875}, {"x0": 603.719970703125, "y0": 428.4000244140625, "x1": 654.1199951171875, "y1": 438.47998046875, "width": 50.4000244140625, "height": 10.0799560546875}, {"x0": 654.8400268554688, "y0": 428.4000244140625, "x1": 705.239990234375, "y1": 438.47998046875, "width": 50.39996337890625, "height": 10.0799560546875}, {"x0": 297.7200012207031, "y0": 407.1600036621094, "x1": 348.1199951171875, "y1": 427.67999267578125, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 348.8399963378906, "y0": 407.1600036621094, "x1": 399.239990234375, "y1": 427.67999267578125, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 399.9599914550781, "y0": 407.1600036621094, "x1": 450.0, "y1": 427.67999267578125, "width": 50.040008544921875, "height": 20.519989013671875}, {"x0": 450.7200012207031, "y0": 407.1600036621094, "x1": 501.1199951171875, "y1": 427.67999267578125, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 501.8399963378906, "y0": 407.1600036621094, "x1": 552.239990234375, "y1": 427.67999267578125, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 552.9600219726562, "y0": 407.1600036621094, "x1": 603.0, "y1": 427.67999267578125, "width": 50.03997802734375, "height": 20.519989013671875}, {"x0": 603.719970703125, "y0": 407.1600036621094, "x1": 654.1199951171875, "y1": 427.67999267578125, "width": 50.4000244140625, "height": 20.519989013671875}, {"x0": 654.8400268554688, "y0": 407.1600036621094, "x1": 705.239990234375, "y1": 427.67999267578125, "width": 50.39996337890625, "height": 20.519989013671875}, {"x0": 186.83999633789062, "y0": 334.44000244140625, "x1": 297.0, "y1": 406.44000244140625, "width": 110.16000366210938, "height": 72.0}, {"x0": 297.7200012207031, "y0": 334.44000244140625, "x1": 348.1199951171875, "y1": 406.44000244140625, "width": 50.399993896484375, "height": 72.0}, {"x0": 348.8399963378906, "y0": 334.44000244140625, "x1": 399.239990234375, "y1": 406.44000244140625, "width": 50.399993896484375, "height": 72.0}, {"x0": 399.9599914550781, "y0": 334.44000244140625, "x1": 450.0, "y1": 406.44000244140625, "width": 50.040008544921875, "height": 72.0}, {"x0": 450.7200012207031, "y0": 334.44000244140625, "x1": 501.1199951171875, "y1": 406.44000244140625, "width": 50.399993896484375, "height": 72.0}, {"x0": 501.8399963378906, "y0": 334.44000244140625, "x1": 552.239990234375, "y1": 406.44000244140625, "width": 50.399993896484375, "height": 72.0}, {"x0": 552.9600219726562, "y0": 334.44000244140625, "x1": 603.0, "y1": 406.44000244140625, "width": 50.03997802734375, "height": 72.0}, {"x0": 603.719970703125, "y0": 334.44000244140625, "x1": 654.1199951171875, "y1": 406.44000244140625, "width": 50.4000244140625, "height": 72.0}, {"x0": 654.8400268554688, "y0": 334.44000244140625, "x1": 705.239990234375, "y1": 406.44000244140625, "width": 50.39996337890625, "height": 72.0}, {"x0": 122.4000015258789, "y0": 292.67999267578125, "x1": 232.9199981689453, "y1": 324.0, "width": 110.5199966430664, "height": 31.32000732421875}, {"x0": 233.63999938964844, "y0": 313.55999755859375, "x1": 284.0400085449219, "y1": 324.0, "width": 50.40000915527344, "height": 10.44000244140625}, {"x0": 284.3999938964844, "y0": 313.55999755859375, "x1": 334.79998779296875, "y1": 324.0, "width": 50.399993896484375, "height": 10.44000244140625}, {"x0": 335.5199890136719, "y0": 313.55999755859375, "x1": 385.9200134277344, "y1": 324.0, "width": 50.4000244140625, "height": 10.44000244140625}, {"x0": 386.6400146484375, "y0": 313.55999755859375, "x1": 437.0400085449219, "y1": 324.0, "width": 50.399993896484375, "height": 10.44000244140625}, {"x0": 437.3999938964844, "y0": 313.55999755859375, "x1": 487.79998779296875, "y1": 324.0, "width": 50.399993896484375, "height": 10.44000244140625}, {"x0": 488.5199890136719, "y0": 313.9200134277344, "x1": 538.9199829101562, "y1": 324.0, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 539.6400146484375, "y0": 313.55999755859375, "x1": 590.0399780273438, "y1": 324.0, "width": 50.39996337890625, "height": 10.44000244140625}, {"x0": 590.4000244140625, "y0": 313.55999755859375, "x1": 640.7999877929688, "y1": 324.0, "width": 50.39996337890625, "height": 10.44000244140625}, {"x0": 641.52001953125, "y0": 313.55999755859375, "x1": 691.9199829101562, "y1": 324.0, "width": 50.39996337890625, "height": 10.44000244140625}, {"x0": 692.6400146484375, "y0": 313.55999755859375, "x1": 743.0399780273438, "y1": 324.0, "width": 50.39996337890625, "height": 10.44000244140625}, {"x0": 233.63999938964844, "y0": 292.67999267578125, "x1": 284.0400085449219, "y1": 313.20001220703125, "width": 50.40000915527344, "height": 20.52001953125}, {"x0": 284.3999938964844, "y0": 292.67999267578125, "x1": 334.79998779296875, "y1": 313.20001220703125, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 335.5199890136719, "y0": 292.67999267578125, "x1": 385.9200134277344, "y1": 313.20001220703125, "width": 50.4000244140625, "height": 20.52001953125}, {"x0": 386.6400146484375, "y0": 292.67999267578125, "x1": 437.0400085449219, "y1": 313.20001220703125, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 437.3999938964844, "y0": 292.67999267578125, "x1": 487.79998779296875, "y1": 313.20001220703125, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 488.5199890136719, "y0": 292.67999267578125, "x1": 538.9199829101562, "y1": 312.8399963378906, "width": 50.399993896484375, "height": 20.160003662109375}, {"x0": 539.6400146484375, "y0": 292.67999267578125, "x1": 589.6799926757812, "y1": 313.20001220703125, "width": 50.03997802734375, "height": 20.52001953125}, {"x0": 590.760009765625, "y0": 292.67999267578125, "x1": 640.7999877929688, "y1": 313.20001220703125, "width": 50.03997802734375, "height": 20.52001953125}, {"x0": 641.52001953125, "y0": 292.67999267578125, "x1": 691.9199829101562, "y1": 313.20001220703125, "width": 50.39996337890625, "height": 20.52001953125}, {"x0": 692.6400146484375, "y0": 292.67999267578125, "x1": 743.0399780273438, "y1": 313.20001220703125, "width": 50.39996337890625, "height": 20.52001953125}, {"x0": 122.4000015258789, "y0": 219.60000610351562, "x1": 232.9199981689453, "y1": 291.9599914550781, "width": 110.5199966430664, "height": 72.3599853515625}, {"x0": 233.63999938964844, "y0": 219.60000610351562, "x1": 284.0400085449219, "y1": 291.9599914550781, "width": 50.40000915527344, "height": 72.3599853515625}, {"x0": 284.3999938964844, "y0": 219.60000610351562, "x1": 334.79998779296875, "y1": 291.9599914550781, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 335.5199890136719, "y0": 219.60000610351562, "x1": 385.9200134277344, "y1": 291.9599914550781, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 386.6400146484375, "y0": 219.60000610351562, "x1": 437.0400085449219, "y1": 291.9599914550781, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 437.3999938964844, "y0": 219.60000610351562, "x1": 487.79998779296875, "y1": 291.9599914550781, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 488.5199890136719, "y0": 219.60000610351562, "x1": 538.9199829101562, "y1": 291.9599914550781, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 539.6400146484375, "y0": 219.60000610351562, "x1": 590.0399780273438, "y1": 291.9599914550781, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 590.4000244140625, "y0": 219.60000610351562, "x1": 640.7999877929688, "y1": 291.9599914550781, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 641.52001953125, "y0": 219.60000610351562, "x1": 691.9199829101562, "y1": 291.9599914550781, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 692.6400146484375, "y0": 219.60000610351562, "x1": 743.0399780273438, "y1": 291.9599914550781, "width": 50.39996337890625, "height": 72.3599853515625}]}, {"pageInfo": {"number": 65, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 157.67999267578125, "y0": 417.6000061035156, "x1": 302.0400085449219, "y1": 448.91998291015625, "width": 144.36001586914062, "height": 31.319976806640625}, {"x0": 302.760009765625, "y0": 438.8399963378906, "x1": 356.0400085449219, "y1": 448.91998291015625, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 356.760009765625, "y0": 438.8399963378906, "x1": 410.0400085449219, "y1": 448.91998291015625, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 410.760009765625, "y0": 438.8399963378906, "x1": 464.0400085449219, "y1": 448.91998291015625, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 464.760009765625, "y0": 438.8399963378906, "x1": 518.0399780273438, "y1": 448.91998291015625, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 518.760009765625, "y0": 438.8399963378906, "x1": 572.0399780273438, "y1": 448.91998291015625, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 572.760009765625, "y0": 438.8399963378906, "x1": 626.0399780273438, "y1": 448.91998291015625, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 626.760009765625, "y0": 438.8399963378906, "x1": 680.0399780273438, "y1": 448.91998291015625, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 680.760009765625, "y0": 438.8399963378906, "x1": 734.0399780273438, "y1": 448.91998291015625, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 302.760009765625, "y0": 417.6000061035156, "x1": 356.0400085449219, "y1": 438.1199951171875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 356.760009765625, "y0": 417.6000061035156, "x1": 410.0400085449219, "y1": 438.1199951171875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 410.760009765625, "y0": 417.6000061035156, "x1": 464.0400085449219, "y1": 438.1199951171875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 464.760009765625, "y0": 417.6000061035156, "x1": 518.0399780273438, "y1": 438.1199951171875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 518.760009765625, "y0": 417.6000061035156, "x1": 572.0399780273438, "y1": 438.1199951171875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 572.760009765625, "y0": 417.6000061035156, "x1": 626.0399780273438, "y1": 438.1199951171875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 626.760009765625, "y0": 417.6000061035156, "x1": 680.0399780273438, "y1": 438.1199951171875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 680.760009765625, "y0": 417.6000061035156, "x1": 734.0399780273438, "y1": 438.1199951171875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 157.67999267578125, "y0": 251.6400146484375, "x1": 302.0400085449219, "y1": 416.8800048828125, "width": 144.36001586914062, "height": 165.239990234375}, {"x0": 302.760009765625, "y0": 251.6400146484375, "x1": 356.0400085449219, "y1": 416.8800048828125, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 356.760009765625, "y0": 251.6400146484375, "x1": 410.0400085449219, "y1": 416.8800048828125, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 410.760009765625, "y0": 251.6400146484375, "x1": 464.0400085449219, "y1": 416.8800048828125, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 464.760009765625, "y0": 251.6400146484375, "x1": 518.0399780273438, "y1": 416.8800048828125, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 518.760009765625, "y0": 251.6400146484375, "x1": 572.0399780273438, "y1": 416.8800048828125, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 572.760009765625, "y0": 251.6400146484375, "x1": 626.0399780273438, "y1": 416.8800048828125, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 626.760009765625, "y0": 251.6400146484375, "x1": 680.0399780273438, "y1": 416.8800048828125, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 680.760009765625, "y0": 251.6400146484375, "x1": 734.0399780273438, "y1": 416.8800048828125, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 157.67999267578125, "y0": 240.48001098632812, "x1": 302.0400085449219, "y1": 250.92001342773438, "width": 144.36001586914062, "height": 10.44000244140625}, {"x0": 302.760009765625, "y0": 240.48001098632812, "x1": 356.0400085449219, "y1": 250.92001342773438, "width": 53.279998779296875, "height": 10.44000244140625}, {"x0": 356.760009765625, "y0": 240.48001098632812, "x1": 410.0400085449219, "y1": 250.92001342773438, "width": 53.279998779296875, "height": 10.44000244140625}, {"x0": 410.760009765625, "y0": 240.48001098632812, "x1": 464.0400085449219, "y1": 250.92001342773438, "width": 53.279998779296875, "height": 10.44000244140625}, {"x0": 464.760009765625, "y0": 240.48001098632812, "x1": 518.0399780273438, "y1": 250.92001342773438, "width": 53.27996826171875, "height": 10.44000244140625}, {"x0": 518.760009765625, "y0": 240.48001098632812, "x1": 572.0399780273438, "y1": 250.92001342773438, "width": 53.27996826171875, "height": 10.44000244140625}, {"x0": 572.760009765625, "y0": 240.48001098632812, "x1": 626.0399780273438, "y1": 250.92001342773438, "width": 53.27996826171875, "height": 10.44000244140625}, {"x0": 626.760009765625, "y0": 240.48001098632812, "x1": 680.0399780273438, "y1": 250.92001342773438, "width": 53.27996826171875, "height": 10.44000244140625}, {"x0": 680.760009765625, "y0": 240.48001098632812, "x1": 734.0399780273438, "y1": 250.92001342773438, "width": 53.27996826171875, "height": 10.44000244140625}]}, {"pageInfo": {"number": 66, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.4000015258789, "y0": 473.3999938964844, "x1": 266.760009765625, "y1": 504.7200012207031, "width": 144.3600082397461, "height": 31.32000732421875}, {"x0": 267.4800109863281, "y0": 494.6400146484375, "x1": 320.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 321.4800109863281, "y0": 494.6400146484375, "x1": 374.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 375.4800109863281, "y0": 494.6400146484375, "x1": 428.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 429.4800109863281, "y0": 494.6400146484375, "x1": 482.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 483.4800109863281, "y0": 494.6400146484375, "x1": 536.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 537.47998046875, "y0": 494.6400146484375, "x1": 590.760009765625, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 591.47998046875, "y0": 494.6400146484375, "x1": 644.760009765625, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 645.47998046875, "y0": 494.6400146484375, "x1": 698.760009765625, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 699.47998046875, "y0": 494.6400146484375, "x1": 734.0399780273438, "y1": 504.7200012207031, "width": 34.55999755859375, "height": 10.079986572265625}, {"x0": 734.760009765625, "y0": 494.6400146484375, "x1": 769.6799926757812, "y1": 504.7200012207031, "width": 34.91998291015625, "height": 10.079986572265625}, {"x0": 267.4800109863281, "y0": 473.3999938964844, "x1": 320.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 321.4800109863281, "y0": 473.3999938964844, "x1": 374.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 375.4800109863281, "y0": 473.3999938964844, "x1": 428.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 429.4800109863281, "y0": 473.3999938964844, "x1": 482.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 483.4800109863281, "y0": 473.3999938964844, "x1": 536.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 537.47998046875, "y0": 473.3999938964844, "x1": 590.760009765625, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 591.47998046875, "y0": 473.3999938964844, "x1": 644.760009765625, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 645.47998046875, "y0": 473.3999938964844, "x1": 698.760009765625, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 699.47998046875, "y0": 473.3999938964844, "x1": 734.0399780273438, "y1": 493.9200134277344, "width": 34.55999755859375, "height": 20.52001953125}, {"x0": 734.760009765625, "y0": 473.3999938964844, "x1": 769.6799926757812, "y1": 493.9200134277344, "width": 34.91998291015625, "height": 20.52001953125}, {"x0": 122.4000015258789, "y0": 307.08001708984375, "x1": 266.760009765625, "y1": 472.67999267578125, "width": 144.3600082397461, "height": 165.5999755859375}, {"x0": 267.4800109863281, "y0": 307.08001708984375, "x1": 320.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 165.5999755859375}, {"x0": 321.4800109863281, "y0": 307.08001708984375, "x1": 374.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 165.5999755859375}, {"x0": 375.4800109863281, "y0": 307.08001708984375, "x1": 428.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 165.5999755859375}, {"x0": 429.4800109863281, "y0": 307.08001708984375, "x1": 482.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 165.5999755859375}, {"x0": 483.4800109863281, "y0": 307.08001708984375, "x1": 536.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 165.5999755859375}, {"x0": 537.47998046875, "y0": 307.08001708984375, "x1": 590.760009765625, "y1": 472.67999267578125, "width": 53.280029296875, "height": 165.5999755859375}, {"x0": 591.47998046875, "y0": 307.08001708984375, "x1": 644.760009765625, "y1": 472.67999267578125, "width": 53.280029296875, "height": 165.5999755859375}, {"x0": 645.47998046875, "y0": 307.08001708984375, "x1": 698.760009765625, "y1": 472.67999267578125, "width": 53.280029296875, "height": 165.5999755859375}, {"x0": 699.47998046875, "y0": 307.08001708984375, "x1": 734.0399780273438, "y1": 472.67999267578125, "width": 34.55999755859375, "height": 165.5999755859375}, {"x0": 734.760009765625, "y0": 307.08001708984375, "x1": 769.6799926757812, "y1": 472.67999267578125, "width": 34.91998291015625, "height": 165.5999755859375}, {"x0": 122.4000015258789, "y0": 296.2799987792969, "x1": 266.760009765625, "y1": 306.3600158691406, "width": 144.3600082397461, "height": 10.08001708984375}, {"x0": 267.4800109863281, "y0": 296.2799987792969, "x1": 320.760009765625, "y1": 306.3600158691406, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 321.4800109863281, "y0": 296.2799987792969, "x1": 374.760009765625, "y1": 306.3600158691406, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 375.4800109863281, "y0": 296.2799987792969, "x1": 428.760009765625, "y1": 306.3600158691406, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 429.4800109863281, "y0": 296.2799987792969, "x1": 482.760009765625, "y1": 306.3600158691406, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 483.4800109863281, "y0": 296.2799987792969, "x1": 536.760009765625, "y1": 306.3600158691406, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 537.47998046875, "y0": 296.2799987792969, "x1": 590.760009765625, "y1": 306.3600158691406, "width": 53.280029296875, "height": 10.08001708984375}, {"x0": 591.47998046875, "y0": 296.2799987792969, "x1": 644.760009765625, "y1": 306.3600158691406, "width": 53.280029296875, "height": 10.08001708984375}, {"x0": 645.47998046875, "y0": 296.2799987792969, "x1": 698.760009765625, "y1": 306.3600158691406, "width": 53.280029296875, "height": 10.08001708984375}, {"x0": 699.47998046875, "y0": 296.2799987792969, "x1": 734.0399780273438, "y1": 306.3600158691406, "width": 34.55999755859375, "height": 10.08001708984375}, {"x0": 734.760009765625, "y0": 296.2799987792969, "x1": 769.6799926757812, "y1": 306.3600158691406, "width": 34.91998291015625, "height": 10.08001708984375}]}, {"pageInfo": {"number": 67, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 186.83999633789062, "y0": 416.52001953125, "x1": 297.0, "y1": 447.8399963378906, "width": 110.16000366210938, "height": 31.319976806640625}, {"x0": 297.7200012207031, "y0": 437.760009765625, "x1": 348.1199951171875, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 348.8399963378906, "y0": 437.760009765625, "x1": 399.239990234375, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 399.9599914550781, "y0": 437.760009765625, "x1": 450.0, "y1": 447.8399963378906, "width": 50.040008544921875, "height": 10.079986572265625}, {"x0": 450.7200012207031, "y0": 437.760009765625, "x1": 501.1199951171875, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 501.8399963378906, "y0": 437.760009765625, "x1": 552.239990234375, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 552.9600219726562, "y0": 437.760009765625, "x1": 603.0, "y1": 447.8399963378906, "width": 50.03997802734375, "height": 10.079986572265625}, {"x0": 603.719970703125, "y0": 437.760009765625, "x1": 654.1199951171875, "y1": 447.8399963378906, "width": 50.4000244140625, "height": 10.079986572265625}, {"x0": 654.8400268554688, "y0": 437.760009765625, "x1": 705.239990234375, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 10.079986572265625}, {"x0": 297.7200012207031, "y0": 416.52001953125, "x1": 348.1199951171875, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 348.8399963378906, "y0": 416.52001953125, "x1": 399.239990234375, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 399.9599914550781, "y0": 416.52001953125, "x1": 450.0, "y1": 437.0400085449219, "width": 50.040008544921875, "height": 20.519989013671875}, {"x0": 450.7200012207031, "y0": 416.52001953125, "x1": 501.1199951171875, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 501.8399963378906, "y0": 416.52001953125, "x1": 552.239990234375, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 552.9600219726562, "y0": 416.52001953125, "x1": 603.0, "y1": 437.0400085449219, "width": 50.03997802734375, "height": 20.519989013671875}, {"x0": 603.719970703125, "y0": 416.52001953125, "x1": 654.1199951171875, "y1": 437.0400085449219, "width": 50.4000244140625, "height": 20.519989013671875}, {"x0": 654.8400268554688, "y0": 416.52001953125, "x1": 705.239990234375, "y1": 437.0400085449219, "width": 50.39996337890625, "height": 20.519989013671875}, {"x0": 186.83999633789062, "y0": 343.44000244140625, "x1": 297.0, "y1": 415.79998779296875, "width": 110.16000366210938, "height": 72.3599853515625}, {"x0": 297.7200012207031, "y0": 343.44000244140625, "x1": 348.1199951171875, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 348.8399963378906, "y0": 343.44000244140625, "x1": 399.239990234375, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 399.9599914550781, "y0": 343.44000244140625, "x1": 450.0, "y1": 415.79998779296875, "width": 50.040008544921875, "height": 72.3599853515625}, {"x0": 450.7200012207031, "y0": 343.44000244140625, "x1": 501.1199951171875, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 501.8399963378906, "y0": 343.44000244140625, "x1": 552.239990234375, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 552.9600219726562, "y0": 343.44000244140625, "x1": 603.0, "y1": 415.79998779296875, "width": 50.03997802734375, "height": 72.3599853515625}, {"x0": 603.719970703125, "y0": 343.44000244140625, "x1": 654.1199951171875, "y1": 415.79998779296875, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 654.8400268554688, "y0": 343.44000244140625, "x1": 705.239990234375, "y1": 415.79998779296875, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 135.72000122070312, "y0": 301.67999267578125, "x1": 246.24000549316406, "y1": 333.0, "width": 110.52000427246094, "height": 31.32000732421875}, {"x0": 246.9600067138672, "y0": 322.9200134277344, "x1": 297.0, "y1": 333.0, "width": 50.03999328613281, "height": 10.079986572265625}, {"x0": 297.7200012207031, "y0": 322.9200134277344, "x1": 348.1199951171875, "y1": 333.0, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 348.8399963378906, "y0": 322.9200134277344, "x1": 399.239990234375, "y1": 333.0, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 399.9599914550781, "y0": 322.9200134277344, "x1": 450.0, "y1": 333.0, "width": 50.040008544921875, "height": 10.079986572265625}, {"x0": 450.7200012207031, "y0": 322.9200134277344, "x1": 501.1199951171875, "y1": 333.0, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 501.8399963378906, "y0": 322.9200134277344, "x1": 552.239990234375, "y1": 333.0, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 552.9600219726562, "y0": 322.9200134277344, "x1": 603.0, "y1": 333.0, "width": 50.03997802734375, "height": 10.079986572265625}, {"x0": 603.719970703125, "y0": 322.9200134277344, "x1": 654.1199951171875, "y1": 333.0, "width": 50.4000244140625, "height": 10.079986572265625}, {"x0": 654.8400268554688, "y0": 322.9200134277344, "x1": 705.239990234375, "y1": 333.0, "width": 50.39996337890625, "height": 10.079986572265625}, {"x0": 705.9600219726562, "y0": 322.9200134277344, "x1": 756.0, "y1": 333.0, "width": 50.03997802734375, "height": 10.079986572265625}, {"x0": 246.9600067138672, "y0": 301.67999267578125, "x1": 297.0, "y1": 322.20001220703125, "width": 50.03999328613281, "height": 20.52001953125}, {"x0": 297.7200012207031, "y0": 301.67999267578125, "x1": 348.1199951171875, "y1": 322.20001220703125, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 348.8399963378906, "y0": 301.67999267578125, "x1": 399.239990234375, "y1": 322.20001220703125, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 399.9599914550781, "y0": 301.67999267578125, "x1": 450.0, "y1": 322.20001220703125, "width": 50.040008544921875, "height": 20.52001953125}, {"x0": 450.7200012207031, "y0": 301.67999267578125, "x1": 501.1199951171875, "y1": 322.20001220703125, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 501.8399963378906, "y0": 301.67999267578125, "x1": 552.239990234375, "y1": 322.20001220703125, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 552.9600219726562, "y0": 301.67999267578125, "x1": 603.0, "y1": 322.20001220703125, "width": 50.03997802734375, "height": 20.52001953125}, {"x0": 603.719970703125, "y0": 301.67999267578125, "x1": 654.1199951171875, "y1": 322.20001220703125, "width": 50.4000244140625, "height": 20.52001953125}, {"x0": 654.8400268554688, "y0": 301.67999267578125, "x1": 705.239990234375, "y1": 322.20001220703125, "width": 50.39996337890625, "height": 20.52001953125}, {"x0": 705.9600219726562, "y0": 301.67999267578125, "x1": 756.0, "y1": 322.20001220703125, "width": 50.03997802734375, "height": 20.52001953125}, {"x0": 135.72000122070312, "y0": 228.60000610351562, "x1": 246.24000549316406, "y1": 300.9599914550781, "width": 110.52000427246094, "height": 72.3599853515625}, {"x0": 246.9600067138672, "y0": 228.60000610351562, "x1": 297.0, "y1": 300.9599914550781, "width": 50.03999328613281, "height": 72.3599853515625}, {"x0": 297.7200012207031, "y0": 228.60000610351562, "x1": 348.1199951171875, "y1": 300.9599914550781, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 348.8399963378906, "y0": 228.60000610351562, "x1": 399.239990234375, "y1": 300.9599914550781, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 399.9599914550781, "y0": 228.60000610351562, "x1": 450.0, "y1": 300.9599914550781, "width": 50.040008544921875, "height": 72.3599853515625}, {"x0": 450.7200012207031, "y0": 228.60000610351562, "x1": 501.1199951171875, "y1": 300.9599914550781, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 501.8399963378906, "y0": 228.60000610351562, "x1": 552.239990234375, "y1": 300.9599914550781, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 552.9600219726562, "y0": 228.60000610351562, "x1": 603.0, "y1": 300.9599914550781, "width": 50.03997802734375, "height": 72.3599853515625}, {"x0": 603.719970703125, "y0": 228.60000610351562, "x1": 654.1199951171875, "y1": 300.9599914550781, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 654.8400268554688, "y0": 228.60000610351562, "x1": 705.239990234375, "y1": 300.9599914550781, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 705.9600219726562, "y0": 228.60000610351562, "x1": 756.0, "y1": 300.9599914550781, "width": 50.03997802734375, "height": 72.3599853515625}]}, {"pageInfo": {"number": 68, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 157.67999267578125, "y0": 416.52001953125, "x1": 302.0400085449219, "y1": 447.8399963378906, "width": 144.36001586914062, "height": 31.319976806640625}, {"x0": 302.760009765625, "y0": 437.760009765625, "x1": 356.0400085449219, "y1": 447.8399963378906, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 356.760009765625, "y0": 437.760009765625, "x1": 410.0400085449219, "y1": 447.8399963378906, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 410.760009765625, "y0": 437.760009765625, "x1": 464.0400085449219, "y1": 447.8399963378906, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 464.760009765625, "y0": 437.760009765625, "x1": 518.0399780273438, "y1": 447.8399963378906, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 518.760009765625, "y0": 437.760009765625, "x1": 572.0399780273438, "y1": 447.8399963378906, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 572.760009765625, "y0": 437.760009765625, "x1": 626.0399780273438, "y1": 447.8399963378906, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 626.760009765625, "y0": 437.760009765625, "x1": 680.0399780273438, "y1": 447.8399963378906, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 680.760009765625, "y0": 437.760009765625, "x1": 734.0399780273438, "y1": 447.8399963378906, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 302.760009765625, "y0": 416.52001953125, "x1": 356.0400085449219, "y1": 437.0400085449219, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 356.760009765625, "y0": 416.52001953125, "x1": 410.0400085449219, "y1": 437.0400085449219, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 410.760009765625, "y0": 416.52001953125, "x1": 464.0400085449219, "y1": 437.0400085449219, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 464.760009765625, "y0": 416.52001953125, "x1": 518.0399780273438, "y1": 437.0400085449219, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 518.760009765625, "y0": 416.52001953125, "x1": 572.0399780273438, "y1": 437.0400085449219, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 572.760009765625, "y0": 416.52001953125, "x1": 626.0399780273438, "y1": 437.0400085449219, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 626.760009765625, "y0": 416.52001953125, "x1": 680.0399780273438, "y1": 437.0400085449219, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 680.760009765625, "y0": 416.52001953125, "x1": 734.0399780273438, "y1": 437.0400085449219, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 157.67999267578125, "y0": 208.79998779296875, "x1": 302.0400085449219, "y1": 415.79998779296875, "width": 144.36001586914062, "height": 207.0}, {"x0": 302.760009765625, "y0": 208.79998779296875, "x1": 356.0400085449219, "y1": 415.79998779296875, "width": 53.279998779296875, "height": 207.0}, {"x0": 356.760009765625, "y0": 208.79998779296875, "x1": 410.0400085449219, "y1": 415.79998779296875, "width": 53.279998779296875, "height": 207.0}, {"x0": 410.760009765625, "y0": 208.79998779296875, "x1": 464.0400085449219, "y1": 415.79998779296875, "width": 53.279998779296875, "height": 207.0}, {"x0": 464.760009765625, "y0": 208.79998779296875, "x1": 518.0399780273438, "y1": 415.79998779296875, "width": 53.27996826171875, "height": 207.0}, {"x0": 518.760009765625, "y0": 208.79998779296875, "x1": 572.0399780273438, "y1": 415.79998779296875, "width": 53.27996826171875, "height": 207.0}, {"x0": 572.760009765625, "y0": 208.79998779296875, "x1": 626.0399780273438, "y1": 415.79998779296875, "width": 53.27996826171875, "height": 207.0}, {"x0": 626.760009765625, "y0": 208.79998779296875, "x1": 680.0399780273438, "y1": 415.79998779296875, "width": 53.27996826171875, "height": 207.0}, {"x0": 680.760009765625, "y0": 208.79998779296875, "x1": 734.0399780273438, "y1": 415.79998779296875, "width": 53.27996826171875, "height": 207.0}]}, {"pageInfo": {"number": 69, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.4000015258789, "y0": 473.3999938964844, "x1": 266.760009765625, "y1": 504.7200012207031, "width": 144.3600082397461, "height": 31.32000732421875}, {"x0": 267.4800109863281, "y0": 494.6400146484375, "x1": 320.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 321.4800109863281, "y0": 494.6400146484375, "x1": 374.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 375.4800109863281, "y0": 494.6400146484375, "x1": 428.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 429.4800109863281, "y0": 494.6400146484375, "x1": 482.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 483.4800109863281, "y0": 494.6400146484375, "x1": 536.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 537.47998046875, "y0": 494.6400146484375, "x1": 590.760009765625, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 591.47998046875, "y0": 494.6400146484375, "x1": 644.760009765625, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 645.47998046875, "y0": 494.6400146484375, "x1": 698.760009765625, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 699.47998046875, "y0": 494.6400146484375, "x1": 734.0399780273438, "y1": 504.7200012207031, "width": 34.55999755859375, "height": 10.079986572265625}, {"x0": 734.760009765625, "y0": 494.6400146484375, "x1": 769.6799926757812, "y1": 504.7200012207031, "width": 34.91998291015625, "height": 10.079986572265625}, {"x0": 267.4800109863281, "y0": 473.3999938964844, "x1": 320.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 321.4800109863281, "y0": 473.3999938964844, "x1": 374.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 375.4800109863281, "y0": 473.3999938964844, "x1": 428.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 429.4800109863281, "y0": 473.3999938964844, "x1": 482.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 483.4800109863281, "y0": 473.3999938964844, "x1": 536.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 537.47998046875, "y0": 473.3999938964844, "x1": 590.760009765625, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 591.47998046875, "y0": 473.3999938964844, "x1": 644.760009765625, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 645.47998046875, "y0": 473.3999938964844, "x1": 698.760009765625, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 699.47998046875, "y0": 473.3999938964844, "x1": 734.0399780273438, "y1": 493.9200134277344, "width": 34.55999755859375, "height": 20.52001953125}, {"x0": 734.760009765625, "y0": 473.3999938964844, "x1": 769.6799926757812, "y1": 493.9200134277344, "width": 34.91998291015625, "height": 20.52001953125}, {"x0": 122.4000015258789, "y0": 265.67999267578125, "x1": 266.760009765625, "y1": 472.67999267578125, "width": 144.3600082397461, "height": 207.0}, {"x0": 267.4800109863281, "y0": 265.67999267578125, "x1": 320.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 207.0}, {"x0": 321.4800109863281, "y0": 265.67999267578125, "x1": 374.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 207.0}, {"x0": 375.4800109863281, "y0": 265.67999267578125, "x1": 428.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 207.0}, {"x0": 429.4800109863281, "y0": 265.67999267578125, "x1": 482.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 207.0}, {"x0": 483.4800109863281, "y0": 265.67999267578125, "x1": 536.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 207.0}, {"x0": 537.47998046875, "y0": 265.67999267578125, "x1": 590.760009765625, "y1": 472.67999267578125, "width": 53.280029296875, "height": 207.0}, {"x0": 591.47998046875, "y0": 265.67999267578125, "x1": 644.760009765625, "y1": 472.67999267578125, "width": 53.280029296875, "height": 207.0}, {"x0": 645.47998046875, "y0": 265.67999267578125, "x1": 698.760009765625, "y1": 472.67999267578125, "width": 53.280029296875, "height": 207.0}, {"x0": 699.47998046875, "y0": 265.67999267578125, "x1": 734.0399780273438, "y1": 472.67999267578125, "width": 34.55999755859375, "height": 207.0}, {"x0": 734.760009765625, "y0": 265.67999267578125, "x1": 769.6799926757812, "y1": 472.67999267578125, "width": 34.91998291015625, "height": 207.0}]}, {"pageInfo": {"number": 70, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.4000015258789, "y0": 431.2799987792969, "x1": 257.0400085449219, "y1": 462.6000061035156, "width": 134.64000701904297, "height": 31.32000732421875}, {"x0": 257.3999938964844, "y0": 452.52001953125, "x1": 307.0799865722656, "y1": 462.6000061035156, "width": 49.67999267578125, "height": 10.079986572265625}, {"x0": 307.79998779296875, "y0": 452.52001953125, "x1": 357.4800109863281, "y1": 462.6000061035156, "width": 49.680023193359375, "height": 10.079986572265625}, {"x0": 358.20001220703125, "y0": 452.52001953125, "x1": 407.5199890136719, "y1": 462.6000061035156, "width": 49.319976806640625, "height": 10.079986572265625}, {"x0": 408.239990234375, "y0": 452.52001953125, "x1": 457.9200134277344, "y1": 462.6000061035156, "width": 49.680023193359375, "height": 10.079986572265625}, {"x0": 458.6400146484375, "y0": 452.52001953125, "x1": 508.32000732421875, "y1": 462.6000061035156, "width": 49.67999267578125, "height": 10.079986572265625}, {"x0": 508.67999267578125, "y0": 452.52001953125, "x1": 558.3599853515625, "y1": 462.6000061035156, "width": 49.67999267578125, "height": 10.079986572265625}, {"x0": 559.0800170898438, "y0": 452.52001953125, "x1": 608.760009765625, "y1": 462.6000061035156, "width": 49.67999267578125, "height": 10.079986572265625}, {"x0": 609.47998046875, "y0": 452.52001953125, "x1": 658.7999877929688, "y1": 462.6000061035156, "width": 49.32000732421875, "height": 10.079986572265625}, {"x0": 659.52001953125, "y0": 431.2799987792969, "x1": 709.2000122070312, "y1": 462.6000061035156, "width": 49.67999267578125, "height": 31.32000732421875}, {"x0": 709.9199829101562, "y0": 431.2799987792969, "x1": 769.6799926757812, "y1": 462.6000061035156, "width": 59.760009765625, "height": 31.32000732421875}, {"x0": 257.3999938964844, "y0": 431.2799987792969, "x1": 307.0799865722656, "y1": 451.79998779296875, "width": 49.67999267578125, "height": 20.519989013671875}, {"x0": 307.79998779296875, "y0": 431.2799987792969, "x1": 357.4800109863281, "y1": 451.79998779296875, "width": 49.680023193359375, "height": 20.519989013671875}, {"x0": 358.20001220703125, "y0": 431.2799987792969, "x1": 407.5199890136719, "y1": 451.79998779296875, "width": 49.319976806640625, "height": 20.519989013671875}, {"x0": 408.239990234375, "y0": 431.2799987792969, "x1": 457.9200134277344, "y1": 451.79998779296875, "width": 49.680023193359375, "height": 20.519989013671875}, {"x0": 458.6400146484375, "y0": 431.2799987792969, "x1": 508.32000732421875, "y1": 451.79998779296875, "width": 49.67999267578125, "height": 20.519989013671875}, {"x0": 508.67999267578125, "y0": 431.2799987792969, "x1": 558.3599853515625, "y1": 451.79998779296875, "width": 49.67999267578125, "height": 20.519989013671875}, {"x0": 559.0800170898438, "y0": 431.2799987792969, "x1": 608.760009765625, "y1": 451.79998779296875, "width": 49.67999267578125, "height": 20.519989013671875}, {"x0": 609.47998046875, "y0": 431.2799987792969, "x1": 658.7999877929688, "y1": 451.79998779296875, "width": 49.32000732421875, "height": 20.519989013671875}, {"x0": 122.4000015258789, "y0": 265.32000732421875, "x1": 257.0400085449219, "y1": 430.55999755859375, "width": 134.64000701904297, "height": 165.239990234375}, {"x0": 257.3999938964844, "y0": 265.32000732421875, "x1": 307.0799865722656, "y1": 430.55999755859375, "width": 49.67999267578125, "height": 165.239990234375}, {"x0": 307.79998779296875, "y0": 265.32000732421875, "x1": 357.4800109863281, "y1": 430.55999755859375, "width": 49.680023193359375, "height": 165.239990234375}, {"x0": 358.20001220703125, "y0": 265.32000732421875, "x1": 407.5199890136719, "y1": 430.55999755859375, "width": 49.319976806640625, "height": 165.239990234375}, {"x0": 408.239990234375, "y0": 265.32000732421875, "x1": 457.9200134277344, "y1": 430.55999755859375, "width": 49.680023193359375, "height": 165.239990234375}, {"x0": 458.6400146484375, "y0": 265.32000732421875, "x1": 508.32000732421875, "y1": 430.55999755859375, "width": 49.67999267578125, "height": 165.239990234375}, {"x0": 508.67999267578125, "y0": 265.32000732421875, "x1": 558.3599853515625, "y1": 430.55999755859375, "width": 49.67999267578125, "height": 165.239990234375}, {"x0": 559.0800170898438, "y0": 265.32000732421875, "x1": 608.760009765625, "y1": 430.55999755859375, "width": 49.67999267578125, "height": 165.239990234375}, {"x0": 609.47998046875, "y0": 265.32000732421875, "x1": 658.7999877929688, "y1": 430.55999755859375, "width": 49.32000732421875, "height": 165.239990234375}, {"x0": 659.52001953125, "y0": 265.32000732421875, "x1": 709.2000122070312, "y1": 430.55999755859375, "width": 49.67999267578125, "height": 165.239990234375}, {"x0": 709.9199829101562, "y0": 265.32000732421875, "x1": 769.6799926757812, "y1": 430.55999755859375, "width": 59.760009765625, "height": 165.239990234375}, {"x0": 122.4000015258789, "y0": 254.51998901367188, "x1": 257.0400085449219, "y1": 264.6000061035156, "width": 134.64000701904297, "height": 10.08001708984375}, {"x0": 257.3999938964844, "y0": 254.51998901367188, "x1": 307.0799865722656, "y1": 264.6000061035156, "width": 49.67999267578125, "height": 10.08001708984375}, {"x0": 307.79998779296875, "y0": 254.51998901367188, "x1": 357.4800109863281, "y1": 264.6000061035156, "width": 49.680023193359375, "height": 10.08001708984375}, {"x0": 358.20001220703125, "y0": 254.51998901367188, "x1": 407.5199890136719, "y1": 264.6000061035156, "width": 49.319976806640625, "height": 10.08001708984375}, {"x0": 408.239990234375, "y0": 254.51998901367188, "x1": 457.9200134277344, "y1": 264.6000061035156, "width": 49.680023193359375, "height": 10.08001708984375}, {"x0": 458.6400146484375, "y0": 254.51998901367188, "x1": 508.32000732421875, "y1": 264.6000061035156, "width": 49.67999267578125, "height": 10.08001708984375}, {"x0": 508.67999267578125, "y0": 254.51998901367188, "x1": 558.3599853515625, "y1": 264.6000061035156, "width": 49.67999267578125, "height": 10.08001708984375}, {"x0": 559.0800170898438, "y0": 254.51998901367188, "x1": 608.760009765625, "y1": 264.6000061035156, "width": 49.67999267578125, "height": 10.08001708984375}, {"x0": 609.47998046875, "y0": 254.51998901367188, "x1": 658.7999877929688, "y1": 264.6000061035156, "width": 49.32000732421875, "height": 10.08001708984375}, {"x0": 659.52001953125, "y0": 254.51998901367188, "x1": 709.2000122070312, "y1": 264.6000061035156, "width": 49.67999267578125, "height": 10.08001708984375}, {"x0": 709.9199829101562, "y0": 254.51998901367188, "x1": 769.6799926757812, "y1": 264.6000061035156, "width": 59.760009765625, "height": 10.08001708984375}]}, {"pageInfo": {"number": 71, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.4000015258789, "y0": 416.52001953125, "x1": 232.9199981689453, "y1": 447.8399963378906, "width": 110.5199966430664, "height": 31.319976806640625}, {"x0": 233.63999938964844, "y0": 437.760009765625, "x1": 284.0400085449219, "y1": 447.8399963378906, "width": 50.40000915527344, "height": 10.079986572265625}, {"x0": 284.3999938964844, "y0": 437.760009765625, "x1": 334.79998779296875, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 335.5199890136719, "y0": 437.760009765625, "x1": 385.9200134277344, "y1": 447.8399963378906, "width": 50.4000244140625, "height": 10.079986572265625}, {"x0": 386.6400146484375, "y0": 437.760009765625, "x1": 437.0400085449219, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 437.3999938964844, "y0": 437.760009765625, "x1": 487.79998779296875, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 488.5199890136719, "y0": 437.760009765625, "x1": 538.9199829101562, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 539.6400146484375, "y0": 437.760009765625, "x1": 590.0399780273438, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 10.079986572265625}, {"x0": 590.4000244140625, "y0": 437.760009765625, "x1": 640.7999877929688, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 10.079986572265625}, {"x0": 641.52001953125, "y0": 416.52001953125, "x1": 691.9199829101562, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 31.319976806640625}, {"x0": 692.6400146484375, "y0": 416.52001953125, "x1": 743.0399780273438, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 31.319976806640625}, {"x0": 233.63999938964844, "y0": 416.52001953125, "x1": 284.0400085449219, "y1": 437.0400085449219, "width": 50.40000915527344, "height": 20.519989013671875}, {"x0": 284.3999938964844, "y0": 416.52001953125, "x1": 334.79998779296875, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 335.5199890136719, "y0": 416.52001953125, "x1": 385.9200134277344, "y1": 437.0400085449219, "width": 50.4000244140625, "height": 20.519989013671875}, {"x0": 386.6400146484375, "y0": 416.52001953125, "x1": 437.0400085449219, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 437.3999938964844, "y0": 416.52001953125, "x1": 487.79998779296875, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 488.5199890136719, "y0": 416.52001953125, "x1": 538.9199829101562, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 539.6400146484375, "y0": 416.52001953125, "x1": 590.0399780273438, "y1": 437.0400085449219, "width": 50.39996337890625, "height": 20.519989013671875}, {"x0": 590.4000244140625, "y0": 416.52001953125, "x1": 640.7999877929688, "y1": 437.0400085449219, "width": 50.39996337890625, "height": 20.519989013671875}, {"x0": 122.4000015258789, "y0": 343.44000244140625, "x1": 232.9199981689453, "y1": 415.79998779296875, "width": 110.5199966430664, "height": 72.3599853515625}, {"x0": 233.63999938964844, "y0": 343.44000244140625, "x1": 284.0400085449219, "y1": 415.79998779296875, "width": 50.40000915527344, "height": 72.3599853515625}, {"x0": 284.3999938964844, "y0": 343.44000244140625, "x1": 334.79998779296875, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 335.5199890136719, "y0": 343.44000244140625, "x1": 385.9200134277344, "y1": 415.79998779296875, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 386.6400146484375, "y0": 343.44000244140625, "x1": 437.0400085449219, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 437.3999938964844, "y0": 343.44000244140625, "x1": 487.79998779296875, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 488.5199890136719, "y0": 343.44000244140625, "x1": 538.9199829101562, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 539.6400146484375, "y0": 343.44000244140625, "x1": 590.0399780273438, "y1": 415.79998779296875, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 590.4000244140625, "y0": 343.44000244140625, "x1": 640.7999877929688, "y1": 415.79998779296875, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 641.52001953125, "y0": 343.44000244140625, "x1": 691.9199829101562, "y1": 415.79998779296875, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 692.6400146484375, "y0": 343.44000244140625, "x1": 743.0399780273438, "y1": 415.79998779296875, "width": 50.39996337890625, "height": 72.3599853515625}]}, {"pageInfo": {"number": 72, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.4000015258789, "y0": 431.2799987792969, "x1": 257.0400085449219, "y1": 462.6000061035156, "width": 134.64000701904297, "height": 31.32000732421875}, {"x0": 257.3999938964844, "y0": 452.52001953125, "x1": 307.0799865722656, "y1": 462.6000061035156, "width": 49.67999267578125, "height": 10.079986572265625}, {"x0": 307.79998779296875, "y0": 452.52001953125, "x1": 357.4800109863281, "y1": 462.6000061035156, "width": 49.680023193359375, "height": 10.079986572265625}, {"x0": 358.20001220703125, "y0": 452.52001953125, "x1": 407.5199890136719, "y1": 462.6000061035156, "width": 49.319976806640625, "height": 10.079986572265625}, {"x0": 408.239990234375, "y0": 452.52001953125, "x1": 457.9200134277344, "y1": 462.6000061035156, "width": 49.680023193359375, "height": 10.079986572265625}, {"x0": 458.6400146484375, "y0": 452.52001953125, "x1": 508.32000732421875, "y1": 462.6000061035156, "width": 49.67999267578125, "height": 10.079986572265625}, {"x0": 508.67999267578125, "y0": 452.52001953125, "x1": 558.3599853515625, "y1": 462.6000061035156, "width": 49.67999267578125, "height": 10.079986572265625}, {"x0": 559.0800170898438, "y0": 452.52001953125, "x1": 608.760009765625, "y1": 462.6000061035156, "width": 49.67999267578125, "height": 10.079986572265625}, {"x0": 609.47998046875, "y0": 452.52001953125, "x1": 658.7999877929688, "y1": 462.6000061035156, "width": 49.32000732421875, "height": 10.079986572265625}, {"x0": 659.52001953125, "y0": 431.2799987792969, "x1": 709.2000122070312, "y1": 462.6000061035156, "width": 49.67999267578125, "height": 31.32000732421875}, {"x0": 709.9199829101562, "y0": 431.2799987792969, "x1": 769.6799926757812, "y1": 462.6000061035156, "width": 59.760009765625, "height": 31.32000732421875}, {"x0": 257.3999938964844, "y0": 431.2799987792969, "x1": 307.0799865722656, "y1": 451.79998779296875, "width": 49.67999267578125, "height": 20.519989013671875}, {"x0": 307.79998779296875, "y0": 431.2799987792969, "x1": 357.4800109863281, "y1": 451.79998779296875, "width": 49.680023193359375, "height": 20.519989013671875}, {"x0": 358.20001220703125, "y0": 431.2799987792969, "x1": 407.5199890136719, "y1": 451.79998779296875, "width": 49.319976806640625, "height": 20.519989013671875}, {"x0": 408.239990234375, "y0": 431.2799987792969, "x1": 457.9200134277344, "y1": 451.79998779296875, "width": 49.680023193359375, "height": 20.519989013671875}, {"x0": 458.6400146484375, "y0": 431.2799987792969, "x1": 508.32000732421875, "y1": 451.79998779296875, "width": 49.67999267578125, "height": 20.519989013671875}, {"x0": 508.67999267578125, "y0": 431.2799987792969, "x1": 558.3599853515625, "y1": 451.79998779296875, "width": 49.67999267578125, "height": 20.519989013671875}, {"x0": 559.0800170898438, "y0": 431.2799987792969, "x1": 608.760009765625, "y1": 451.79998779296875, "width": 49.67999267578125, "height": 20.519989013671875}, {"x0": 609.47998046875, "y0": 431.2799987792969, "x1": 658.7999877929688, "y1": 451.79998779296875, "width": 49.32000732421875, "height": 20.519989013671875}, {"x0": 122.4000015258789, "y0": 265.32000732421875, "x1": 257.0400085449219, "y1": 430.55999755859375, "width": 134.64000701904297, "height": 165.239990234375}, {"x0": 257.3999938964844, "y0": 265.32000732421875, "x1": 307.0799865722656, "y1": 430.55999755859375, "width": 49.67999267578125, "height": 165.239990234375}, {"x0": 307.79998779296875, "y0": 265.32000732421875, "x1": 357.4800109863281, "y1": 430.55999755859375, "width": 49.680023193359375, "height": 165.239990234375}, {"x0": 358.20001220703125, "y0": 265.32000732421875, "x1": 407.5199890136719, "y1": 430.55999755859375, "width": 49.319976806640625, "height": 165.239990234375}, {"x0": 408.239990234375, "y0": 265.32000732421875, "x1": 457.9200134277344, "y1": 430.55999755859375, "width": 49.680023193359375, "height": 165.239990234375}, {"x0": 458.6400146484375, "y0": 265.32000732421875, "x1": 508.32000732421875, "y1": 430.55999755859375, "width": 49.67999267578125, "height": 165.239990234375}, {"x0": 508.67999267578125, "y0": 265.32000732421875, "x1": 558.3599853515625, "y1": 430.55999755859375, "width": 49.67999267578125, "height": 165.239990234375}, {"x0": 559.0800170898438, "y0": 265.32000732421875, "x1": 608.760009765625, "y1": 430.55999755859375, "width": 49.67999267578125, "height": 165.239990234375}, {"x0": 609.47998046875, "y0": 265.32000732421875, "x1": 658.7999877929688, "y1": 430.55999755859375, "width": 49.32000732421875, "height": 165.239990234375}, {"x0": 659.52001953125, "y0": 265.32000732421875, "x1": 709.2000122070312, "y1": 430.55999755859375, "width": 49.67999267578125, "height": 165.239990234375}, {"x0": 709.9199829101562, "y0": 265.32000732421875, "x1": 769.6799926757812, "y1": 430.55999755859375, "width": 59.760009765625, "height": 165.239990234375}, {"x0": 122.4000015258789, "y0": 254.51998901367188, "x1": 257.0400085449219, "y1": 264.6000061035156, "width": 134.64000701904297, "height": 10.08001708984375}, {"x0": 257.3999938964844, "y0": 254.51998901367188, "x1": 307.0799865722656, "y1": 264.6000061035156, "width": 49.67999267578125, "height": 10.08001708984375}, {"x0": 307.79998779296875, "y0": 254.51998901367188, "x1": 357.4800109863281, "y1": 264.6000061035156, "width": 49.680023193359375, "height": 10.08001708984375}, {"x0": 358.20001220703125, "y0": 254.51998901367188, "x1": 407.5199890136719, "y1": 264.6000061035156, "width": 49.319976806640625, "height": 10.08001708984375}, {"x0": 408.239990234375, "y0": 254.51998901367188, "x1": 457.9200134277344, "y1": 264.6000061035156, "width": 49.680023193359375, "height": 10.08001708984375}, {"x0": 458.6400146484375, "y0": 254.51998901367188, "x1": 508.32000732421875, "y1": 264.6000061035156, "width": 49.67999267578125, "height": 10.08001708984375}, {"x0": 508.67999267578125, "y0": 254.51998901367188, "x1": 558.3599853515625, "y1": 264.6000061035156, "width": 49.67999267578125, "height": 10.08001708984375}, {"x0": 559.0800170898438, "y0": 254.51998901367188, "x1": 608.760009765625, "y1": 264.6000061035156, "width": 49.67999267578125, "height": 10.08001708984375}, {"x0": 609.47998046875, "y0": 254.51998901367188, "x1": 658.7999877929688, "y1": 264.6000061035156, "width": 49.32000732421875, "height": 10.08001708984375}, {"x0": 659.52001953125, "y0": 254.51998901367188, "x1": 709.2000122070312, "y1": 264.6000061035156, "width": 49.67999267578125, "height": 10.08001708984375}, {"x0": 709.9199829101562, "y0": 254.51998901367188, "x1": 769.6799926757812, "y1": 264.6000061035156, "width": 59.760009765625, "height": 10.08001708984375}]}, {"pageInfo": {"number": 73, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.4000015258789, "y0": 415.79998779296875, "x1": 232.9199981689453, "y1": 447.8399963378906, "width": 110.5199966430664, "height": 32.040008544921875}, {"x0": 233.63999938964844, "y0": 437.760009765625, "x1": 284.0400085449219, "y1": 447.8399963378906, "width": 50.40000915527344, "height": 10.079986572265625}, {"x0": 284.3999938964844, "y0": 437.760009765625, "x1": 334.79998779296875, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 335.5199890136719, "y0": 437.760009765625, "x1": 385.9200134277344, "y1": 447.8399963378906, "width": 50.4000244140625, "height": 10.079986572265625}, {"x0": 386.6400146484375, "y0": 437.760009765625, "x1": 437.0400085449219, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 437.3999938964844, "y0": 437.760009765625, "x1": 487.79998779296875, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 488.5199890136719, "y0": 437.760009765625, "x1": 538.9199829101562, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 539.6400146484375, "y0": 437.760009765625, "x1": 590.0399780273438, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 10.079986572265625}, {"x0": 590.4000244140625, "y0": 437.760009765625, "x1": 640.7999877929688, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 10.079986572265625}, {"x0": 641.52001953125, "y0": 415.79998779296875, "x1": 691.9199829101562, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 32.040008544921875}, {"x0": 692.6400146484375, "y0": 415.79998779296875, "x1": 743.0399780273438, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 32.040008544921875}, {"x0": 233.63999938964844, "y0": 415.79998779296875, "x1": 284.0400085449219, "y1": 437.0400085449219, "width": 50.40000915527344, "height": 21.240020751953125}, {"x0": 284.3999938964844, "y0": 415.79998779296875, "x1": 334.79998779296875, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 21.240020751953125}, {"x0": 335.5199890136719, "y0": 415.79998779296875, "x1": 385.9200134277344, "y1": 437.0400085449219, "width": 50.4000244140625, "height": 21.240020751953125}, {"x0": 386.6400146484375, "y0": 415.79998779296875, "x1": 437.0400085449219, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 21.240020751953125}, {"x0": 437.3999938964844, "y0": 415.79998779296875, "x1": 487.79998779296875, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 21.240020751953125}, {"x0": 488.5199890136719, "y0": 415.79998779296875, "x1": 538.9199829101562, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 21.240020751953125}, {"x0": 539.6400146484375, "y0": 416.1600036621094, "x1": 590.0399780273438, "y1": 437.0400085449219, "width": 50.39996337890625, "height": 20.8800048828125}, {"x0": 590.4000244140625, "y0": 415.79998779296875, "x1": 640.7999877929688, "y1": 437.0400085449219, "width": 50.39996337890625, "height": 21.240020751953125}, {"x0": 122.4000015258789, "y0": 343.08001708984375, "x1": 232.9199981689453, "y1": 415.44000244140625, "width": 110.5199966430664, "height": 72.3599853515625}, {"x0": 233.63999938964844, "y0": 343.08001708984375, "x1": 284.0400085449219, "y1": 415.44000244140625, "width": 50.40000915527344, "height": 72.3599853515625}, {"x0": 284.3999938964844, "y0": 343.08001708984375, "x1": 334.79998779296875, "y1": 415.44000244140625, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 335.5199890136719, "y0": 343.08001708984375, "x1": 385.9200134277344, "y1": 415.44000244140625, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 386.6400146484375, "y0": 343.08001708984375, "x1": 437.0400085449219, "y1": 415.44000244140625, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 437.3999938964844, "y0": 343.08001708984375, "x1": 487.79998779296875, "y1": 415.44000244140625, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 488.5199890136719, "y0": 343.08001708984375, "x1": 538.9199829101562, "y1": 415.44000244140625, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 539.6400146484375, "y0": 343.08001708984375, "x1": 590.0399780273438, "y1": 415.08001708984375, "width": 50.39996337890625, "height": 72.0}, {"x0": 590.4000244140625, "y0": 343.08001708984375, "x1": 640.7999877929688, "y1": 415.44000244140625, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 641.52001953125, "y0": 343.08001708984375, "x1": 691.9199829101562, "y1": 415.44000244140625, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 692.6400146484375, "y0": 343.08001708984375, "x1": 743.0399780273438, "y1": 415.44000244140625, "width": 50.39996337890625, "height": 72.3599853515625}]}, {"pageInfo": {"number": 74, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.4000015258789, "y0": 416.52001953125, "x1": 257.0400085449219, "y1": 447.8399963378906, "width": 134.64000701904297, "height": 31.319976806640625}, {"x0": 257.3999938964844, "y0": 437.760009765625, "x1": 307.0799865722656, "y1": 447.8399963378906, "width": 49.67999267578125, "height": 10.079986572265625}, {"x0": 307.79998779296875, "y0": 437.760009765625, "x1": 357.4800109863281, "y1": 447.8399963378906, "width": 49.680023193359375, "height": 10.079986572265625}, {"x0": 358.20001220703125, "y0": 437.760009765625, "x1": 407.5199890136719, "y1": 447.8399963378906, "width": 49.319976806640625, "height": 10.079986572265625}, {"x0": 408.239990234375, "y0": 437.760009765625, "x1": 457.9200134277344, "y1": 447.8399963378906, "width": 49.680023193359375, "height": 10.079986572265625}, {"x0": 458.6400146484375, "y0": 437.760009765625, "x1": 508.32000732421875, "y1": 447.8399963378906, "width": 49.67999267578125, "height": 10.079986572265625}, {"x0": 508.67999267578125, "y0": 437.760009765625, "x1": 558.3599853515625, "y1": 447.8399963378906, "width": 49.67999267578125, "height": 10.079986572265625}, {"x0": 559.0800170898438, "y0": 437.760009765625, "x1": 608.760009765625, "y1": 447.8399963378906, "width": 49.67999267578125, "height": 10.079986572265625}, {"x0": 609.47998046875, "y0": 437.760009765625, "x1": 658.7999877929688, "y1": 447.8399963378906, "width": 49.32000732421875, "height": 10.079986572265625}, {"x0": 659.52001953125, "y0": 416.52001953125, "x1": 709.2000122070312, "y1": 447.8399963378906, "width": 49.67999267578125, "height": 31.319976806640625}, {"x0": 709.9199829101562, "y0": 416.52001953125, "x1": 769.6799926757812, "y1": 447.8399963378906, "width": 59.760009765625, "height": 31.319976806640625}, {"x0": 257.3999938964844, "y0": 416.52001953125, "x1": 307.0799865722656, "y1": 437.0400085449219, "width": 49.67999267578125, "height": 20.519989013671875}, {"x0": 307.79998779296875, "y0": 416.52001953125, "x1": 357.4800109863281, "y1": 437.0400085449219, "width": 49.680023193359375, "height": 20.519989013671875}, {"x0": 358.20001220703125, "y0": 416.52001953125, "x1": 407.5199890136719, "y1": 437.0400085449219, "width": 49.319976806640625, "height": 20.519989013671875}, {"x0": 408.239990234375, "y0": 416.52001953125, "x1": 457.9200134277344, "y1": 437.0400085449219, "width": 49.680023193359375, "height": 20.519989013671875}, {"x0": 458.6400146484375, "y0": 416.52001953125, "x1": 508.32000732421875, "y1": 437.0400085449219, "width": 49.67999267578125, "height": 20.519989013671875}, {"x0": 508.67999267578125, "y0": 416.52001953125, "x1": 558.3599853515625, "y1": 437.0400085449219, "width": 49.67999267578125, "height": 20.519989013671875}, {"x0": 559.0800170898438, "y0": 416.52001953125, "x1": 608.760009765625, "y1": 437.0400085449219, "width": 49.67999267578125, "height": 20.519989013671875}, {"x0": 609.47998046875, "y0": 416.52001953125, "x1": 658.7999877929688, "y1": 437.0400085449219, "width": 49.32000732421875, "height": 20.519989013671875}, {"x0": 122.4000015258789, "y0": 208.79998779296875, "x1": 257.0400085449219, "y1": 415.79998779296875, "width": 134.64000701904297, "height": 207.0}, {"x0": 257.3999938964844, "y0": 208.79998779296875, "x1": 307.0799865722656, "y1": 415.79998779296875, "width": 49.67999267578125, "height": 207.0}, {"x0": 307.79998779296875, "y0": 208.79998779296875, "x1": 357.4800109863281, "y1": 415.79998779296875, "width": 49.680023193359375, "height": 207.0}, {"x0": 358.20001220703125, "y0": 208.79998779296875, "x1": 407.5199890136719, "y1": 415.79998779296875, "width": 49.319976806640625, "height": 207.0}, {"x0": 408.239990234375, "y0": 208.79998779296875, "x1": 457.9200134277344, "y1": 415.79998779296875, "width": 49.680023193359375, "height": 207.0}, {"x0": 458.6400146484375, "y0": 208.79998779296875, "x1": 508.32000732421875, "y1": 415.79998779296875, "width": 49.67999267578125, "height": 207.0}, {"x0": 508.67999267578125, "y0": 208.79998779296875, "x1": 558.3599853515625, "y1": 415.79998779296875, "width": 49.67999267578125, "height": 207.0}, {"x0": 559.0800170898438, "y0": 208.79998779296875, "x1": 608.760009765625, "y1": 415.79998779296875, "width": 49.67999267578125, "height": 207.0}, {"x0": 609.47998046875, "y0": 208.79998779296875, "x1": 658.7999877929688, "y1": 415.79998779296875, "width": 49.32000732421875, "height": 207.0}, {"x0": 659.52001953125, "y0": 208.79998779296875, "x1": 709.2000122070312, "y1": 415.79998779296875, "width": 49.67999267578125, "height": 207.0}, {"x0": 709.9199829101562, "y0": 208.79998779296875, "x1": 769.6799926757812, "y1": 415.79998779296875, "width": 59.760009765625, "height": 207.0}]}, {"pageInfo": {"number": 75, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 162.36000061035156, "y0": 431.2799987792969, "x1": 297.7200012207031, "y1": 462.6000061035156, "width": 135.36000061035156, "height": 31.32000732421875}, {"x0": 298.44000244140625, "y0": 452.52001953125, "x1": 351.7200012207031, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 352.44000244140625, "y0": 452.52001953125, "x1": 405.7200012207031, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 406.44000244140625, "y0": 452.52001953125, "x1": 459.7200012207031, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 460.44000244140625, "y0": 452.52001953125, "x1": 513.719970703125, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 514.4400024414062, "y0": 452.52001953125, "x1": 567.719970703125, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 568.4400024414062, "y0": 452.52001953125, "x1": 621.719970703125, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 622.4400024414062, "y0": 452.52001953125, "x1": 675.719970703125, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 676.4400024414062, "y0": 452.52001953125, "x1": 729.719970703125, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 298.44000244140625, "y0": 431.2799987792969, "x1": 351.7200012207031, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 352.44000244140625, "y0": 431.2799987792969, "x1": 405.7200012207031, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 406.44000244140625, "y0": 431.2799987792969, "x1": 459.7200012207031, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 460.44000244140625, "y0": 431.2799987792969, "x1": 513.719970703125, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 514.4400024414062, "y0": 431.2799987792969, "x1": 567.719970703125, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 568.4400024414062, "y0": 431.2799987792969, "x1": 621.719970703125, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 622.4400024414062, "y0": 431.2799987792969, "x1": 675.719970703125, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 676.4400024414062, "y0": 431.2799987792969, "x1": 729.719970703125, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 162.36000061035156, "y0": 265.32000732421875, "x1": 297.7200012207031, "y1": 430.55999755859375, "width": 135.36000061035156, "height": 165.239990234375}, {"x0": 298.44000244140625, "y0": 265.32000732421875, "x1": 351.7200012207031, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 352.44000244140625, "y0": 265.32000732421875, "x1": 405.7200012207031, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 406.44000244140625, "y0": 265.32000732421875, "x1": 459.7200012207031, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 460.44000244140625, "y0": 265.32000732421875, "x1": 513.719970703125, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 514.4400024414062, "y0": 265.32000732421875, "x1": 567.719970703125, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 568.4400024414062, "y0": 265.32000732421875, "x1": 621.719970703125, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 622.4400024414062, "y0": 265.32000732421875, "x1": 675.719970703125, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 676.4400024414062, "y0": 265.32000732421875, "x1": 729.719970703125, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 162.36000061035156, "y0": 254.51998901367188, "x1": 297.7200012207031, "y1": 264.6000061035156, "width": 135.36000061035156, "height": 10.08001708984375}, {"x0": 298.44000244140625, "y0": 254.51998901367188, "x1": 351.7200012207031, "y1": 264.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 352.44000244140625, "y0": 254.51998901367188, "x1": 405.7200012207031, "y1": 264.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 406.44000244140625, "y0": 254.51998901367188, "x1": 459.7200012207031, "y1": 264.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 460.44000244140625, "y0": 254.51998901367188, "x1": 513.719970703125, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}, {"x0": 514.4400024414062, "y0": 254.51998901367188, "x1": 567.719970703125, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}, {"x0": 568.4400024414062, "y0": 254.51998901367188, "x1": 621.719970703125, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}, {"x0": 622.4400024414062, "y0": 254.51998901367188, "x1": 675.719970703125, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}, {"x0": 676.4400024414062, "y0": 254.51998901367188, "x1": 729.719970703125, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}]}, {"pageInfo": {"number": 76, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 120.23999786376953, "y0": 473.3999938964844, "x1": 254.8800048828125, "y1": 504.7200012207031, "width": 134.64000701904297, "height": 31.32000732421875}, {"x0": 255.60000610351562, "y0": 494.6400146484375, "x1": 308.5199890136719, "y1": 504.7200012207031, "width": 52.91998291015625, "height": 10.079986572265625}, {"x0": 309.239990234375, "y0": 494.6400146484375, "x1": 362.5199890136719, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 362.8800048828125, "y0": 494.6400146484375, "x1": 416.1600036621094, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 416.8800048828125, "y0": 494.6400146484375, "x1": 469.79998779296875, "y1": 504.7200012207031, "width": 52.91998291015625, "height": 10.079986572265625}, {"x0": 470.5199890136719, "y0": 494.6400146484375, "x1": 523.4400024414062, "y1": 504.7200012207031, "width": 52.920013427734375, "height": 10.079986572265625}, {"x0": 524.1599731445312, "y0": 494.6400146484375, "x1": 577.4400024414062, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 578.1599731445312, "y0": 494.6400146484375, "x1": 631.0800170898438, "y1": 504.7200012207031, "width": 52.9200439453125, "height": 10.079986572265625}, {"x0": 631.7999877929688, "y0": 494.6400146484375, "x1": 684.719970703125, "y1": 504.7200012207031, "width": 52.91998291015625, "height": 10.079986572265625}, {"x0": 685.4400024414062, "y0": 494.6400146484375, "x1": 730.4400024414062, "y1": 504.7200012207031, "width": 45.0, "height": 10.079986572265625}, {"x0": 731.1599731445312, "y0": 494.6400146484375, "x1": 771.8400268554688, "y1": 504.7200012207031, "width": 40.6800537109375, "height": 10.079986572265625}, {"x0": 255.60000610351562, "y0": 473.3999938964844, "x1": 308.5199890136719, "y1": 493.9200134277344, "width": 52.91998291015625, "height": 20.52001953125}, {"x0": 309.239990234375, "y0": 473.3999938964844, "x1": 362.5199890136719, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 362.8800048828125, "y0": 473.3999938964844, "x1": 416.1600036621094, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 416.8800048828125, "y0": 473.3999938964844, "x1": 469.79998779296875, "y1": 493.9200134277344, "width": 52.91998291015625, "height": 20.52001953125}, {"x0": 470.5199890136719, "y0": 473.3999938964844, "x1": 523.4400024414062, "y1": 493.9200134277344, "width": 52.920013427734375, "height": 20.52001953125}, {"x0": 524.1599731445312, "y0": 473.3999938964844, "x1": 577.4400024414062, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 578.1599731445312, "y0": 473.3999938964844, "x1": 631.0800170898438, "y1": 493.9200134277344, "width": 52.9200439453125, "height": 20.52001953125}, {"x0": 631.7999877929688, "y0": 473.3999938964844, "x1": 684.719970703125, "y1": 493.9200134277344, "width": 52.91998291015625, "height": 20.52001953125}, {"x0": 685.4400024414062, "y0": 473.3999938964844, "x1": 730.4400024414062, "y1": 493.9200134277344, "width": 45.0, "height": 20.52001953125}, {"x0": 731.1599731445312, "y0": 473.3999938964844, "x1": 771.8400268554688, "y1": 493.9200134277344, "width": 40.6800537109375, "height": 20.52001953125}, {"x0": 120.23999786376953, "y0": 307.08001708984375, "x1": 254.8800048828125, "y1": 472.67999267578125, "width": 134.64000701904297, "height": 165.5999755859375}, {"x0": 255.60000610351562, "y0": 307.08001708984375, "x1": 308.5199890136719, "y1": 472.67999267578125, "width": 52.91998291015625, "height": 165.5999755859375}, {"x0": 309.239990234375, "y0": 307.08001708984375, "x1": 362.5199890136719, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 165.5999755859375}, {"x0": 362.8800048828125, "y0": 307.08001708984375, "x1": 416.1600036621094, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 165.5999755859375}, {"x0": 416.8800048828125, "y0": 307.08001708984375, "x1": 469.79998779296875, "y1": 472.67999267578125, "width": 52.91998291015625, "height": 165.5999755859375}, {"x0": 470.5199890136719, "y0": 307.08001708984375, "x1": 523.4400024414062, "y1": 472.67999267578125, "width": 52.920013427734375, "height": 165.5999755859375}, {"x0": 524.1599731445312, "y0": 307.08001708984375, "x1": 577.4400024414062, "y1": 472.67999267578125, "width": 53.280029296875, "height": 165.5999755859375}, {"x0": 578.1599731445312, "y0": 307.08001708984375, "x1": 631.0800170898438, "y1": 472.67999267578125, "width": 52.9200439453125, "height": 165.5999755859375}, {"x0": 631.7999877929688, "y0": 307.08001708984375, "x1": 684.719970703125, "y1": 472.67999267578125, "width": 52.91998291015625, "height": 165.5999755859375}, {"x0": 685.4400024414062, "y0": 307.08001708984375, "x1": 730.4400024414062, "y1": 472.67999267578125, "width": 45.0, "height": 165.5999755859375}, {"x0": 731.1599731445312, "y0": 307.08001708984375, "x1": 771.8400268554688, "y1": 472.67999267578125, "width": 40.6800537109375, "height": 165.5999755859375}, {"x0": 120.23999786376953, "y0": 296.2799987792969, "x1": 254.8800048828125, "y1": 306.3600158691406, "width": 134.64000701904297, "height": 10.08001708984375}, {"x0": 255.60000610351562, "y0": 296.2799987792969, "x1": 308.5199890136719, "y1": 306.3600158691406, "width": 52.91998291015625, "height": 10.08001708984375}, {"x0": 309.239990234375, "y0": 296.2799987792969, "x1": 362.5199890136719, "y1": 306.3600158691406, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 362.8800048828125, "y0": 296.2799987792969, "x1": 416.1600036621094, "y1": 306.3600158691406, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 416.8800048828125, "y0": 296.2799987792969, "x1": 469.79998779296875, "y1": 306.3600158691406, "width": 52.91998291015625, "height": 10.08001708984375}, {"x0": 470.5199890136719, "y0": 296.2799987792969, "x1": 523.4400024414062, "y1": 306.3600158691406, "width": 52.920013427734375, "height": 10.08001708984375}, {"x0": 524.1599731445312, "y0": 296.2799987792969, "x1": 577.4400024414062, "y1": 306.3600158691406, "width": 53.280029296875, "height": 10.08001708984375}, {"x0": 578.1599731445312, "y0": 296.2799987792969, "x1": 631.0800170898438, "y1": 306.3600158691406, "width": 52.9200439453125, "height": 10.08001708984375}, {"x0": 631.7999877929688, "y0": 296.2799987792969, "x1": 684.719970703125, "y1": 306.3600158691406, "width": 52.91998291015625, "height": 10.08001708984375}, {"x0": 685.4400024414062, "y0": 296.2799987792969, "x1": 730.4400024414062, "y1": 306.3600158691406, "width": 45.0, "height": 10.08001708984375}, {"x0": 731.1599731445312, "y0": 296.2799987792969, "x1": 771.8400268554688, "y1": 306.3600158691406, "width": 40.6800537109375, "height": 10.08001708984375}]}, {"pageInfo": {"number": 77, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 186.83999633789062, "y0": 416.52001953125, "x1": 297.0, "y1": 447.8399963378906, "width": 110.16000366210938, "height": 31.319976806640625}, {"x0": 297.7200012207031, "y0": 437.760009765625, "x1": 348.1199951171875, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 348.8399963378906, "y0": 437.760009765625, "x1": 399.239990234375, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 399.9599914550781, "y0": 437.760009765625, "x1": 450.0, "y1": 447.8399963378906, "width": 50.040008544921875, "height": 10.079986572265625}, {"x0": 450.7200012207031, "y0": 437.760009765625, "x1": 501.1199951171875, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 501.8399963378906, "y0": 437.760009765625, "x1": 552.239990234375, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 552.9600219726562, "y0": 437.760009765625, "x1": 603.0, "y1": 447.8399963378906, "width": 50.03997802734375, "height": 10.079986572265625}, {"x0": 603.719970703125, "y0": 437.760009765625, "x1": 654.1199951171875, "y1": 447.8399963378906, "width": 50.4000244140625, "height": 10.079986572265625}, {"x0": 654.8400268554688, "y0": 437.760009765625, "x1": 705.239990234375, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 10.079986572265625}, {"x0": 297.7200012207031, "y0": 416.52001953125, "x1": 348.1199951171875, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 348.8399963378906, "y0": 416.52001953125, "x1": 399.239990234375, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 399.9599914550781, "y0": 416.52001953125, "x1": 450.0, "y1": 437.0400085449219, "width": 50.040008544921875, "height": 20.519989013671875}, {"x0": 450.7200012207031, "y0": 416.52001953125, "x1": 501.1199951171875, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 501.8399963378906, "y0": 416.52001953125, "x1": 552.239990234375, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 552.9600219726562, "y0": 416.52001953125, "x1": 603.0, "y1": 437.0400085449219, "width": 50.03997802734375, "height": 20.519989013671875}, {"x0": 603.719970703125, "y0": 416.52001953125, "x1": 654.1199951171875, "y1": 437.0400085449219, "width": 50.4000244140625, "height": 20.519989013671875}, {"x0": 654.8400268554688, "y0": 416.52001953125, "x1": 705.239990234375, "y1": 437.0400085449219, "width": 50.39996337890625, "height": 20.519989013671875}, {"x0": 186.83999633789062, "y0": 343.44000244140625, "x1": 297.0, "y1": 415.79998779296875, "width": 110.16000366210938, "height": 72.3599853515625}, {"x0": 297.7200012207031, "y0": 343.44000244140625, "x1": 348.1199951171875, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 348.8399963378906, "y0": 343.44000244140625, "x1": 399.239990234375, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 399.9599914550781, "y0": 343.44000244140625, "x1": 450.0, "y1": 415.79998779296875, "width": 50.040008544921875, "height": 72.3599853515625}, {"x0": 450.7200012207031, "y0": 343.44000244140625, "x1": 501.1199951171875, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 501.8399963378906, "y0": 343.44000244140625, "x1": 552.239990234375, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 552.9600219726562, "y0": 343.44000244140625, "x1": 603.0, "y1": 415.79998779296875, "width": 50.03997802734375, "height": 72.3599853515625}, {"x0": 603.719970703125, "y0": 343.44000244140625, "x1": 654.1199951171875, "y1": 415.79998779296875, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 654.8400268554688, "y0": 343.44000244140625, "x1": 705.239990234375, "y1": 415.79998779296875, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 135.72000122070312, "y0": 301.67999267578125, "x1": 246.24000549316406, "y1": 333.0, "width": 110.52000427246094, "height": 31.32000732421875}, {"x0": 246.9600067138672, "y0": 322.9200134277344, "x1": 297.0, "y1": 333.0, "width": 50.03999328613281, "height": 10.079986572265625}, {"x0": 297.7200012207031, "y0": 322.9200134277344, "x1": 348.1199951171875, "y1": 333.0, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 348.8399963378906, "y0": 322.9200134277344, "x1": 399.239990234375, "y1": 333.0, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 399.9599914550781, "y0": 322.9200134277344, "x1": 450.0, "y1": 333.0, "width": 50.040008544921875, "height": 10.079986572265625}, {"x0": 450.7200012207031, "y0": 322.9200134277344, "x1": 501.1199951171875, "y1": 333.0, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 501.8399963378906, "y0": 322.9200134277344, "x1": 552.239990234375, "y1": 333.0, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 552.9600219726562, "y0": 322.9200134277344, "x1": 603.0, "y1": 333.0, "width": 50.03997802734375, "height": 10.079986572265625}, {"x0": 603.719970703125, "y0": 322.9200134277344, "x1": 654.1199951171875, "y1": 333.0, "width": 50.4000244140625, "height": 10.079986572265625}, {"x0": 654.8400268554688, "y0": 322.9200134277344, "x1": 705.239990234375, "y1": 333.0, "width": 50.39996337890625, "height": 10.079986572265625}, {"x0": 705.9600219726562, "y0": 322.9200134277344, "x1": 756.0, "y1": 333.0, "width": 50.03997802734375, "height": 10.079986572265625}, {"x0": 246.9600067138672, "y0": 301.67999267578125, "x1": 297.0, "y1": 322.20001220703125, "width": 50.03999328613281, "height": 20.52001953125}, {"x0": 297.7200012207031, "y0": 301.67999267578125, "x1": 348.1199951171875, "y1": 322.20001220703125, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 348.8399963378906, "y0": 301.67999267578125, "x1": 399.239990234375, "y1": 322.20001220703125, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 399.9599914550781, "y0": 301.67999267578125, "x1": 450.0, "y1": 322.20001220703125, "width": 50.040008544921875, "height": 20.52001953125}, {"x0": 450.7200012207031, "y0": 301.67999267578125, "x1": 501.1199951171875, "y1": 322.20001220703125, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 501.8399963378906, "y0": 301.67999267578125, "x1": 552.239990234375, "y1": 322.20001220703125, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 552.9600219726562, "y0": 301.67999267578125, "x1": 603.0, "y1": 322.20001220703125, "width": 50.03997802734375, "height": 20.52001953125}, {"x0": 603.719970703125, "y0": 301.67999267578125, "x1": 654.1199951171875, "y1": 322.20001220703125, "width": 50.4000244140625, "height": 20.52001953125}, {"x0": 654.8400268554688, "y0": 301.67999267578125, "x1": 705.239990234375, "y1": 322.20001220703125, "width": 50.39996337890625, "height": 20.52001953125}, {"x0": 705.9600219726562, "y0": 301.67999267578125, "x1": 756.0, "y1": 322.20001220703125, "width": 50.03997802734375, "height": 20.52001953125}, {"x0": 135.72000122070312, "y0": 228.60000610351562, "x1": 246.24000549316406, "y1": 300.9599914550781, "width": 110.52000427246094, "height": 72.3599853515625}, {"x0": 246.9600067138672, "y0": 228.60000610351562, "x1": 297.0, "y1": 300.9599914550781, "width": 50.03999328613281, "height": 72.3599853515625}, {"x0": 297.7200012207031, "y0": 228.60000610351562, "x1": 348.1199951171875, "y1": 300.9599914550781, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 348.8399963378906, "y0": 228.60000610351562, "x1": 399.239990234375, "y1": 300.9599914550781, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 399.9599914550781, "y0": 228.60000610351562, "x1": 450.0, "y1": 300.9599914550781, "width": 50.040008544921875, "height": 72.3599853515625}, {"x0": 450.7200012207031, "y0": 228.60000610351562, "x1": 501.1199951171875, "y1": 300.9599914550781, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 501.8399963378906, "y0": 228.60000610351562, "x1": 552.239990234375, "y1": 300.9599914550781, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 552.9600219726562, "y0": 228.60000610351562, "x1": 603.0, "y1": 300.9599914550781, "width": 50.03997802734375, "height": 72.3599853515625}, {"x0": 603.719970703125, "y0": 228.60000610351562, "x1": 654.1199951171875, "y1": 300.9599914550781, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 654.8400268554688, "y0": 228.60000610351562, "x1": 705.239990234375, "y1": 300.9599914550781, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 705.9600219726562, "y0": 228.60000610351562, "x1": 756.0, "y1": 300.9599914550781, "width": 50.03997802734375, "height": 72.3599853515625}]}, {"pageInfo": {"number": 78, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 162.36000061035156, "y0": 431.2799987792969, "x1": 297.7200012207031, "y1": 462.6000061035156, "width": 135.36000061035156, "height": 31.32000732421875}, {"x0": 298.44000244140625, "y0": 452.52001953125, "x1": 351.7200012207031, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 352.44000244140625, "y0": 452.52001953125, "x1": 405.7200012207031, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 406.44000244140625, "y0": 452.52001953125, "x1": 459.7200012207031, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 460.44000244140625, "y0": 452.52001953125, "x1": 513.719970703125, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 514.4400024414062, "y0": 452.52001953125, "x1": 567.719970703125, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 568.4400024414062, "y0": 452.52001953125, "x1": 621.719970703125, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 622.4400024414062, "y0": 452.52001953125, "x1": 675.719970703125, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 676.4400024414062, "y0": 452.52001953125, "x1": 729.719970703125, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 298.44000244140625, "y0": 431.2799987792969, "x1": 351.7200012207031, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 352.44000244140625, "y0": 431.2799987792969, "x1": 405.7200012207031, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 406.44000244140625, "y0": 431.2799987792969, "x1": 459.7200012207031, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 460.44000244140625, "y0": 431.2799987792969, "x1": 513.719970703125, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 514.4400024414062, "y0": 431.2799987792969, "x1": 567.719970703125, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 568.4400024414062, "y0": 431.2799987792969, "x1": 621.719970703125, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 622.4400024414062, "y0": 431.2799987792969, "x1": 675.719970703125, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 676.4400024414062, "y0": 431.2799987792969, "x1": 729.719970703125, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 162.36000061035156, "y0": 265.32000732421875, "x1": 297.7200012207031, "y1": 430.55999755859375, "width": 135.36000061035156, "height": 165.239990234375}, {"x0": 298.44000244140625, "y0": 265.32000732421875, "x1": 351.7200012207031, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 352.44000244140625, "y0": 265.32000732421875, "x1": 405.7200012207031, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 406.44000244140625, "y0": 265.32000732421875, "x1": 459.7200012207031, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 165.239990234375}, {"x0": 460.44000244140625, "y0": 265.32000732421875, "x1": 513.719970703125, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 514.4400024414062, "y0": 265.32000732421875, "x1": 567.719970703125, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 568.4400024414062, "y0": 265.32000732421875, "x1": 621.719970703125, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 622.4400024414062, "y0": 265.32000732421875, "x1": 675.719970703125, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 676.4400024414062, "y0": 265.32000732421875, "x1": 729.719970703125, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 165.239990234375}, {"x0": 162.36000061035156, "y0": 254.51998901367188, "x1": 297.7200012207031, "y1": 264.6000061035156, "width": 135.36000061035156, "height": 10.08001708984375}, {"x0": 298.44000244140625, "y0": 254.51998901367188, "x1": 351.7200012207031, "y1": 264.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 352.44000244140625, "y0": 254.51998901367188, "x1": 405.7200012207031, "y1": 264.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 406.44000244140625, "y0": 254.51998901367188, "x1": 459.7200012207031, "y1": 264.6000061035156, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 460.44000244140625, "y0": 254.51998901367188, "x1": 513.719970703125, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}, {"x0": 514.4400024414062, "y0": 254.51998901367188, "x1": 567.719970703125, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}, {"x0": 568.4400024414062, "y0": 254.51998901367188, "x1": 621.719970703125, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}, {"x0": 622.4400024414062, "y0": 254.51998901367188, "x1": 675.719970703125, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}, {"x0": 676.4400024414062, "y0": 254.51998901367188, "x1": 729.719970703125, "y1": 264.6000061035156, "width": 53.27996826171875, "height": 10.08001708984375}]}, {"pageInfo": {"number": 79, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 120.23999786376953, "y0": 473.3999938964844, "x1": 254.8800048828125, "y1": 504.7200012207031, "width": 134.64000701904297, "height": 31.32000732421875}, {"x0": 255.60000610351562, "y0": 494.6400146484375, "x1": 308.5199890136719, "y1": 504.7200012207031, "width": 52.91998291015625, "height": 10.079986572265625}, {"x0": 309.239990234375, "y0": 494.6400146484375, "x1": 362.5199890136719, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 362.8800048828125, "y0": 494.6400146484375, "x1": 416.1600036621094, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 416.8800048828125, "y0": 494.6400146484375, "x1": 469.79998779296875, "y1": 504.7200012207031, "width": 52.91998291015625, "height": 10.079986572265625}, {"x0": 470.5199890136719, "y0": 494.6400146484375, "x1": 523.4400024414062, "y1": 504.7200012207031, "width": 52.920013427734375, "height": 10.079986572265625}, {"x0": 524.1599731445312, "y0": 494.6400146484375, "x1": 577.4400024414062, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 578.1599731445312, "y0": 494.6400146484375, "x1": 631.0800170898438, "y1": 504.7200012207031, "width": 52.9200439453125, "height": 10.079986572265625}, {"x0": 631.7999877929688, "y0": 494.6400146484375, "x1": 684.719970703125, "y1": 504.7200012207031, "width": 52.91998291015625, "height": 10.079986572265625}, {"x0": 685.4400024414062, "y0": 494.6400146484375, "x1": 730.4400024414062, "y1": 504.7200012207031, "width": 45.0, "height": 10.079986572265625}, {"x0": 731.1599731445312, "y0": 494.6400146484375, "x1": 771.8400268554688, "y1": 504.7200012207031, "width": 40.6800537109375, "height": 10.079986572265625}, {"x0": 255.60000610351562, "y0": 473.3999938964844, "x1": 308.5199890136719, "y1": 493.9200134277344, "width": 52.91998291015625, "height": 20.52001953125}, {"x0": 309.239990234375, "y0": 473.3999938964844, "x1": 362.5199890136719, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 362.8800048828125, "y0": 473.3999938964844, "x1": 416.1600036621094, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 416.8800048828125, "y0": 473.3999938964844, "x1": 469.79998779296875, "y1": 493.9200134277344, "width": 52.91998291015625, "height": 20.52001953125}, {"x0": 470.5199890136719, "y0": 473.3999938964844, "x1": 523.4400024414062, "y1": 493.9200134277344, "width": 52.920013427734375, "height": 20.52001953125}, {"x0": 524.1599731445312, "y0": 473.3999938964844, "x1": 577.4400024414062, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 578.1599731445312, "y0": 473.3999938964844, "x1": 631.0800170898438, "y1": 493.9200134277344, "width": 52.9200439453125, "height": 20.52001953125}, {"x0": 631.7999877929688, "y0": 473.3999938964844, "x1": 684.719970703125, "y1": 493.9200134277344, "width": 52.91998291015625, "height": 20.52001953125}, {"x0": 685.4400024414062, "y0": 473.3999938964844, "x1": 730.4400024414062, "y1": 493.9200134277344, "width": 45.0, "height": 20.52001953125}, {"x0": 731.1599731445312, "y0": 473.3999938964844, "x1": 771.8400268554688, "y1": 493.9200134277344, "width": 40.6800537109375, "height": 20.52001953125}, {"x0": 120.23999786376953, "y0": 307.08001708984375, "x1": 254.8800048828125, "y1": 472.67999267578125, "width": 134.64000701904297, "height": 165.5999755859375}, {"x0": 255.60000610351562, "y0": 307.08001708984375, "x1": 308.5199890136719, "y1": 472.67999267578125, "width": 52.91998291015625, "height": 165.5999755859375}, {"x0": 309.239990234375, "y0": 307.08001708984375, "x1": 362.5199890136719, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 165.5999755859375}, {"x0": 362.8800048828125, "y0": 307.08001708984375, "x1": 416.1600036621094, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 165.5999755859375}, {"x0": 416.8800048828125, "y0": 307.08001708984375, "x1": 469.79998779296875, "y1": 472.67999267578125, "width": 52.91998291015625, "height": 165.5999755859375}, {"x0": 470.5199890136719, "y0": 307.08001708984375, "x1": 523.4400024414062, "y1": 472.67999267578125, "width": 52.920013427734375, "height": 165.5999755859375}, {"x0": 524.1599731445312, "y0": 307.08001708984375, "x1": 577.4400024414062, "y1": 472.67999267578125, "width": 53.280029296875, "height": 165.5999755859375}, {"x0": 578.1599731445312, "y0": 307.08001708984375, "x1": 631.0800170898438, "y1": 472.67999267578125, "width": 52.9200439453125, "height": 165.5999755859375}, {"x0": 631.7999877929688, "y0": 307.08001708984375, "x1": 684.719970703125, "y1": 472.67999267578125, "width": 52.91998291015625, "height": 165.5999755859375}, {"x0": 685.4400024414062, "y0": 307.08001708984375, "x1": 730.4400024414062, "y1": 472.67999267578125, "width": 45.0, "height": 165.5999755859375}, {"x0": 731.1599731445312, "y0": 307.08001708984375, "x1": 771.8400268554688, "y1": 472.67999267578125, "width": 40.6800537109375, "height": 165.5999755859375}, {"x0": 120.23999786376953, "y0": 296.2799987792969, "x1": 254.8800048828125, "y1": 306.3600158691406, "width": 134.64000701904297, "height": 10.08001708984375}, {"x0": 255.60000610351562, "y0": 296.2799987792969, "x1": 308.5199890136719, "y1": 306.3600158691406, "width": 52.91998291015625, "height": 10.08001708984375}, {"x0": 309.239990234375, "y0": 296.2799987792969, "x1": 362.5199890136719, "y1": 306.3600158691406, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 362.8800048828125, "y0": 296.2799987792969, "x1": 416.1600036621094, "y1": 306.3600158691406, "width": 53.279998779296875, "height": 10.08001708984375}, {"x0": 416.8800048828125, "y0": 296.2799987792969, "x1": 469.79998779296875, "y1": 306.3600158691406, "width": 52.91998291015625, "height": 10.08001708984375}, {"x0": 470.5199890136719, "y0": 296.2799987792969, "x1": 523.4400024414062, "y1": 306.3600158691406, "width": 52.920013427734375, "height": 10.08001708984375}, {"x0": 524.1599731445312, "y0": 296.2799987792969, "x1": 577.4400024414062, "y1": 306.3600158691406, "width": 53.280029296875, "height": 10.08001708984375}, {"x0": 578.1599731445312, "y0": 296.2799987792969, "x1": 631.0800170898438, "y1": 306.3600158691406, "width": 52.9200439453125, "height": 10.08001708984375}, {"x0": 631.7999877929688, "y0": 296.2799987792969, "x1": 684.719970703125, "y1": 306.3600158691406, "width": 52.91998291015625, "height": 10.08001708984375}, {"x0": 685.4400024414062, "y0": 296.2799987792969, "x1": 730.4400024414062, "y1": 306.3600158691406, "width": 45.0, "height": 10.08001708984375}, {"x0": 731.1599731445312, "y0": 296.2799987792969, "x1": 771.8400268554688, "y1": 306.3600158691406, "width": 40.6800537109375, "height": 10.08001708984375}]}, {"pageInfo": {"number": 80, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 186.83999633789062, "y0": 416.52001953125, "x1": 297.0, "y1": 447.8399963378906, "width": 110.16000366210938, "height": 31.319976806640625}, {"x0": 297.7200012207031, "y0": 437.760009765625, "x1": 348.1199951171875, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 348.8399963378906, "y0": 437.760009765625, "x1": 399.239990234375, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 399.9599914550781, "y0": 437.760009765625, "x1": 450.0, "y1": 447.8399963378906, "width": 50.040008544921875, "height": 10.079986572265625}, {"x0": 450.7200012207031, "y0": 437.760009765625, "x1": 501.1199951171875, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 501.8399963378906, "y0": 437.760009765625, "x1": 552.239990234375, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 552.9600219726562, "y0": 437.760009765625, "x1": 603.0, "y1": 447.8399963378906, "width": 50.03997802734375, "height": 10.079986572265625}, {"x0": 603.719970703125, "y0": 437.760009765625, "x1": 654.1199951171875, "y1": 447.8399963378906, "width": 50.4000244140625, "height": 10.079986572265625}, {"x0": 654.8400268554688, "y0": 437.760009765625, "x1": 705.239990234375, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 10.079986572265625}, {"x0": 297.7200012207031, "y0": 416.52001953125, "x1": 348.1199951171875, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 348.8399963378906, "y0": 416.52001953125, "x1": 399.239990234375, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 399.9599914550781, "y0": 416.52001953125, "x1": 450.0, "y1": 437.0400085449219, "width": 50.040008544921875, "height": 20.519989013671875}, {"x0": 450.7200012207031, "y0": 416.52001953125, "x1": 501.1199951171875, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 501.8399963378906, "y0": 416.52001953125, "x1": 552.239990234375, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 552.9600219726562, "y0": 416.52001953125, "x1": 603.0, "y1": 437.0400085449219, "width": 50.03997802734375, "height": 20.519989013671875}, {"x0": 603.719970703125, "y0": 416.52001953125, "x1": 654.1199951171875, "y1": 437.0400085449219, "width": 50.4000244140625, "height": 20.519989013671875}, {"x0": 654.8400268554688, "y0": 416.52001953125, "x1": 705.239990234375, "y1": 437.0400085449219, "width": 50.39996337890625, "height": 20.519989013671875}, {"x0": 186.83999633789062, "y0": 343.44000244140625, "x1": 297.0, "y1": 415.79998779296875, "width": 110.16000366210938, "height": 72.3599853515625}, {"x0": 297.7200012207031, "y0": 343.44000244140625, "x1": 348.1199951171875, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 348.8399963378906, "y0": 343.44000244140625, "x1": 399.239990234375, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 399.9599914550781, "y0": 343.44000244140625, "x1": 450.0, "y1": 415.79998779296875, "width": 50.040008544921875, "height": 72.3599853515625}, {"x0": 450.7200012207031, "y0": 343.44000244140625, "x1": 501.1199951171875, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 501.8399963378906, "y0": 343.44000244140625, "x1": 552.239990234375, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 552.9600219726562, "y0": 343.44000244140625, "x1": 603.0, "y1": 415.79998779296875, "width": 50.03997802734375, "height": 72.3599853515625}, {"x0": 603.719970703125, "y0": 343.44000244140625, "x1": 654.1199951171875, "y1": 415.79998779296875, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 654.8400268554688, "y0": 343.44000244140625, "x1": 705.239990234375, "y1": 415.79998779296875, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 135.72000122070312, "y0": 301.67999267578125, "x1": 246.24000549316406, "y1": 333.0, "width": 110.52000427246094, "height": 31.32000732421875}, {"x0": 246.9600067138672, "y0": 322.9200134277344, "x1": 297.0, "y1": 333.0, "width": 50.03999328613281, "height": 10.079986572265625}, {"x0": 297.7200012207031, "y0": 322.9200134277344, "x1": 348.1199951171875, "y1": 333.0, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 348.8399963378906, "y0": 322.9200134277344, "x1": 399.239990234375, "y1": 333.0, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 399.9599914550781, "y0": 322.9200134277344, "x1": 450.0, "y1": 333.0, "width": 50.040008544921875, "height": 10.079986572265625}, {"x0": 450.7200012207031, "y0": 322.9200134277344, "x1": 501.1199951171875, "y1": 333.0, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 501.8399963378906, "y0": 322.9200134277344, "x1": 552.239990234375, "y1": 333.0, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 552.9600219726562, "y0": 322.9200134277344, "x1": 603.0, "y1": 333.0, "width": 50.03997802734375, "height": 10.079986572265625}, {"x0": 603.719970703125, "y0": 322.9200134277344, "x1": 654.1199951171875, "y1": 333.0, "width": 50.4000244140625, "height": 10.079986572265625}, {"x0": 654.8400268554688, "y0": 322.9200134277344, "x1": 705.239990234375, "y1": 333.0, "width": 50.39996337890625, "height": 10.079986572265625}, {"x0": 705.9600219726562, "y0": 322.9200134277344, "x1": 756.0, "y1": 333.0, "width": 50.03997802734375, "height": 10.079986572265625}, {"x0": 246.9600067138672, "y0": 301.67999267578125, "x1": 297.0, "y1": 322.20001220703125, "width": 50.03999328613281, "height": 20.52001953125}, {"x0": 297.7200012207031, "y0": 301.67999267578125, "x1": 348.1199951171875, "y1": 322.20001220703125, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 348.8399963378906, "y0": 301.67999267578125, "x1": 399.239990234375, "y1": 322.20001220703125, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 399.9599914550781, "y0": 301.67999267578125, "x1": 450.0, "y1": 322.20001220703125, "width": 50.040008544921875, "height": 20.52001953125}, {"x0": 450.7200012207031, "y0": 301.67999267578125, "x1": 501.1199951171875, "y1": 322.20001220703125, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 501.8399963378906, "y0": 301.67999267578125, "x1": 552.239990234375, "y1": 322.20001220703125, "width": 50.399993896484375, "height": 20.52001953125}, {"x0": 552.9600219726562, "y0": 301.67999267578125, "x1": 603.0, "y1": 322.20001220703125, "width": 50.03997802734375, "height": 20.52001953125}, {"x0": 603.719970703125, "y0": 301.67999267578125, "x1": 654.1199951171875, "y1": 322.20001220703125, "width": 50.4000244140625, "height": 20.52001953125}, {"x0": 654.8400268554688, "y0": 301.67999267578125, "x1": 705.239990234375, "y1": 322.20001220703125, "width": 50.39996337890625, "height": 20.52001953125}, {"x0": 705.9600219726562, "y0": 301.67999267578125, "x1": 756.0, "y1": 322.20001220703125, "width": 50.03997802734375, "height": 20.52001953125}, {"x0": 135.72000122070312, "y0": 228.60000610351562, "x1": 246.24000549316406, "y1": 300.9599914550781, "width": 110.52000427246094, "height": 72.3599853515625}, {"x0": 246.9600067138672, "y0": 228.60000610351562, "x1": 297.0, "y1": 300.9599914550781, "width": 50.03999328613281, "height": 72.3599853515625}, {"x0": 297.7200012207031, "y0": 228.60000610351562, "x1": 348.1199951171875, "y1": 300.9599914550781, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 348.8399963378906, "y0": 228.60000610351562, "x1": 399.239990234375, "y1": 300.9599914550781, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 399.9599914550781, "y0": 228.60000610351562, "x1": 450.0, "y1": 300.9599914550781, "width": 50.040008544921875, "height": 72.3599853515625}, {"x0": 450.7200012207031, "y0": 228.60000610351562, "x1": 501.1199951171875, "y1": 300.9599914550781, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 501.8399963378906, "y0": 228.60000610351562, "x1": 552.239990234375, "y1": 300.9599914550781, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 552.9600219726562, "y0": 228.60000610351562, "x1": 603.0, "y1": 300.9599914550781, "width": 50.03997802734375, "height": 72.3599853515625}, {"x0": 603.719970703125, "y0": 228.60000610351562, "x1": 654.1199951171875, "y1": 300.9599914550781, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 654.8400268554688, "y0": 228.60000610351562, "x1": 705.239990234375, "y1": 300.9599914550781, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 705.9600219726562, "y0": 228.60000610351562, "x1": 756.0, "y1": 300.9599914550781, "width": 50.03997802734375, "height": 72.3599853515625}]}, {"pageInfo": {"number": 81, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 157.67999267578125, "y0": 416.52001953125, "x1": 302.0400085449219, "y1": 447.8399963378906, "width": 144.36001586914062, "height": 31.319976806640625}, {"x0": 302.760009765625, "y0": 437.760009765625, "x1": 356.0400085449219, "y1": 447.8399963378906, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 356.760009765625, "y0": 437.760009765625, "x1": 410.0400085449219, "y1": 447.8399963378906, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 410.760009765625, "y0": 437.760009765625, "x1": 464.0400085449219, "y1": 447.8399963378906, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 464.760009765625, "y0": 437.760009765625, "x1": 518.0399780273438, "y1": 447.8399963378906, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 518.760009765625, "y0": 437.760009765625, "x1": 572.0399780273438, "y1": 447.8399963378906, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 572.760009765625, "y0": 437.760009765625, "x1": 626.0399780273438, "y1": 447.8399963378906, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 626.760009765625, "y0": 437.760009765625, "x1": 680.0399780273438, "y1": 447.8399963378906, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 680.760009765625, "y0": 437.760009765625, "x1": 734.0399780273438, "y1": 447.8399963378906, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 302.760009765625, "y0": 416.52001953125, "x1": 356.0400085449219, "y1": 437.0400085449219, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 356.760009765625, "y0": 416.52001953125, "x1": 410.0400085449219, "y1": 437.0400085449219, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 410.760009765625, "y0": 416.52001953125, "x1": 464.0400085449219, "y1": 437.0400085449219, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 464.760009765625, "y0": 416.52001953125, "x1": 518.0399780273438, "y1": 437.0400085449219, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 518.760009765625, "y0": 416.52001953125, "x1": 572.0399780273438, "y1": 437.0400085449219, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 572.760009765625, "y0": 416.52001953125, "x1": 626.0399780273438, "y1": 437.0400085449219, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 626.760009765625, "y0": 416.52001953125, "x1": 680.0399780273438, "y1": 437.0400085449219, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 680.760009765625, "y0": 416.52001953125, "x1": 734.0399780273438, "y1": 437.0400085449219, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 157.67999267578125, "y0": 208.79998779296875, "x1": 302.0400085449219, "y1": 415.79998779296875, "width": 144.36001586914062, "height": 207.0}, {"x0": 302.760009765625, "y0": 208.79998779296875, "x1": 356.0400085449219, "y1": 415.79998779296875, "width": 53.279998779296875, "height": 207.0}, {"x0": 356.760009765625, "y0": 208.79998779296875, "x1": 410.0400085449219, "y1": 415.79998779296875, "width": 53.279998779296875, "height": 207.0}, {"x0": 410.760009765625, "y0": 208.79998779296875, "x1": 464.0400085449219, "y1": 415.79998779296875, "width": 53.279998779296875, "height": 207.0}, {"x0": 464.760009765625, "y0": 208.79998779296875, "x1": 518.0399780273438, "y1": 415.79998779296875, "width": 53.27996826171875, "height": 207.0}, {"x0": 518.760009765625, "y0": 208.79998779296875, "x1": 572.0399780273438, "y1": 415.79998779296875, "width": 53.27996826171875, "height": 207.0}, {"x0": 572.760009765625, "y0": 208.79998779296875, "x1": 626.0399780273438, "y1": 415.79998779296875, "width": 53.27996826171875, "height": 207.0}, {"x0": 626.760009765625, "y0": 208.79998779296875, "x1": 680.0399780273438, "y1": 415.79998779296875, "width": 53.27996826171875, "height": 207.0}, {"x0": 680.760009765625, "y0": 208.79998779296875, "x1": 734.0399780273438, "y1": 415.79998779296875, "width": 53.27996826171875, "height": 207.0}]}, {"pageInfo": {"number": 82, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.4000015258789, "y0": 473.3999938964844, "x1": 266.760009765625, "y1": 504.7200012207031, "width": 144.3600082397461, "height": 31.32000732421875}, {"x0": 267.4800109863281, "y0": 494.6400146484375, "x1": 320.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 321.4800109863281, "y0": 494.6400146484375, "x1": 374.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 375.4800109863281, "y0": 494.6400146484375, "x1": 428.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 429.4800109863281, "y0": 494.6400146484375, "x1": 482.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 483.4800109863281, "y0": 494.6400146484375, "x1": 536.760009765625, "y1": 504.7200012207031, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 537.47998046875, "y0": 494.6400146484375, "x1": 590.760009765625, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 591.47998046875, "y0": 494.6400146484375, "x1": 644.760009765625, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 645.47998046875, "y0": 494.6400146484375, "x1": 698.760009765625, "y1": 504.7200012207031, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 699.47998046875, "y0": 494.6400146484375, "x1": 734.0399780273438, "y1": 504.7200012207031, "width": 34.55999755859375, "height": 10.079986572265625}, {"x0": 734.760009765625, "y0": 494.6400146484375, "x1": 769.6799926757812, "y1": 504.7200012207031, "width": 34.91998291015625, "height": 10.079986572265625}, {"x0": 267.4800109863281, "y0": 473.3999938964844, "x1": 320.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 321.4800109863281, "y0": 473.3999938964844, "x1": 374.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 375.4800109863281, "y0": 473.3999938964844, "x1": 428.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 429.4800109863281, "y0": 473.3999938964844, "x1": 482.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 483.4800109863281, "y0": 473.3999938964844, "x1": 536.760009765625, "y1": 493.9200134277344, "width": 53.279998779296875, "height": 20.52001953125}, {"x0": 537.47998046875, "y0": 473.3999938964844, "x1": 590.760009765625, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 591.47998046875, "y0": 473.3999938964844, "x1": 644.760009765625, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 645.47998046875, "y0": 473.3999938964844, "x1": 698.760009765625, "y1": 493.9200134277344, "width": 53.280029296875, "height": 20.52001953125}, {"x0": 699.47998046875, "y0": 473.3999938964844, "x1": 734.0399780273438, "y1": 493.9200134277344, "width": 34.55999755859375, "height": 20.52001953125}, {"x0": 734.760009765625, "y0": 473.3999938964844, "x1": 769.6799926757812, "y1": 493.9200134277344, "width": 34.91998291015625, "height": 20.52001953125}, {"x0": 122.4000015258789, "y0": 265.67999267578125, "x1": 266.760009765625, "y1": 472.67999267578125, "width": 144.3600082397461, "height": 207.0}, {"x0": 267.4800109863281, "y0": 265.67999267578125, "x1": 320.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 207.0}, {"x0": 321.4800109863281, "y0": 265.67999267578125, "x1": 374.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 207.0}, {"x0": 375.4800109863281, "y0": 265.67999267578125, "x1": 428.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 207.0}, {"x0": 429.4800109863281, "y0": 265.67999267578125, "x1": 482.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 207.0}, {"x0": 483.4800109863281, "y0": 265.67999267578125, "x1": 536.760009765625, "y1": 472.67999267578125, "width": 53.279998779296875, "height": 207.0}, {"x0": 537.47998046875, "y0": 265.67999267578125, "x1": 590.760009765625, "y1": 472.67999267578125, "width": 53.280029296875, "height": 207.0}, {"x0": 591.47998046875, "y0": 265.67999267578125, "x1": 644.760009765625, "y1": 472.67999267578125, "width": 53.280029296875, "height": 207.0}, {"x0": 645.47998046875, "y0": 265.67999267578125, "x1": 698.760009765625, "y1": 472.67999267578125, "width": 53.280029296875, "height": 207.0}, {"x0": 699.47998046875, "y0": 265.67999267578125, "x1": 734.0399780273438, "y1": 472.67999267578125, "width": 34.55999755859375, "height": 207.0}, {"x0": 734.760009765625, "y0": 265.67999267578125, "x1": 769.6799926757812, "y1": 472.67999267578125, "width": 34.91998291015625, "height": 207.0}]}, {"pageInfo": {"number": 83, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 121.31999969482422, "y0": 428.4000244140625, "x1": 240.83999633789062, "y1": 462.6000061035156, "width": 119.5199966430664, "height": 34.199981689453125}, {"x0": 241.55999755859375, "y0": 451.44000244140625, "x1": 564.8400268554688, "y1": 462.6000061035156, "width": 323.280029296875, "height": 11.160003662109375}, {"x0": 565.5599975585938, "y0": 451.44000244140625, "x1": 672.8400268554688, "y1": 462.6000061035156, "width": 107.280029296875, "height": 11.160003662109375}, {"x0": 673.5599975585938, "y0": 428.4000244140625, "x1": 721.0800170898438, "y1": 462.6000061035156, "width": 47.52001953125, "height": 34.199981689453125}, {"x0": 721.7999877929688, "y0": 428.4000244140625, "x1": 770.760009765625, "y1": 462.6000061035156, "width": 48.96002197265625, "height": 34.199981689453125}, {"x0": 241.55999755859375, "y0": 428.4000244140625, "x1": 294.8399963378906, "y1": 451.08001708984375, "width": 53.279998779296875, "height": 22.67999267578125}, {"x0": 295.55999755859375, "y0": 428.4000244140625, "x1": 348.8399963378906, "y1": 451.08001708984375, "width": 53.279998779296875, "height": 22.67999267578125}, {"x0": 349.55999755859375, "y0": 428.4000244140625, "x1": 402.8399963378906, "y1": 451.08001708984375, "width": 53.279998779296875, "height": 22.67999267578125}, {"x0": 403.55999755859375, "y0": 428.4000244140625, "x1": 456.8399963378906, "y1": 451.08001708984375, "width": 53.279998779296875, "height": 22.67999267578125}, {"x0": 457.55999755859375, "y0": 428.4000244140625, "x1": 510.8399963378906, "y1": 451.08001708984375, "width": 53.279998779296875, "height": 22.67999267578125}, {"x0": 565.5599975585938, "y0": 428.4000244140625, "x1": 618.8400268554688, "y1": 451.08001708984375, "width": 53.280029296875, "height": 22.67999267578125}, {"x0": 619.5599975585938, "y0": 428.4000244140625, "x1": 672.8400268554688, "y1": 451.08001708984375, "width": 53.280029296875, "height": 22.67999267578125}, {"x0": 511.55999755859375, "y0": 428.4000244140625, "x1": 564.8400268554688, "y1": 450.7200012207031, "width": 53.280029296875, "height": 22.319976806640625}, {"x0": 121.31999969482422, "y0": 235.08001708984375, "x1": 240.83999633789062, "y1": 427.67999267578125, "width": 119.5199966430664, "height": 192.5999755859375}, {"x0": 241.55999755859375, "y0": 235.08001708984375, "x1": 294.8399963378906, "y1": 427.67999267578125, "width": 53.279998779296875, "height": 192.5999755859375}, {"x0": 295.55999755859375, "y0": 235.08001708984375, "x1": 348.8399963378906, "y1": 427.67999267578125, "width": 53.279998779296875, "height": 192.5999755859375}, {"x0": 349.55999755859375, "y0": 235.08001708984375, "x1": 402.8399963378906, "y1": 427.67999267578125, "width": 53.279998779296875, "height": 192.5999755859375}, {"x0": 403.55999755859375, "y0": 235.08001708984375, "x1": 456.8399963378906, "y1": 427.67999267578125, "width": 53.279998779296875, "height": 192.5999755859375}, {"x0": 457.55999755859375, "y0": 235.08001708984375, "x1": 510.8399963378906, "y1": 427.67999267578125, "width": 53.279998779296875, "height": 192.5999755859375}, {"x0": 511.55999755859375, "y0": 235.08001708984375, "x1": 564.8400268554688, "y1": 427.67999267578125, "width": 53.280029296875, "height": 192.5999755859375}, {"x0": 565.5599975585938, "y0": 235.08001708984375, "x1": 618.8400268554688, "y1": 427.67999267578125, "width": 53.280029296875, "height": 192.5999755859375}, {"x0": 619.5599975585938, "y0": 235.08001708984375, "x1": 672.8400268554688, "y1": 427.67999267578125, "width": 53.280029296875, "height": 192.5999755859375}, {"x0": 673.5599975585938, "y0": 235.08001708984375, "x1": 721.0800170898438, "y1": 427.67999267578125, "width": 47.52001953125, "height": 192.5999755859375}, {"x0": 721.7999877929688, "y0": 235.08001708984375, "x1": 770.760009765625, "y1": 427.67999267578125, "width": 48.96002197265625, "height": 192.5999755859375}, {"x0": 121.31999969482422, "y0": 223.20001220703125, "x1": 240.83999633789062, "y1": 234.36001586914062, "width": 119.5199966430664, "height": 11.160003662109375}, {"x0": 241.55999755859375, "y0": 223.20001220703125, "x1": 294.8399963378906, "y1": 234.36001586914062, "width": 53.279998779296875, "height": 11.160003662109375}, {"x0": 295.55999755859375, "y0": 223.20001220703125, "x1": 348.8399963378906, "y1": 234.36001586914062, "width": 53.279998779296875, "height": 11.160003662109375}, {"x0": 349.55999755859375, "y0": 223.20001220703125, "x1": 402.8399963378906, "y1": 234.36001586914062, "width": 53.279998779296875, "height": 11.160003662109375}, {"x0": 403.55999755859375, "y0": 223.20001220703125, "x1": 456.8399963378906, "y1": 234.36001586914062, "width": 53.279998779296875, "height": 11.160003662109375}, {"x0": 457.55999755859375, "y0": 223.20001220703125, "x1": 510.8399963378906, "y1": 234.36001586914062, "width": 53.279998779296875, "height": 11.160003662109375}, {"x0": 511.55999755859375, "y0": 223.20001220703125, "x1": 564.8400268554688, "y1": 234.36001586914062, "width": 53.280029296875, "height": 11.160003662109375}, {"x0": 565.5599975585938, "y0": 223.20001220703125, "x1": 618.8400268554688, "y1": 234.36001586914062, "width": 53.280029296875, "height": 11.160003662109375}, {"x0": 619.5599975585938, "y0": 223.20001220703125, "x1": 672.8400268554688, "y1": 234.36001586914062, "width": 53.280029296875, "height": 11.160003662109375}, {"x0": 673.5599975585938, "y0": 223.20001220703125, "x1": 721.0800170898438, "y1": 234.36001586914062, "width": 47.52001953125, "height": 11.160003662109375}, {"x0": 721.7999877929688, "y0": 223.20001220703125, "x1": 770.760009765625, "y1": 234.36001586914062, "width": 48.96002197265625, "height": 11.160003662109375}]}, {"pageInfo": {"number": 84, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.4000015258789, "y0": 413.2799987792969, "x1": 232.9199981689453, "y1": 447.8399963378906, "width": 110.5199966430664, "height": 34.55999755859375}, {"x0": 233.63999938964844, "y0": 436.67999267578125, "x1": 640.7999877929688, "y1": 447.8399963378906, "width": 407.1599884033203, "height": 11.160003662109375}, {"x0": 641.52001953125, "y0": 413.2799987792969, "x1": 691.9199829101562, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 34.55999755859375}, {"x0": 692.6400146484375, "y0": 413.2799987792969, "x1": 743.0399780273438, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 34.55999755859375}, {"x0": 233.63999938964844, "y0": 413.2799987792969, "x1": 284.0400085449219, "y1": 435.96002197265625, "width": 50.40000915527344, "height": 22.680023193359375}, {"x0": 284.3999938964844, "y0": 413.2799987792969, "x1": 334.79998779296875, "y1": 435.96002197265625, "width": 50.399993896484375, "height": 22.680023193359375}, {"x0": 335.5199890136719, "y0": 413.2799987792969, "x1": 385.9200134277344, "y1": 435.96002197265625, "width": 50.4000244140625, "height": 22.680023193359375}, {"x0": 386.6400146484375, "y0": 413.2799987792969, "x1": 437.0400085449219, "y1": 435.96002197265625, "width": 50.399993896484375, "height": 22.680023193359375}, {"x0": 437.3999938964844, "y0": 413.2799987792969, "x1": 487.79998779296875, "y1": 435.96002197265625, "width": 50.399993896484375, "height": 22.680023193359375}, {"x0": 488.5199890136719, "y0": 413.2799987792969, "x1": 538.9199829101562, "y1": 435.96002197265625, "width": 50.399993896484375, "height": 22.680023193359375}, {"x0": 539.6400146484375, "y0": 413.6400146484375, "x1": 590.0399780273438, "y1": 435.96002197265625, "width": 50.39996337890625, "height": 22.32000732421875}, {"x0": 590.4000244140625, "y0": 413.2799987792969, "x1": 640.7999877929688, "y1": 435.96002197265625, "width": 50.39996337890625, "height": 22.680023193359375}, {"x0": 122.4000015258789, "y0": 333.3600158691406, "x1": 232.9199981689453, "y1": 412.91998291015625, "width": 110.5199966430664, "height": 79.55996704101562}, {"x0": 233.63999938964844, "y0": 333.3600158691406, "x1": 284.0400085449219, "y1": 412.91998291015625, "width": 50.40000915527344, "height": 79.55996704101562}, {"x0": 284.3999938964844, "y0": 333.3600158691406, "x1": 334.79998779296875, "y1": 412.91998291015625, "width": 50.399993896484375, "height": 79.55996704101562}, {"x0": 335.5199890136719, "y0": 333.3600158691406, "x1": 385.9200134277344, "y1": 412.91998291015625, "width": 50.4000244140625, "height": 79.55996704101562}, {"x0": 386.6400146484375, "y0": 333.3600158691406, "x1": 437.0400085449219, "y1": 412.91998291015625, "width": 50.399993896484375, "height": 79.55996704101562}, {"x0": 437.3999938964844, "y0": 333.3600158691406, "x1": 487.79998779296875, "y1": 412.91998291015625, "width": 50.399993896484375, "height": 79.55996704101562}, {"x0": 488.5199890136719, "y0": 333.3600158691406, "x1": 538.9199829101562, "y1": 412.91998291015625, "width": 50.399993896484375, "height": 79.55996704101562}, {"x0": 590.4000244140625, "y0": 333.3600158691406, "x1": 640.7999877929688, "y1": 412.91998291015625, "width": 50.39996337890625, "height": 79.55996704101562}, {"x0": 641.52001953125, "y0": 333.3600158691406, "x1": 691.9199829101562, "y1": 412.91998291015625, "width": 50.39996337890625, "height": 79.55996704101562}, {"x0": 692.6400146484375, "y0": 333.3600158691406, "x1": 743.0399780273438, "y1": 412.91998291015625, "width": 50.39996337890625, "height": 79.55996704101562}, {"x0": 539.6400146484375, "y0": 333.3600158691406, "x1": 590.0399780273438, "y1": 412.55999755859375, "width": 50.39996337890625, "height": 79.19998168945312}]}, {"pageInfo": {"number": 85, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 121.31999969482422, "y0": 431.2799987792969, "x1": 240.83999633789062, "y1": 462.6000061035156, "width": 119.5199966430664, "height": 31.32000732421875}, {"x0": 241.55999755859375, "y0": 452.52001953125, "x1": 294.8399963378906, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 295.55999755859375, "y0": 452.52001953125, "x1": 348.8399963378906, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 349.55999755859375, "y0": 452.52001953125, "x1": 402.8399963378906, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 403.55999755859375, "y0": 452.52001953125, "x1": 456.8399963378906, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 457.55999755859375, "y0": 452.52001953125, "x1": 510.8399963378906, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 511.55999755859375, "y0": 452.52001953125, "x1": 564.8400268554688, "y1": 462.6000061035156, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 565.5599975585938, "y0": 452.52001953125, "x1": 618.8400268554688, "y1": 462.6000061035156, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 619.5599975585938, "y0": 452.52001953125, "x1": 672.8400268554688, "y1": 462.6000061035156, "width": 53.280029296875, "height": 10.079986572265625}, {"x0": 673.5599975585938, "y0": 431.2799987792969, "x1": 721.0800170898438, "y1": 462.6000061035156, "width": 47.52001953125, "height": 31.32000732421875}, {"x0": 721.7999877929688, "y0": 431.2799987792969, "x1": 770.760009765625, "y1": 462.6000061035156, "width": 48.96002197265625, "height": 31.32000732421875}, {"x0": 241.55999755859375, "y0": 431.2799987792969, "x1": 294.8399963378906, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 295.55999755859375, "y0": 431.2799987792969, "x1": 348.8399963378906, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 349.55999755859375, "y0": 431.2799987792969, "x1": 402.8399963378906, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 403.55999755859375, "y0": 431.2799987792969, "x1": 456.8399963378906, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 457.55999755859375, "y0": 431.2799987792969, "x1": 510.8399963378906, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 511.55999755859375, "y0": 431.2799987792969, "x1": 564.8400268554688, "y1": 451.79998779296875, "width": 53.280029296875, "height": 20.519989013671875}, {"x0": 565.5599975585938, "y0": 431.2799987792969, "x1": 618.8400268554688, "y1": 451.79998779296875, "width": 53.280029296875, "height": 20.519989013671875}, {"x0": 619.5599975585938, "y0": 431.2799987792969, "x1": 672.8400268554688, "y1": 451.79998779296875, "width": 53.280029296875, "height": 20.519989013671875}, {"x0": 121.31999969482422, "y0": 244.44000244140625, "x1": 240.83999633789062, "y1": 430.55999755859375, "width": 119.5199966430664, "height": 186.1199951171875}, {"x0": 241.55999755859375, "y0": 244.44000244140625, "x1": 294.8399963378906, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 186.1199951171875}, {"x0": 295.55999755859375, "y0": 244.44000244140625, "x1": 348.8399963378906, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 186.1199951171875}, {"x0": 349.55999755859375, "y0": 244.44000244140625, "x1": 402.8399963378906, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 186.1199951171875}, {"x0": 403.55999755859375, "y0": 244.44000244140625, "x1": 456.8399963378906, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 186.1199951171875}, {"x0": 457.55999755859375, "y0": 244.44000244140625, "x1": 510.8399963378906, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 186.1199951171875}, {"x0": 511.55999755859375, "y0": 244.44000244140625, "x1": 564.8400268554688, "y1": 430.55999755859375, "width": 53.280029296875, "height": 186.1199951171875}, {"x0": 565.5599975585938, "y0": 244.44000244140625, "x1": 618.8400268554688, "y1": 430.55999755859375, "width": 53.280029296875, "height": 186.1199951171875}, {"x0": 619.5599975585938, "y0": 244.44000244140625, "x1": 672.8400268554688, "y1": 430.55999755859375, "width": 53.280029296875, "height": 186.1199951171875}, {"x0": 673.5599975585938, "y0": 244.44000244140625, "x1": 721.0800170898438, "y1": 430.55999755859375, "width": 47.52001953125, "height": 186.1199951171875}, {"x0": 721.7999877929688, "y0": 244.44000244140625, "x1": 770.760009765625, "y1": 430.55999755859375, "width": 48.96002197265625, "height": 186.1199951171875}, {"x0": 121.31999969482422, "y0": 233.6400146484375, "x1": 240.83999633789062, "y1": 244.08001708984375, "width": 119.5199966430664, "height": 10.44000244140625}, {"x0": 241.55999755859375, "y0": 233.6400146484375, "x1": 294.8399963378906, "y1": 244.08001708984375, "width": 53.279998779296875, "height": 10.44000244140625}, {"x0": 295.55999755859375, "y0": 233.6400146484375, "x1": 348.8399963378906, "y1": 244.08001708984375, "width": 53.279998779296875, "height": 10.44000244140625}, {"x0": 349.55999755859375, "y0": 233.6400146484375, "x1": 402.8399963378906, "y1": 244.08001708984375, "width": 53.279998779296875, "height": 10.44000244140625}, {"x0": 403.55999755859375, "y0": 233.6400146484375, "x1": 456.8399963378906, "y1": 244.08001708984375, "width": 53.279998779296875, "height": 10.44000244140625}, {"x0": 457.55999755859375, "y0": 233.6400146484375, "x1": 510.8399963378906, "y1": 244.08001708984375, "width": 53.279998779296875, "height": 10.44000244140625}, {"x0": 511.55999755859375, "y0": 233.6400146484375, "x1": 564.8400268554688, "y1": 244.08001708984375, "width": 53.280029296875, "height": 10.44000244140625}, {"x0": 565.5599975585938, "y0": 233.6400146484375, "x1": 618.8400268554688, "y1": 244.08001708984375, "width": 53.280029296875, "height": 10.44000244140625}, {"x0": 619.5599975585938, "y0": 233.6400146484375, "x1": 672.8400268554688, "y1": 244.08001708984375, "width": 53.280029296875, "height": 10.44000244140625}, {"x0": 673.5599975585938, "y0": 233.6400146484375, "x1": 721.0800170898438, "y1": 244.08001708984375, "width": 47.52001953125, "height": 10.44000244140625}, {"x0": 721.7999877929688, "y0": 233.6400146484375, "x1": 770.760009765625, "y1": 244.08001708984375, "width": 48.96002197265625, "height": 10.44000244140625}]}, {"pageInfo": {"number": 86, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.4000015258789, "y0": 412.91998291015625, "x1": 232.9199981689453, "y1": 447.8399963378906, "width": 110.5199966430664, "height": 34.920013427734375}, {"x0": 233.63999938964844, "y0": 436.67999267578125, "x1": 640.7999877929688, "y1": 447.8399963378906, "width": 407.1599884033203, "height": 11.160003662109375}, {"x0": 641.52001953125, "y0": 412.91998291015625, "x1": 691.9199829101562, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 34.920013427734375}, {"x0": 692.6400146484375, "y0": 412.91998291015625, "x1": 743.0399780273438, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 34.920013427734375}, {"x0": 233.63999938964844, "y0": 412.91998291015625, "x1": 284.0400085449219, "y1": 435.96002197265625, "width": 50.40000915527344, "height": 23.0400390625}, {"x0": 284.3999938964844, "y0": 412.91998291015625, "x1": 334.79998779296875, "y1": 435.96002197265625, "width": 50.399993896484375, "height": 23.0400390625}, {"x0": 335.5199890136719, "y0": 412.91998291015625, "x1": 385.9200134277344, "y1": 435.96002197265625, "width": 50.4000244140625, "height": 23.0400390625}, {"x0": 386.6400146484375, "y0": 412.91998291015625, "x1": 437.0400085449219, "y1": 435.96002197265625, "width": 50.399993896484375, "height": 23.0400390625}, {"x0": 437.3999938964844, "y0": 412.91998291015625, "x1": 487.79998779296875, "y1": 435.96002197265625, "width": 50.399993896484375, "height": 23.0400390625}, {"x0": 488.5199890136719, "y0": 412.91998291015625, "x1": 538.9199829101562, "y1": 435.96002197265625, "width": 50.399993896484375, "height": 23.0400390625}, {"x0": 539.6400146484375, "y0": 412.91998291015625, "x1": 590.0399780273438, "y1": 435.96002197265625, "width": 50.39996337890625, "height": 23.0400390625}, {"x0": 590.4000244140625, "y0": 412.91998291015625, "x1": 640.7999877929688, "y1": 435.96002197265625, "width": 50.39996337890625, "height": 23.0400390625}, {"x0": 122.4000015258789, "y0": 333.0, "x1": 232.9199981689453, "y1": 412.20001220703125, "width": 110.5199966430664, "height": 79.20001220703125}, {"x0": 233.63999938964844, "y0": 333.0, "x1": 284.0400085449219, "y1": 412.20001220703125, "width": 50.40000915527344, "height": 79.20001220703125}, {"x0": 284.3999938964844, "y0": 333.0, "x1": 334.79998779296875, "y1": 412.20001220703125, "width": 50.399993896484375, "height": 79.20001220703125}, {"x0": 335.5199890136719, "y0": 333.0, "x1": 385.9200134277344, "y1": 412.20001220703125, "width": 50.4000244140625, "height": 79.20001220703125}, {"x0": 386.6400146484375, "y0": 333.0, "x1": 437.0400085449219, "y1": 412.20001220703125, "width": 50.399993896484375, "height": 79.20001220703125}, {"x0": 437.3999938964844, "y0": 333.0, "x1": 487.79998779296875, "y1": 412.20001220703125, "width": 50.399993896484375, "height": 79.20001220703125}, {"x0": 488.5199890136719, "y0": 333.0, "x1": 538.9199829101562, "y1": 412.20001220703125, "width": 50.399993896484375, "height": 79.20001220703125}, {"x0": 539.6400146484375, "y0": 333.0, "x1": 590.0399780273438, "y1": 412.20001220703125, "width": 50.39996337890625, "height": 79.20001220703125}, {"x0": 590.4000244140625, "y0": 333.0, "x1": 640.7999877929688, "y1": 412.20001220703125, "width": 50.39996337890625, "height": 79.20001220703125}, {"x0": 641.52001953125, "y0": 333.0, "x1": 691.9199829101562, "y1": 412.20001220703125, "width": 50.39996337890625, "height": 79.20001220703125}, {"x0": 692.6400146484375, "y0": 333.0, "x1": 743.0399780273438, "y1": 412.20001220703125, "width": 50.39996337890625, "height": 79.20001220703125}]}, {"pageInfo": {"number": 87, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.76000213623047, "y0": 413.2799987792969, "x1": 235.0800018310547, "y1": 447.8399963378906, "width": 112.31999969482422, "height": 34.55999755859375}, {"x0": 235.8000030517578, "y0": 436.67999267578125, "x1": 667.0800170898438, "y1": 447.8399963378906, "width": 431.28001403808594, "height": 11.160003662109375}, {"x0": 667.7999877929688, "y0": 413.2799987792969, "x1": 715.3200073242188, "y1": 447.8399963378906, "width": 47.52001953125, "height": 34.55999755859375}, {"x0": 716.0399780273438, "y0": 413.2799987792969, "x1": 769.3200073242188, "y1": 447.8399963378906, "width": 53.280029296875, "height": 34.55999755859375}, {"x0": 235.8000030517578, "y0": 413.2799987792969, "x1": 289.0799865722656, "y1": 435.96002197265625, "width": 53.27998352050781, "height": 22.680023193359375}, {"x0": 289.79998779296875, "y0": 413.2799987792969, "x1": 343.0799865722656, "y1": 435.96002197265625, "width": 53.279998779296875, "height": 22.680023193359375}, {"x0": 343.79998779296875, "y0": 413.2799987792969, "x1": 397.0799865722656, "y1": 435.96002197265625, "width": 53.279998779296875, "height": 22.680023193359375}, {"x0": 397.79998779296875, "y0": 413.2799987792969, "x1": 451.0799865722656, "y1": 435.96002197265625, "width": 53.279998779296875, "height": 22.680023193359375}, {"x0": 451.79998779296875, "y0": 413.2799987792969, "x1": 505.0799865722656, "y1": 435.96002197265625, "width": 53.279998779296875, "height": 22.680023193359375}, {"x0": 505.79998779296875, "y0": 413.2799987792969, "x1": 559.0800170898438, "y1": 435.96002197265625, "width": 53.280029296875, "height": 22.680023193359375}, {"x0": 559.7999877929688, "y0": 413.2799987792969, "x1": 613.0800170898438, "y1": 435.96002197265625, "width": 53.280029296875, "height": 22.680023193359375}, {"x0": 613.7999877929688, "y0": 413.2799987792969, "x1": 667.0800170898438, "y1": 435.96002197265625, "width": 53.280029296875, "height": 22.680023193359375}, {"x0": 122.76000213623047, "y0": 185.760009765625, "x1": 235.0800018310547, "y1": 412.91998291015625, "width": 112.31999969482422, "height": 227.15997314453125}, {"x0": 235.8000030517578, "y0": 185.760009765625, "x1": 289.0799865722656, "y1": 412.91998291015625, "width": 53.27998352050781, "height": 227.15997314453125}, {"x0": 289.79998779296875, "y0": 185.760009765625, "x1": 343.0799865722656, "y1": 412.91998291015625, "width": 53.279998779296875, "height": 227.15997314453125}, {"x0": 343.79998779296875, "y0": 185.760009765625, "x1": 397.0799865722656, "y1": 412.91998291015625, "width": 53.279998779296875, "height": 227.15997314453125}, {"x0": 397.79998779296875, "y0": 185.760009765625, "x1": 451.0799865722656, "y1": 412.91998291015625, "width": 53.279998779296875, "height": 227.15997314453125}, {"x0": 451.79998779296875, "y0": 185.760009765625, "x1": 505.0799865722656, "y1": 412.91998291015625, "width": 53.279998779296875, "height": 227.15997314453125}, {"x0": 505.79998779296875, "y0": 185.760009765625, "x1": 559.0800170898438, "y1": 412.91998291015625, "width": 53.280029296875, "height": 227.15997314453125}, {"x0": 559.7999877929688, "y0": 185.760009765625, "x1": 613.0800170898438, "y1": 412.91998291015625, "width": 53.280029296875, "height": 227.15997314453125}, {"x0": 613.7999877929688, "y0": 185.760009765625, "x1": 667.0800170898438, "y1": 412.91998291015625, "width": 53.280029296875, "height": 227.15997314453125}, {"x0": 667.7999877929688, "y0": 185.760009765625, "x1": 715.3200073242188, "y1": 412.91998291015625, "width": 47.52001953125, "height": 227.15997314453125}, {"x0": 716.0399780273438, "y0": 185.760009765625, "x1": 769.3200073242188, "y1": 412.91998291015625, "width": 53.280029296875, "height": 227.15997314453125}]}, {"pageInfo": {"number": 88, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.76000213623047, "y0": 428.4000244140625, "x1": 235.0800018310547, "y1": 462.6000061035156, "width": 112.31999969482422, "height": 34.199981689453125}, {"x0": 235.8000030517578, "y0": 451.44000244140625, "x1": 559.0800170898438, "y1": 462.6000061035156, "width": 323.28001403808594, "height": 11.160003662109375}, {"x0": 559.7999877929688, "y0": 451.44000244140625, "x1": 667.0800170898438, "y1": 462.6000061035156, "width": 107.280029296875, "height": 11.160003662109375}, {"x0": 667.7999877929688, "y0": 428.4000244140625, "x1": 721.0800170898438, "y1": 462.6000061035156, "width": 53.280029296875, "height": 34.199981689453125}, {"x0": 721.7999877929688, "y0": 428.4000244140625, "x1": 769.3200073242188, "y1": 462.6000061035156, "width": 47.52001953125, "height": 34.199981689453125}, {"x0": 235.8000030517578, "y0": 428.4000244140625, "x1": 289.0799865722656, "y1": 451.08001708984375, "width": 53.27998352050781, "height": 22.67999267578125}, {"x0": 289.79998779296875, "y0": 428.4000244140625, "x1": 343.0799865722656, "y1": 451.08001708984375, "width": 53.279998779296875, "height": 22.67999267578125}, {"x0": 343.79998779296875, "y0": 428.4000244140625, "x1": 397.0799865722656, "y1": 451.08001708984375, "width": 53.279998779296875, "height": 22.67999267578125}, {"x0": 397.79998779296875, "y0": 428.4000244140625, "x1": 451.0799865722656, "y1": 451.08001708984375, "width": 53.279998779296875, "height": 22.67999267578125}, {"x0": 451.79998779296875, "y0": 428.4000244140625, "x1": 505.0799865722656, "y1": 451.08001708984375, "width": 53.279998779296875, "height": 22.67999267578125}, {"x0": 559.7999877929688, "y0": 428.4000244140625, "x1": 613.0800170898438, "y1": 451.08001708984375, "width": 53.280029296875, "height": 22.67999267578125}, {"x0": 613.7999877929688, "y0": 428.4000244140625, "x1": 667.0800170898438, "y1": 451.08001708984375, "width": 53.280029296875, "height": 22.67999267578125}, {"x0": 505.79998779296875, "y0": 428.4000244140625, "x1": 559.0800170898438, "y1": 450.7200012207031, "width": 53.280029296875, "height": 22.319976806640625}, {"x0": 122.76000213623047, "y0": 223.55999755859375, "x1": 235.0800018310547, "y1": 427.67999267578125, "width": 112.31999969482422, "height": 204.1199951171875}, {"x0": 235.8000030517578, "y0": 223.55999755859375, "x1": 289.0799865722656, "y1": 427.67999267578125, "width": 53.27998352050781, "height": 204.1199951171875}, {"x0": 289.79998779296875, "y0": 223.55999755859375, "x1": 343.0799865722656, "y1": 427.67999267578125, "width": 53.279998779296875, "height": 204.1199951171875}, {"x0": 343.79998779296875, "y0": 223.55999755859375, "x1": 397.0799865722656, "y1": 427.67999267578125, "width": 53.279998779296875, "height": 204.1199951171875}, {"x0": 397.79998779296875, "y0": 223.55999755859375, "x1": 451.0799865722656, "y1": 427.67999267578125, "width": 53.279998779296875, "height": 204.1199951171875}, {"x0": 451.79998779296875, "y0": 223.55999755859375, "x1": 505.0799865722656, "y1": 427.67999267578125, "width": 53.279998779296875, "height": 204.1199951171875}, {"x0": 505.79998779296875, "y0": 223.55999755859375, "x1": 559.0800170898438, "y1": 427.67999267578125, "width": 53.280029296875, "height": 204.1199951171875}, {"x0": 559.7999877929688, "y0": 223.55999755859375, "x1": 613.0800170898438, "y1": 427.67999267578125, "width": 53.280029296875, "height": 204.1199951171875}, {"x0": 613.7999877929688, "y0": 223.55999755859375, "x1": 667.0800170898438, "y1": 427.67999267578125, "width": 53.280029296875, "height": 204.1199951171875}, {"x0": 667.7999877929688, "y0": 223.55999755859375, "x1": 721.0800170898438, "y1": 427.67999267578125, "width": 53.280029296875, "height": 204.1199951171875}, {"x0": 721.7999877929688, "y0": 223.55999755859375, "x1": 769.3200073242188, "y1": 427.67999267578125, "width": 47.52001953125, "height": 204.1199951171875}, {"x0": 122.76000213623047, "y0": 211.67999267578125, "x1": 235.0800018310547, "y1": 222.83999633789062, "width": 112.31999969482422, "height": 11.160003662109375}, {"x0": 235.8000030517578, "y0": 211.67999267578125, "x1": 289.0799865722656, "y1": 222.83999633789062, "width": 53.27998352050781, "height": 11.160003662109375}, {"x0": 289.79998779296875, "y0": 211.67999267578125, "x1": 343.0799865722656, "y1": 222.83999633789062, "width": 53.279998779296875, "height": 11.160003662109375}, {"x0": 343.79998779296875, "y0": 211.67999267578125, "x1": 397.0799865722656, "y1": 222.83999633789062, "width": 53.279998779296875, "height": 11.160003662109375}, {"x0": 397.79998779296875, "y0": 211.67999267578125, "x1": 451.0799865722656, "y1": 222.83999633789062, "width": 53.279998779296875, "height": 11.160003662109375}, {"x0": 451.79998779296875, "y0": 211.67999267578125, "x1": 505.0799865722656, "y1": 222.83999633789062, "width": 53.279998779296875, "height": 11.160003662109375}, {"x0": 505.79998779296875, "y0": 211.67999267578125, "x1": 559.0800170898438, "y1": 222.83999633789062, "width": 53.280029296875, "height": 11.160003662109375}, {"x0": 559.7999877929688, "y0": 211.67999267578125, "x1": 613.0800170898438, "y1": 222.83999633789062, "width": 53.280029296875, "height": 11.160003662109375}, {"x0": 613.7999877929688, "y0": 211.67999267578125, "x1": 667.0800170898438, "y1": 222.83999633789062, "width": 53.280029296875, "height": 11.160003662109375}, {"x0": 667.7999877929688, "y0": 211.67999267578125, "x1": 721.0800170898438, "y1": 222.83999633789062, "width": 53.280029296875, "height": 11.160003662109375}, {"x0": 721.7999877929688, "y0": 211.67999267578125, "x1": 769.3200073242188, "y1": 222.83999633789062, "width": 47.52001953125, "height": 11.160003662109375}]}, {"pageInfo": {"number": 89, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.4000015258789, "y0": 416.52001953125, "x1": 232.9199981689453, "y1": 447.8399963378906, "width": 110.5199966430664, "height": 31.319976806640625}, {"x0": 233.63999938964844, "y0": 437.760009765625, "x1": 284.0400085449219, "y1": 447.8399963378906, "width": 50.40000915527344, "height": 10.079986572265625}, {"x0": 284.3999938964844, "y0": 437.760009765625, "x1": 334.79998779296875, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 335.5199890136719, "y0": 437.760009765625, "x1": 385.9200134277344, "y1": 447.8399963378906, "width": 50.4000244140625, "height": 10.079986572265625}, {"x0": 386.6400146484375, "y0": 437.760009765625, "x1": 437.0400085449219, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 437.3999938964844, "y0": 437.760009765625, "x1": 487.79998779296875, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 488.5199890136719, "y0": 437.760009765625, "x1": 538.9199829101562, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 539.6400146484375, "y0": 437.760009765625, "x1": 590.0399780273438, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 10.079986572265625}, {"x0": 590.4000244140625, "y0": 437.760009765625, "x1": 640.7999877929688, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 10.079986572265625}, {"x0": 641.52001953125, "y0": 416.52001953125, "x1": 691.9199829101562, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 31.319976806640625}, {"x0": 692.6400146484375, "y0": 416.52001953125, "x1": 743.0399780273438, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 31.319976806640625}, {"x0": 233.63999938964844, "y0": 416.52001953125, "x1": 284.0400085449219, "y1": 437.0400085449219, "width": 50.40000915527344, "height": 20.519989013671875}, {"x0": 284.3999938964844, "y0": 416.52001953125, "x1": 334.79998779296875, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 335.5199890136719, "y0": 416.52001953125, "x1": 385.9200134277344, "y1": 437.0400085449219, "width": 50.4000244140625, "height": 20.519989013671875}, {"x0": 386.6400146484375, "y0": 416.52001953125, "x1": 437.0400085449219, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 437.3999938964844, "y0": 416.52001953125, "x1": 487.79998779296875, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 488.5199890136719, "y0": 416.52001953125, "x1": 538.9199829101562, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 20.519989013671875}, {"x0": 539.6400146484375, "y0": 416.52001953125, "x1": 590.0399780273438, "y1": 437.0400085449219, "width": 50.39996337890625, "height": 20.519989013671875}, {"x0": 590.4000244140625, "y0": 416.52001953125, "x1": 640.7999877929688, "y1": 437.0400085449219, "width": 50.39996337890625, "height": 20.519989013671875}, {"x0": 122.4000015258789, "y0": 343.44000244140625, "x1": 232.9199981689453, "y1": 415.79998779296875, "width": 110.5199966430664, "height": 72.3599853515625}, {"x0": 233.63999938964844, "y0": 343.44000244140625, "x1": 284.0400085449219, "y1": 415.79998779296875, "width": 50.40000915527344, "height": 72.3599853515625}, {"x0": 284.3999938964844, "y0": 343.44000244140625, "x1": 334.79998779296875, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 335.5199890136719, "y0": 343.44000244140625, "x1": 385.9200134277344, "y1": 415.79998779296875, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 386.6400146484375, "y0": 343.44000244140625, "x1": 437.0400085449219, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 437.3999938964844, "y0": 343.44000244140625, "x1": 487.79998779296875, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 488.5199890136719, "y0": 343.44000244140625, "x1": 538.9199829101562, "y1": 415.79998779296875, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 539.6400146484375, "y0": 343.44000244140625, "x1": 590.0399780273438, "y1": 415.79998779296875, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 590.4000244140625, "y0": 343.44000244140625, "x1": 640.7999877929688, "y1": 415.79998779296875, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 641.52001953125, "y0": 343.44000244140625, "x1": 691.9199829101562, "y1": 415.79998779296875, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 692.6400146484375, "y0": 343.44000244140625, "x1": 743.0399780273438, "y1": 415.79998779296875, "width": 50.39996337890625, "height": 72.3599853515625}]}, {"pageInfo": {"number": 90, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 120.23999786376953, "y0": 431.2799987792969, "x1": 232.9199981689453, "y1": 462.6000061035156, "width": 112.68000030517578, "height": 31.32000732421875}, {"x0": 233.63999938964844, "y0": 452.52001953125, "x1": 286.9200134277344, "y1": 462.6000061035156, "width": 53.28001403808594, "height": 10.079986572265625}, {"x0": 287.6400146484375, "y0": 452.52001953125, "x1": 340.9200134277344, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 341.6400146484375, "y0": 452.52001953125, "x1": 394.9200134277344, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 395.6400146484375, "y0": 452.52001953125, "x1": 448.9200134277344, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 449.6400146484375, "y0": 452.52001953125, "x1": 502.9200134277344, "y1": 462.6000061035156, "width": 53.279998779296875, "height": 10.079986572265625}, {"x0": 503.6400146484375, "y0": 452.52001953125, "x1": 556.9199829101562, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 557.6400146484375, "y0": 452.52001953125, "x1": 610.9199829101562, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 611.6400146484375, "y0": 452.52001953125, "x1": 664.9199829101562, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 10.079986572265625}, {"x0": 665.6400146484375, "y0": 431.2799987792969, "x1": 718.9199829101562, "y1": 462.6000061035156, "width": 53.27996826171875, "height": 31.32000732421875}, {"x0": 719.6400146484375, "y0": 431.2799987792969, "x1": 771.47998046875, "y1": 462.6000061035156, "width": 51.8399658203125, "height": 31.32000732421875}, {"x0": 233.63999938964844, "y0": 431.2799987792969, "x1": 286.9200134277344, "y1": 451.79998779296875, "width": 53.28001403808594, "height": 20.519989013671875}, {"x0": 287.6400146484375, "y0": 431.2799987792969, "x1": 340.9200134277344, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 341.6400146484375, "y0": 431.2799987792969, "x1": 394.9200134277344, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 395.6400146484375, "y0": 431.2799987792969, "x1": 448.9200134277344, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 449.6400146484375, "y0": 431.2799987792969, "x1": 502.9200134277344, "y1": 451.79998779296875, "width": 53.279998779296875, "height": 20.519989013671875}, {"x0": 503.6400146484375, "y0": 431.2799987792969, "x1": 556.9199829101562, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 557.6400146484375, "y0": 431.2799987792969, "x1": 610.9199829101562, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 611.6400146484375, "y0": 431.2799987792969, "x1": 664.9199829101562, "y1": 451.79998779296875, "width": 53.27996826171875, "height": 20.519989013671875}, {"x0": 120.23999786376953, "y0": 244.44000244140625, "x1": 232.9199981689453, "y1": 430.55999755859375, "width": 112.68000030517578, "height": 186.1199951171875}, {"x0": 233.63999938964844, "y0": 244.44000244140625, "x1": 286.9200134277344, "y1": 430.55999755859375, "width": 53.28001403808594, "height": 186.1199951171875}, {"x0": 287.6400146484375, "y0": 244.44000244140625, "x1": 340.9200134277344, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 186.1199951171875}, {"x0": 341.6400146484375, "y0": 244.44000244140625, "x1": 394.9200134277344, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 186.1199951171875}, {"x0": 395.6400146484375, "y0": 244.44000244140625, "x1": 448.9200134277344, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 186.1199951171875}, {"x0": 449.6400146484375, "y0": 244.44000244140625, "x1": 502.9200134277344, "y1": 430.55999755859375, "width": 53.279998779296875, "height": 186.1199951171875}, {"x0": 503.6400146484375, "y0": 244.44000244140625, "x1": 556.9199829101562, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 186.1199951171875}, {"x0": 557.6400146484375, "y0": 244.44000244140625, "x1": 610.9199829101562, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 186.1199951171875}, {"x0": 611.6400146484375, "y0": 244.44000244140625, "x1": 664.9199829101562, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 186.1199951171875}, {"x0": 665.6400146484375, "y0": 244.44000244140625, "x1": 718.9199829101562, "y1": 430.55999755859375, "width": 53.27996826171875, "height": 186.1199951171875}, {"x0": 719.6400146484375, "y0": 244.44000244140625, "x1": 771.47998046875, "y1": 430.55999755859375, "width": 51.8399658203125, "height": 186.1199951171875}, {"x0": 120.23999786376953, "y0": 233.6400146484375, "x1": 232.9199981689453, "y1": 244.08001708984375, "width": 112.68000030517578, "height": 10.44000244140625}, {"x0": 233.63999938964844, "y0": 233.6400146484375, "x1": 286.9200134277344, "y1": 244.08001708984375, "width": 53.28001403808594, "height": 10.44000244140625}, {"x0": 287.6400146484375, "y0": 233.6400146484375, "x1": 340.9200134277344, "y1": 244.08001708984375, "width": 53.279998779296875, "height": 10.44000244140625}, {"x0": 341.6400146484375, "y0": 233.6400146484375, "x1": 394.9200134277344, "y1": 244.08001708984375, "width": 53.279998779296875, "height": 10.44000244140625}, {"x0": 395.6400146484375, "y0": 233.6400146484375, "x1": 448.9200134277344, "y1": 244.08001708984375, "width": 53.279998779296875, "height": 10.44000244140625}, {"x0": 449.6400146484375, "y0": 233.6400146484375, "x1": 502.9200134277344, "y1": 244.08001708984375, "width": 53.279998779296875, "height": 10.44000244140625}, {"x0": 503.6400146484375, "y0": 233.6400146484375, "x1": 556.9199829101562, "y1": 244.08001708984375, "width": 53.27996826171875, "height": 10.44000244140625}, {"x0": 557.6400146484375, "y0": 233.6400146484375, "x1": 610.9199829101562, "y1": 244.08001708984375, "width": 53.27996826171875, "height": 10.44000244140625}, {"x0": 611.6400146484375, "y0": 233.6400146484375, "x1": 664.9199829101562, "y1": 244.08001708984375, "width": 53.27996826171875, "height": 10.44000244140625}, {"x0": 665.6400146484375, "y0": 233.6400146484375, "x1": 718.9199829101562, "y1": 244.08001708984375, "width": 53.27996826171875, "height": 10.44000244140625}, {"x0": 719.6400146484375, "y0": 233.6400146484375, "x1": 771.47998046875, "y1": 244.08001708984375, "width": 51.8399658203125, "height": 10.44000244140625}]}, {"pageInfo": {"number": 91, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 122.4000015258789, "y0": 415.79998779296875, "x1": 232.9199981689453, "y1": 447.8399963378906, "width": 110.5199966430664, "height": 32.040008544921875}, {"x0": 233.63999938964844, "y0": 437.760009765625, "x1": 284.0400085449219, "y1": 447.8399963378906, "width": 50.40000915527344, "height": 10.079986572265625}, {"x0": 284.3999938964844, "y0": 437.760009765625, "x1": 334.79998779296875, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 335.5199890136719, "y0": 437.760009765625, "x1": 385.9200134277344, "y1": 447.8399963378906, "width": 50.4000244140625, "height": 10.079986572265625}, {"x0": 386.6400146484375, "y0": 437.760009765625, "x1": 437.0400085449219, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 437.3999938964844, "y0": 437.760009765625, "x1": 487.79998779296875, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 488.5199890136719, "y0": 437.760009765625, "x1": 538.9199829101562, "y1": 447.8399963378906, "width": 50.399993896484375, "height": 10.079986572265625}, {"x0": 539.6400146484375, "y0": 437.760009765625, "x1": 590.0399780273438, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 10.079986572265625}, {"x0": 590.4000244140625, "y0": 437.760009765625, "x1": 640.7999877929688, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 10.079986572265625}, {"x0": 641.52001953125, "y0": 415.79998779296875, "x1": 691.9199829101562, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 32.040008544921875}, {"x0": 692.6400146484375, "y0": 415.79998779296875, "x1": 743.0399780273438, "y1": 447.8399963378906, "width": 50.39996337890625, "height": 32.040008544921875}, {"x0": 233.63999938964844, "y0": 415.79998779296875, "x1": 284.0400085449219, "y1": 437.0400085449219, "width": 50.40000915527344, "height": 21.240020751953125}, {"x0": 284.3999938964844, "y0": 415.79998779296875, "x1": 334.79998779296875, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 21.240020751953125}, {"x0": 335.5199890136719, "y0": 415.79998779296875, "x1": 385.9200134277344, "y1": 437.0400085449219, "width": 50.4000244140625, "height": 21.240020751953125}, {"x0": 386.6400146484375, "y0": 415.79998779296875, "x1": 437.0400085449219, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 21.240020751953125}, {"x0": 437.3999938964844, "y0": 415.79998779296875, "x1": 487.79998779296875, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 21.240020751953125}, {"x0": 488.5199890136719, "y0": 415.79998779296875, "x1": 538.9199829101562, "y1": 437.0400085449219, "width": 50.399993896484375, "height": 21.240020751953125}, {"x0": 539.6400146484375, "y0": 416.1600036621094, "x1": 590.0399780273438, "y1": 437.0400085449219, "width": 50.39996337890625, "height": 20.8800048828125}, {"x0": 590.4000244140625, "y0": 415.79998779296875, "x1": 640.7999877929688, "y1": 437.0400085449219, "width": 50.39996337890625, "height": 21.240020751953125}, {"x0": 122.4000015258789, "y0": 343.08001708984375, "x1": 232.9199981689453, "y1": 415.44000244140625, "width": 110.5199966430664, "height": 72.3599853515625}, {"x0": 233.63999938964844, "y0": 343.08001708984375, "x1": 284.0400085449219, "y1": 415.44000244140625, "width": 50.40000915527344, "height": 72.3599853515625}, {"x0": 284.3999938964844, "y0": 343.08001708984375, "x1": 334.79998779296875, "y1": 415.44000244140625, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 335.5199890136719, "y0": 343.08001708984375, "x1": 385.9200134277344, "y1": 415.44000244140625, "width": 50.4000244140625, "height": 72.3599853515625}, {"x0": 386.6400146484375, "y0": 343.08001708984375, "x1": 437.0400085449219, "y1": 415.44000244140625, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 437.3999938964844, "y0": 343.08001708984375, "x1": 487.79998779296875, "y1": 415.44000244140625, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 488.5199890136719, "y0": 343.08001708984375, "x1": 538.9199829101562, "y1": 415.44000244140625, "width": 50.399993896484375, "height": 72.3599853515625}, {"x0": 539.6400146484375, "y0": 343.08001708984375, "x1": 590.0399780273438, "y1": 415.08001708984375, "width": 50.39996337890625, "height": 72.0}, {"x0": 590.4000244140625, "y0": 343.08001708984375, "x1": 640.7999877929688, "y1": 415.44000244140625, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 641.52001953125, "y0": 343.08001708984375, "x1": 691.9199829101562, "y1": 415.44000244140625, "width": 50.39996337890625, "height": 72.3599853515625}, {"x0": 692.6400146484375, "y0": 343.08001708984375, "x1": 743.0399780273438, "y1": 415.44000244140625, "width": 50.39996337890625, "height": 72.3599853515625}]}, {"pageInfo": {"number": 92, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 121.31999969482422, "y0": 413.2799987792969, "x1": 240.83999633789062, "y1": 447.8399963378906, "width": 119.5199966430664, "height": 34.55999755859375}, {"x0": 241.55999755859375, "y0": 436.67999267578125, "x1": 672.8400268554688, "y1": 447.8399963378906, "width": 431.280029296875, "height": 11.160003662109375}, {"x0": 673.5599975585938, "y0": 413.2799987792969, "x1": 721.0800170898438, "y1": 447.8399963378906, "width": 47.52001953125, "height": 34.55999755859375}, {"x0": 721.7999877929688, "y0": 413.2799987792969, "x1": 770.760009765625, "y1": 447.8399963378906, "width": 48.96002197265625, "height": 34.55999755859375}, {"x0": 241.55999755859375, "y0": 413.2799987792969, "x1": 294.8399963378906, "y1": 435.96002197265625, "width": 53.279998779296875, "height": 22.680023193359375}, {"x0": 295.55999755859375, "y0": 413.2799987792969, "x1": 348.8399963378906, "y1": 435.96002197265625, "width": 53.279998779296875, "height": 22.680023193359375}, {"x0": 349.55999755859375, "y0": 413.2799987792969, "x1": 402.8399963378906, "y1": 435.96002197265625, "width": 53.279998779296875, "height": 22.680023193359375}, {"x0": 403.55999755859375, "y0": 413.2799987792969, "x1": 456.8399963378906, "y1": 435.96002197265625, "width": 53.279998779296875, "height": 22.680023193359375}, {"x0": 457.55999755859375, "y0": 413.2799987792969, "x1": 510.8399963378906, "y1": 435.96002197265625, "width": 53.279998779296875, "height": 22.680023193359375}, {"x0": 511.55999755859375, "y0": 413.2799987792969, "x1": 564.8400268554688, "y1": 435.96002197265625, "width": 53.280029296875, "height": 22.680023193359375}, {"x0": 565.5599975585938, "y0": 413.2799987792969, "x1": 618.8400268554688, "y1": 435.96002197265625, "width": 53.280029296875, "height": 22.680023193359375}, {"x0": 619.5599975585938, "y0": 413.2799987792969, "x1": 672.8400268554688, "y1": 435.96002197265625, "width": 53.280029296875, "height": 22.680023193359375}, {"x0": 121.31999969482422, "y0": 185.760009765625, "x1": 240.83999633789062, "y1": 412.91998291015625, "width": 119.5199966430664, "height": 227.15997314453125}, {"x0": 241.55999755859375, "y0": 185.760009765625, "x1": 294.8399963378906, "y1": 412.91998291015625, "width": 53.279998779296875, "height": 227.15997314453125}, {"x0": 295.55999755859375, "y0": 185.760009765625, "x1": 348.8399963378906, "y1": 412.91998291015625, "width": 53.279998779296875, "height": 227.15997314453125}, {"x0": 349.55999755859375, "y0": 185.760009765625, "x1": 402.8399963378906, "y1": 412.91998291015625, "width": 53.279998779296875, "height": 227.15997314453125}, {"x0": 403.55999755859375, "y0": 185.760009765625, "x1": 456.8399963378906, "y1": 412.91998291015625, "width": 53.279998779296875, "height": 227.15997314453125}, {"x0": 457.55999755859375, "y0": 185.760009765625, "x1": 510.8399963378906, "y1": 412.91998291015625, "width": 53.279998779296875, "height": 227.15997314453125}, {"x0": 511.55999755859375, "y0": 185.760009765625, "x1": 564.8400268554688, "y1": 412.91998291015625, "width": 53.280029296875, "height": 227.15997314453125}, {"x0": 565.5599975585938, "y0": 185.760009765625, "x1": 618.8400268554688, "y1": 412.91998291015625, "width": 53.280029296875, "height": 227.15997314453125}, {"x0": 619.5599975585938, "y0": 185.760009765625, "x1": 672.8400268554688, "y1": 412.91998291015625, "width": 53.280029296875, "height": 227.15997314453125}, {"x0": 673.5599975585938, "y0": 185.760009765625, "x1": 721.0800170898438, "y1": 412.91998291015625, "width": 47.52001953125, "height": 227.15997314453125}, {"x0": 721.7999877929688, "y0": 185.760009765625, "x1": 770.760009765625, "y1": 412.91998291015625, "width": 48.96002197265625, "height": 227.15997314453125}]}, {"pageInfo": {"number": 93, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 255.24000549316406, "y0": 347.4000244140625, "x1": 340.20001220703125, "y1": 378.7200012207031, "width": 84.96000671386719, "height": 31.319976806640625}, {"x0": 340.9200134277344, "y0": 368.6400146484375, "x1": 377.2799987792969, "y1": 378.7200012207031, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 378.0, "y0": 368.6400146484375, "x1": 414.3599853515625, "y1": 378.7200012207031, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 415.0799865722656, "y0": 368.6400146484375, "x1": 451.44000244140625, "y1": 378.7200012207031, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 452.1600036621094, "y0": 368.6400146484375, "x1": 488.5199890136719, "y1": 378.7200012207031, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 489.239990234375, "y0": 368.6400146484375, "x1": 525.5999755859375, "y1": 378.7200012207031, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 526.3200073242188, "y0": 368.6400146484375, "x1": 562.6799926757812, "y1": 378.7200012207031, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 563.4000244140625, "y0": 368.6400146484375, "x1": 599.760009765625, "y1": 378.7200012207031, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 600.47998046875, "y0": 368.6400146484375, "x1": 636.8400268554688, "y1": 378.7200012207031, "width": 36.36004638671875, "height": 10.079986572265625}, {"x0": 340.9200134277344, "y0": 347.4000244140625, "x1": 377.2799987792969, "y1": 367.91998291015625, "width": 36.3599853515625, "height": 20.51995849609375}, {"x0": 378.0, "y0": 347.4000244140625, "x1": 414.3599853515625, "y1": 367.91998291015625, "width": 36.3599853515625, "height": 20.51995849609375}, {"x0": 415.0799865722656, "y0": 347.4000244140625, "x1": 451.44000244140625, "y1": 367.91998291015625, "width": 36.360015869140625, "height": 20.51995849609375}, {"x0": 452.1600036621094, "y0": 347.4000244140625, "x1": 488.5199890136719, "y1": 367.91998291015625, "width": 36.3599853515625, "height": 20.51995849609375}, {"x0": 489.239990234375, "y0": 347.4000244140625, "x1": 525.5999755859375, "y1": 367.91998291015625, "width": 36.3599853515625, "height": 20.51995849609375}, {"x0": 526.3200073242188, "y0": 347.4000244140625, "x1": 562.6799926757812, "y1": 367.91998291015625, "width": 36.3599853515625, "height": 20.51995849609375}, {"x0": 563.4000244140625, "y0": 347.4000244140625, "x1": 599.760009765625, "y1": 367.91998291015625, "width": 36.3599853515625, "height": 20.51995849609375}, {"x0": 600.47998046875, "y0": 347.4000244140625, "x1": 636.8400268554688, "y1": 367.91998291015625, "width": 36.36004638671875, "height": 20.51995849609375}, {"x0": 255.24000549316406, "y0": 295.20001220703125, "x1": 340.20001220703125, "y1": 346.67999267578125, "width": 84.96000671386719, "height": 51.47998046875}, {"x0": 340.9200134277344, "y0": 295.20001220703125, "x1": 377.2799987792969, "y1": 346.67999267578125, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 378.0, "y0": 295.20001220703125, "x1": 414.3599853515625, "y1": 346.67999267578125, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 415.0799865722656, "y0": 295.20001220703125, "x1": 451.44000244140625, "y1": 346.67999267578125, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 452.1600036621094, "y0": 295.20001220703125, "x1": 488.5199890136719, "y1": 346.67999267578125, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 489.239990234375, "y0": 295.20001220703125, "x1": 525.5999755859375, "y1": 346.67999267578125, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 526.3200073242188, "y0": 295.20001220703125, "x1": 562.6799926757812, "y1": 346.67999267578125, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 563.4000244140625, "y0": 295.20001220703125, "x1": 599.760009765625, "y1": 346.67999267578125, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 600.47998046875, "y0": 295.20001220703125, "x1": 636.8400268554688, "y1": 346.67999267578125, "width": 36.36004638671875, "height": 51.47998046875}, {"x0": 255.24000549316406, "y0": 284.3999938964844, "x1": 340.20001220703125, "y1": 294.4800109863281, "width": 84.96000671386719, "height": 10.08001708984375}, {"x0": 340.9200134277344, "y0": 284.3999938964844, "x1": 377.2799987792969, "y1": 294.4800109863281, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 378.0, "y0": 284.3999938964844, "x1": 414.3599853515625, "y1": 294.4800109863281, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 415.0799865722656, "y0": 284.3999938964844, "x1": 451.44000244140625, "y1": 294.4800109863281, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 452.1600036621094, "y0": 284.3999938964844, "x1": 488.5199890136719, "y1": 294.4800109863281, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 489.239990234375, "y0": 284.3999938964844, "x1": 525.5999755859375, "y1": 294.4800109863281, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 526.3200073242188, "y0": 284.3999938964844, "x1": 562.6799926757812, "y1": 294.4800109863281, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 563.4000244140625, "y0": 284.3999938964844, "x1": 599.760009765625, "y1": 294.4800109863281, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 600.47998046875, "y0": 284.3999938964844, "x1": 636.8400268554688, "y1": 294.4800109863281, "width": 36.36004638671875, "height": 10.08001708984375}, {"x0": 219.60000610351562, "y0": 237.95999145507812, "x1": 304.55999755859375, "y1": 269.2799987792969, "width": 84.95999145507812, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 259.20001220703125, "x1": 341.6400146484375, "y1": 269.2799987792969, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 342.3599853515625, "y0": 259.20001220703125, "x1": 378.7200012207031, "y1": 269.2799987792969, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 379.44000244140625, "y0": 259.20001220703125, "x1": 415.79998779296875, "y1": 269.2799987792969, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 416.5199890136719, "y0": 259.20001220703125, "x1": 452.8800048828125, "y1": 269.2799987792969, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 453.6000061035156, "y0": 259.20001220703125, "x1": 489.9599914550781, "y1": 269.2799987792969, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 490.67999267578125, "y0": 259.20001220703125, "x1": 527.0399780273438, "y1": 269.2799987792969, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 527.760009765625, "y0": 259.20001220703125, "x1": 564.1199951171875, "y1": 269.2799987792969, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 564.8400268554688, "y0": 259.20001220703125, "x1": 601.2000122070312, "y1": 269.2799987792969, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 601.9199829101562, "y0": 237.95999145507812, "x1": 636.8400268554688, "y1": 269.2799987792969, "width": 34.9200439453125, "height": 31.32000732421875}, {"x0": 637.5599975585938, "y0": 237.95999145507812, "x1": 672.47998046875, "y1": 269.2799987792969, "width": 34.91998291015625, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 237.95999145507812, "x1": 341.6400146484375, "y1": 258.4800109863281, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 342.3599853515625, "y0": 237.95999145507812, "x1": 378.7200012207031, "y1": 258.4800109863281, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 379.44000244140625, "y0": 237.95999145507812, "x1": 415.79998779296875, "y1": 258.4800109863281, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 416.5199890136719, "y0": 237.95999145507812, "x1": 452.8800048828125, "y1": 258.4800109863281, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 453.6000061035156, "y0": 237.95999145507812, "x1": 489.9599914550781, "y1": 258.4800109863281, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 490.67999267578125, "y0": 237.95999145507812, "x1": 527.0399780273438, "y1": 258.4800109863281, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 527.760009765625, "y0": 237.95999145507812, "x1": 564.1199951171875, "y1": 258.4800109863281, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 564.8400268554688, "y0": 237.95999145507812, "x1": 601.2000122070312, "y1": 258.4800109863281, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 219.60000610351562, "y0": 185.760009765625, "x1": 304.55999755859375, "y1": 237.239990234375, "width": 84.95999145507812, "height": 51.47998046875}, {"x0": 305.2799987792969, "y0": 185.760009765625, "x1": 341.6400146484375, "y1": 237.239990234375, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 342.3599853515625, "y0": 185.760009765625, "x1": 378.7200012207031, "y1": 237.239990234375, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 379.44000244140625, "y0": 185.760009765625, "x1": 415.79998779296875, "y1": 237.239990234375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 416.5199890136719, "y0": 185.760009765625, "x1": 452.8800048828125, "y1": 237.239990234375, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 453.6000061035156, "y0": 185.760009765625, "x1": 489.9599914550781, "y1": 237.239990234375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 490.67999267578125, "y0": 185.760009765625, "x1": 527.0399780273438, "y1": 237.239990234375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 527.760009765625, "y0": 185.760009765625, "x1": 564.1199951171875, "y1": 237.239990234375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 564.8400268554688, "y0": 185.760009765625, "x1": 601.2000122070312, "y1": 237.239990234375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 601.9199829101562, "y0": 185.760009765625, "x1": 636.8400268554688, "y1": 237.239990234375, "width": 34.9200439453125, "height": 51.47998046875}, {"x0": 637.5599975585938, "y0": 185.760009765625, "x1": 672.47998046875, "y1": 237.239990234375, "width": 34.91998291015625, "height": 51.47998046875}, {"x0": 219.60000610351562, "y0": 174.95999145507812, "x1": 304.55999755859375, "y1": 185.04000854492188, "width": 84.95999145507812, "height": 10.08001708984375}, {"x0": 305.2799987792969, "y0": 174.95999145507812, "x1": 341.6400146484375, "y1": 185.04000854492188, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 342.3599853515625, "y0": 174.95999145507812, "x1": 378.7200012207031, "y1": 185.04000854492188, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 379.44000244140625, "y0": 174.95999145507812, "x1": 415.79998779296875, "y1": 185.04000854492188, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 416.5199890136719, "y0": 174.95999145507812, "x1": 452.8800048828125, "y1": 185.04000854492188, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 453.6000061035156, "y0": 174.95999145507812, "x1": 489.9599914550781, "y1": 185.04000854492188, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 490.67999267578125, "y0": 174.95999145507812, "x1": 527.0399780273438, "y1": 185.04000854492188, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 527.760009765625, "y0": 174.95999145507812, "x1": 564.1199951171875, "y1": 185.04000854492188, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 564.8400268554688, "y0": 174.95999145507812, "x1": 601.2000122070312, "y1": 185.04000854492188, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 601.9199829101562, "y0": 174.95999145507812, "x1": 636.8400268554688, "y1": 185.04000854492188, "width": 34.9200439453125, "height": 10.08001708984375}, {"x0": 637.5599975585938, "y0": 174.95999145507812, "x1": 672.47998046875, "y1": 185.04000854492188, "width": 34.91998291015625, "height": 10.08001708984375}]}, {"pageInfo": {"number": 94, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 253.8000030517578, "y0": 445.67999267578125, "x1": 338.760009765625, "y1": 477.0, "width": 84.96000671386719, "height": 31.32000732421875}, {"x0": 339.4800109863281, "y0": 466.91998291015625, "x1": 375.8399963378906, "y1": 477.0, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 376.55999755859375, "y0": 466.91998291015625, "x1": 412.9200134277344, "y1": 477.0, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 413.6400146484375, "y0": 466.91998291015625, "x1": 450.0, "y1": 477.0, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 450.7200012207031, "y0": 466.91998291015625, "x1": 489.9599914550781, "y1": 477.0, "width": 39.239990234375, "height": 10.08001708984375}, {"x0": 490.67999267578125, "y0": 466.91998291015625, "x1": 527.0399780273438, "y1": 477.0, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 527.760009765625, "y0": 466.91998291015625, "x1": 564.1199951171875, "y1": 477.0, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 564.8400268554688, "y0": 466.91998291015625, "x1": 601.2000122070312, "y1": 477.0, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 601.9199829101562, "y0": 466.91998291015625, "x1": 638.280029296875, "y1": 477.0, "width": 36.36004638671875, "height": 10.08001708984375}, {"x0": 339.4800109863281, "y0": 445.67999267578125, "x1": 375.8399963378906, "y1": 466.20001220703125, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 376.55999755859375, "y0": 445.67999267578125, "x1": 412.9200134277344, "y1": 466.20001220703125, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 413.6400146484375, "y0": 445.67999267578125, "x1": 450.0, "y1": 466.20001220703125, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 450.7200012207031, "y0": 445.67999267578125, "x1": 489.9599914550781, "y1": 466.20001220703125, "width": 39.239990234375, "height": 20.52001953125}, {"x0": 490.67999267578125, "y0": 445.67999267578125, "x1": 527.0399780273438, "y1": 466.20001220703125, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 527.760009765625, "y0": 445.67999267578125, "x1": 564.1199951171875, "y1": 466.20001220703125, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 564.8400268554688, "y0": 445.67999267578125, "x1": 601.2000122070312, "y1": 466.20001220703125, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 601.9199829101562, "y0": 445.67999267578125, "x1": 638.280029296875, "y1": 466.20001220703125, "width": 36.36004638671875, "height": 20.52001953125}, {"x0": 253.8000030517578, "y0": 393.47998046875, "x1": 338.760009765625, "y1": 444.96002197265625, "width": 84.96000671386719, "height": 51.48004150390625}, {"x0": 339.4800109863281, "y0": 393.47998046875, "x1": 375.8399963378906, "y1": 444.96002197265625, "width": 36.3599853515625, "height": 51.48004150390625}, {"x0": 376.55999755859375, "y0": 393.47998046875, "x1": 412.9200134277344, "y1": 444.96002197265625, "width": 36.360015869140625, "height": 51.48004150390625}, {"x0": 413.6400146484375, "y0": 393.47998046875, "x1": 450.0, "y1": 444.96002197265625, "width": 36.3599853515625, "height": 51.48004150390625}, {"x0": 450.7200012207031, "y0": 393.47998046875, "x1": 489.9599914550781, "y1": 444.96002197265625, "width": 39.239990234375, "height": 51.48004150390625}, {"x0": 490.67999267578125, "y0": 393.47998046875, "x1": 527.0399780273438, "y1": 444.96002197265625, "width": 36.3599853515625, "height": 51.48004150390625}, {"x0": 527.760009765625, "y0": 393.47998046875, "x1": 564.1199951171875, "y1": 444.96002197265625, "width": 36.3599853515625, "height": 51.48004150390625}, {"x0": 564.8400268554688, "y0": 393.47998046875, "x1": 601.2000122070312, "y1": 444.96002197265625, "width": 36.3599853515625, "height": 51.48004150390625}, {"x0": 601.9199829101562, "y0": 393.47998046875, "x1": 638.280029296875, "y1": 444.96002197265625, "width": 36.36004638671875, "height": 51.48004150390625}, {"x0": 253.8000030517578, "y0": 382.67999267578125, "x1": 338.760009765625, "y1": 392.760009765625, "width": 84.96000671386719, "height": 10.08001708984375}, {"x0": 339.4800109863281, "y0": 382.67999267578125, "x1": 375.8399963378906, "y1": 392.760009765625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 376.55999755859375, "y0": 382.67999267578125, "x1": 412.9200134277344, "y1": 392.760009765625, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 413.6400146484375, "y0": 382.67999267578125, "x1": 450.0, "y1": 392.760009765625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 450.7200012207031, "y0": 382.67999267578125, "x1": 489.9599914550781, "y1": 392.760009765625, "width": 39.239990234375, "height": 10.08001708984375}, {"x0": 490.67999267578125, "y0": 382.67999267578125, "x1": 527.0399780273438, "y1": 392.760009765625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 527.760009765625, "y0": 382.67999267578125, "x1": 564.1199951171875, "y1": 392.760009765625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 564.8400268554688, "y0": 382.67999267578125, "x1": 601.2000122070312, "y1": 392.760009765625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 601.9199829101562, "y0": 382.67999267578125, "x1": 638.280029296875, "y1": 392.760009765625, "width": 36.36004638671875, "height": 10.08001708984375}, {"x0": 218.16000366210938, "y0": 336.239990234375, "x1": 303.1199951171875, "y1": 367.55999755859375, "width": 84.95999145507812, "height": 31.32000732421875}, {"x0": 303.8399963378906, "y0": 357.47998046875, "x1": 340.20001220703125, "y1": 367.55999755859375, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 340.9200134277344, "y0": 357.47998046875, "x1": 377.2799987792969, "y1": 367.55999755859375, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 378.0, "y0": 357.47998046875, "x1": 414.3599853515625, "y1": 367.55999755859375, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 415.0799865722656, "y0": 357.47998046875, "x1": 454.32000732421875, "y1": 367.55999755859375, "width": 39.240020751953125, "height": 10.08001708984375}, {"x0": 455.0400085449219, "y0": 357.47998046875, "x1": 491.3999938964844, "y1": 367.55999755859375, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 492.1199951171875, "y0": 357.47998046875, "x1": 528.47998046875, "y1": 367.55999755859375, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 529.2000122070312, "y0": 357.47998046875, "x1": 565.5599975585938, "y1": 367.55999755859375, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 566.280029296875, "y0": 357.47998046875, "x1": 602.6400146484375, "y1": 367.55999755859375, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 603.3599853515625, "y0": 336.239990234375, "x1": 638.280029296875, "y1": 367.55999755859375, "width": 34.9200439453125, "height": 31.32000732421875}, {"x0": 639.0, "y0": 336.239990234375, "x1": 673.9199829101562, "y1": 367.55999755859375, "width": 34.91998291015625, "height": 31.32000732421875}, {"x0": 303.8399963378906, "y0": 336.239990234375, "x1": 340.20001220703125, "y1": 356.760009765625, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 340.9200134277344, "y0": 336.239990234375, "x1": 377.2799987792969, "y1": 356.760009765625, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 378.0, "y0": 336.239990234375, "x1": 414.3599853515625, "y1": 356.760009765625, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 415.0799865722656, "y0": 336.239990234375, "x1": 454.32000732421875, "y1": 356.760009765625, "width": 39.240020751953125, "height": 20.52001953125}, {"x0": 455.0400085449219, "y0": 336.239990234375, "x1": 491.3999938964844, "y1": 356.760009765625, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 492.1199951171875, "y0": 336.239990234375, "x1": 528.47998046875, "y1": 356.760009765625, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 529.2000122070312, "y0": 336.239990234375, "x1": 565.5599975585938, "y1": 356.760009765625, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 566.280029296875, "y0": 336.239990234375, "x1": 602.6400146484375, "y1": 356.760009765625, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 218.16000366210938, "y0": 284.0400085449219, "x1": 303.1199951171875, "y1": 335.5199890136719, "width": 84.95999145507812, "height": 51.47998046875}, {"x0": 303.8399963378906, "y0": 284.0400085449219, "x1": 340.20001220703125, "y1": 335.5199890136719, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 340.9200134277344, "y0": 284.0400085449219, "x1": 377.2799987792969, "y1": 335.5199890136719, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 378.0, "y0": 284.0400085449219, "x1": 414.3599853515625, "y1": 335.5199890136719, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 415.0799865722656, "y0": 284.0400085449219, "x1": 454.32000732421875, "y1": 335.5199890136719, "width": 39.240020751953125, "height": 51.47998046875}, {"x0": 455.0400085449219, "y0": 284.0400085449219, "x1": 491.3999938964844, "y1": 335.5199890136719, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 492.1199951171875, "y0": 284.0400085449219, "x1": 528.47998046875, "y1": 335.5199890136719, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 529.2000122070312, "y0": 284.0400085449219, "x1": 565.5599975585938, "y1": 335.5199890136719, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 566.280029296875, "y0": 284.0400085449219, "x1": 602.6400146484375, "y1": 335.5199890136719, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 603.3599853515625, "y0": 284.0400085449219, "x1": 638.280029296875, "y1": 335.5199890136719, "width": 34.9200439453125, "height": 51.47998046875}, {"x0": 639.0, "y0": 284.0400085449219, "x1": 673.9199829101562, "y1": 335.5199890136719, "width": 34.91998291015625, "height": 51.47998046875}, {"x0": 218.16000366210938, "y0": 273.239990234375, "x1": 303.1199951171875, "y1": 283.32000732421875, "width": 84.95999145507812, "height": 10.08001708984375}, {"x0": 303.8399963378906, "y0": 273.239990234375, "x1": 340.20001220703125, "y1": 283.32000732421875, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 340.9200134277344, "y0": 273.239990234375, "x1": 377.2799987792969, "y1": 283.32000732421875, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 378.0, "y0": 273.239990234375, "x1": 414.3599853515625, "y1": 283.32000732421875, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 415.0799865722656, "y0": 273.239990234375, "x1": 454.32000732421875, "y1": 283.32000732421875, "width": 39.240020751953125, "height": 10.08001708984375}, {"x0": 455.0400085449219, "y0": 273.239990234375, "x1": 491.3999938964844, "y1": 283.32000732421875, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 492.1199951171875, "y0": 273.239990234375, "x1": 528.47998046875, "y1": 283.32000732421875, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 529.2000122070312, "y0": 273.239990234375, "x1": 565.5599975585938, "y1": 283.32000732421875, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 566.280029296875, "y0": 273.239990234375, "x1": 602.6400146484375, "y1": 283.32000732421875, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 603.3599853515625, "y0": 273.239990234375, "x1": 638.280029296875, "y1": 283.32000732421875, "width": 34.9200439453125, "height": 10.08001708984375}, {"x0": 639.0, "y0": 273.239990234375, "x1": 673.9199829101562, "y1": 283.32000732421875, "width": 34.91998291015625, "height": 10.08001708984375}]}, {"pageInfo": {"number": 95, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 255.24000549316406, "y0": 404.2799987792969, "x1": 340.20001220703125, "y1": 435.6000061035156, "width": 84.96000671386719, "height": 31.32000732421875}, {"x0": 340.9200134277344, "y0": 425.52001953125, "x1": 377.2799987792969, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 378.0, "y0": 425.52001953125, "x1": 414.3599853515625, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 415.0799865722656, "y0": 425.52001953125, "x1": 451.44000244140625, "y1": 435.6000061035156, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 452.1600036621094, "y0": 425.52001953125, "x1": 488.5199890136719, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 489.239990234375, "y0": 425.52001953125, "x1": 525.5999755859375, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 526.3200073242188, "y0": 425.52001953125, "x1": 562.6799926757812, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 563.4000244140625, "y0": 425.52001953125, "x1": 599.760009765625, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 600.47998046875, "y0": 425.52001953125, "x1": 636.8400268554688, "y1": 435.6000061035156, "width": 36.36004638671875, "height": 10.079986572265625}, {"x0": 340.9200134277344, "y0": 404.2799987792969, "x1": 377.2799987792969, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 378.0, "y0": 404.2799987792969, "x1": 414.3599853515625, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 415.0799865722656, "y0": 404.2799987792969, "x1": 451.44000244140625, "y1": 424.79998779296875, "width": 36.360015869140625, "height": 20.519989013671875}, {"x0": 452.1600036621094, "y0": 404.2799987792969, "x1": 488.5199890136719, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 489.239990234375, "y0": 404.2799987792969, "x1": 525.5999755859375, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 526.3200073242188, "y0": 404.2799987792969, "x1": 562.6799926757812, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 563.4000244140625, "y0": 404.2799987792969, "x1": 599.760009765625, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 600.47998046875, "y0": 404.2799987792969, "x1": 636.8400268554688, "y1": 424.79998779296875, "width": 36.36004638671875, "height": 20.519989013671875}, {"x0": 255.24000549316406, "y0": 352.08001708984375, "x1": 340.20001220703125, "y1": 403.55999755859375, "width": 84.96000671386719, "height": 51.47998046875}, {"x0": 340.9200134277344, "y0": 352.08001708984375, "x1": 377.2799987792969, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 378.0, "y0": 352.08001708984375, "x1": 414.3599853515625, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 415.0799865722656, "y0": 352.08001708984375, "x1": 451.44000244140625, "y1": 403.55999755859375, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 452.1600036621094, "y0": 352.08001708984375, "x1": 488.5199890136719, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 489.239990234375, "y0": 352.08001708984375, "x1": 525.5999755859375, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 526.3200073242188, "y0": 352.08001708984375, "x1": 562.6799926757812, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 563.4000244140625, "y0": 352.08001708984375, "x1": 599.760009765625, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 600.47998046875, "y0": 352.08001708984375, "x1": 636.8400268554688, "y1": 403.55999755859375, "width": 36.36004638671875, "height": 51.47998046875}, {"x0": 255.24000549316406, "y0": 341.2799987792969, "x1": 340.20001220703125, "y1": 351.3599853515625, "width": 84.96000671386719, "height": 10.079986572265625}, {"x0": 340.9200134277344, "y0": 341.2799987792969, "x1": 377.2799987792969, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 378.0, "y0": 341.2799987792969, "x1": 414.3599853515625, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 415.0799865722656, "y0": 341.2799987792969, "x1": 451.44000244140625, "y1": 351.3599853515625, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 452.1600036621094, "y0": 341.2799987792969, "x1": 488.5199890136719, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 489.239990234375, "y0": 341.2799987792969, "x1": 525.5999755859375, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 526.3200073242188, "y0": 341.2799987792969, "x1": 562.6799926757812, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 563.4000244140625, "y0": 341.2799987792969, "x1": 599.760009765625, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 600.47998046875, "y0": 341.2799987792969, "x1": 636.8400268554688, "y1": 351.3599853515625, "width": 36.36004638671875, "height": 10.079986572265625}, {"x0": 219.60000610351562, "y0": 294.8399963378906, "x1": 304.55999755859375, "y1": 326.1600036621094, "width": 84.95999145507812, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 316.08001708984375, "x1": 341.6400146484375, "y1": 326.1600036621094, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 342.3599853515625, "y0": 316.08001708984375, "x1": 378.7200012207031, "y1": 326.1600036621094, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 379.44000244140625, "y0": 316.08001708984375, "x1": 415.79998779296875, "y1": 326.1600036621094, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 416.5199890136719, "y0": 316.08001708984375, "x1": 452.8800048828125, "y1": 326.1600036621094, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 453.6000061035156, "y0": 316.08001708984375, "x1": 489.9599914550781, "y1": 326.1600036621094, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 490.67999267578125, "y0": 316.08001708984375, "x1": 527.0399780273438, "y1": 326.1600036621094, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 527.760009765625, "y0": 316.08001708984375, "x1": 564.1199951171875, "y1": 326.1600036621094, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 564.8400268554688, "y0": 316.08001708984375, "x1": 601.2000122070312, "y1": 326.1600036621094, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 601.9199829101562, "y0": 294.8399963378906, "x1": 636.8400268554688, "y1": 326.1600036621094, "width": 34.9200439453125, "height": 31.32000732421875}, {"x0": 637.5599975585938, "y0": 294.8399963378906, "x1": 672.47998046875, "y1": 326.1600036621094, "width": 34.91998291015625, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 294.8399963378906, "x1": 341.6400146484375, "y1": 315.3600158691406, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 342.3599853515625, "y0": 294.8399963378906, "x1": 378.7200012207031, "y1": 315.3600158691406, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 379.44000244140625, "y0": 294.8399963378906, "x1": 415.79998779296875, "y1": 315.3600158691406, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 416.5199890136719, "y0": 294.8399963378906, "x1": 452.8800048828125, "y1": 315.3600158691406, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 453.6000061035156, "y0": 294.8399963378906, "x1": 489.9599914550781, "y1": 315.3600158691406, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 490.67999267578125, "y0": 294.8399963378906, "x1": 527.0399780273438, "y1": 315.3600158691406, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 527.760009765625, "y0": 294.8399963378906, "x1": 564.1199951171875, "y1": 315.3600158691406, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 564.8400268554688, "y0": 294.8399963378906, "x1": 601.2000122070312, "y1": 315.3600158691406, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 219.60000610351562, "y0": 242.6400146484375, "x1": 304.55999755859375, "y1": 294.1199951171875, "width": 84.95999145507812, "height": 51.47998046875}, {"x0": 305.2799987792969, "y0": 242.6400146484375, "x1": 341.6400146484375, "y1": 294.1199951171875, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 342.3599853515625, "y0": 242.6400146484375, "x1": 378.7200012207031, "y1": 294.1199951171875, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 379.44000244140625, "y0": 242.6400146484375, "x1": 415.79998779296875, "y1": 294.1199951171875, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 416.5199890136719, "y0": 242.6400146484375, "x1": 452.8800048828125, "y1": 294.1199951171875, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 453.6000061035156, "y0": 242.6400146484375, "x1": 489.9599914550781, "y1": 294.1199951171875, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 490.67999267578125, "y0": 242.6400146484375, "x1": 527.0399780273438, "y1": 294.1199951171875, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 527.760009765625, "y0": 242.6400146484375, "x1": 564.1199951171875, "y1": 294.1199951171875, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 564.8400268554688, "y0": 242.6400146484375, "x1": 601.2000122070312, "y1": 294.1199951171875, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 601.9199829101562, "y0": 242.6400146484375, "x1": 636.8400268554688, "y1": 294.1199951171875, "width": 34.9200439453125, "height": 51.47998046875}, {"x0": 637.5599975585938, "y0": 242.6400146484375, "x1": 672.47998046875, "y1": 294.1199951171875, "width": 34.91998291015625, "height": 51.47998046875}, {"x0": 219.60000610351562, "y0": 231.83999633789062, "x1": 304.55999755859375, "y1": 241.92001342773438, "width": 84.95999145507812, "height": 10.08001708984375}, {"x0": 305.2799987792969, "y0": 231.83999633789062, "x1": 341.6400146484375, "y1": 241.92001342773438, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 342.3599853515625, "y0": 231.83999633789062, "x1": 378.7200012207031, "y1": 241.92001342773438, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 379.44000244140625, "y0": 231.83999633789062, "x1": 415.79998779296875, "y1": 241.92001342773438, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 416.5199890136719, "y0": 231.83999633789062, "x1": 452.8800048828125, "y1": 241.92001342773438, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 453.6000061035156, "y0": 231.83999633789062, "x1": 489.9599914550781, "y1": 241.92001342773438, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 490.67999267578125, "y0": 231.83999633789062, "x1": 527.0399780273438, "y1": 241.92001342773438, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 527.760009765625, "y0": 231.83999633789062, "x1": 564.1199951171875, "y1": 241.92001342773438, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 564.8400268554688, "y0": 231.83999633789062, "x1": 601.2000122070312, "y1": 241.92001342773438, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 601.9199829101562, "y0": 231.83999633789062, "x1": 636.8400268554688, "y1": 241.92001342773438, "width": 34.9200439453125, "height": 10.08001708984375}, {"x0": 637.5599975585938, "y0": 231.83999633789062, "x1": 672.47998046875, "y1": 241.92001342773438, "width": 34.91998291015625, "height": 10.08001708984375}]}, {"pageInfo": {"number": 96, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 255.24000549316406, "y0": 445.67999267578125, "x1": 340.20001220703125, "y1": 477.0, "width": 84.96000671386719, "height": 31.32000732421875}, {"x0": 340.9200134277344, "y0": 466.91998291015625, "x1": 377.2799987792969, "y1": 477.0, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 378.0, "y0": 466.91998291015625, "x1": 414.3599853515625, "y1": 477.0, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 415.0799865722656, "y0": 466.91998291015625, "x1": 451.44000244140625, "y1": 477.0, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 452.1600036621094, "y0": 466.91998291015625, "x1": 488.5199890136719, "y1": 477.0, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 489.239990234375, "y0": 466.91998291015625, "x1": 525.5999755859375, "y1": 477.0, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 526.3200073242188, "y0": 466.91998291015625, "x1": 562.6799926757812, "y1": 477.0, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 563.4000244140625, "y0": 466.91998291015625, "x1": 599.760009765625, "y1": 477.0, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 600.47998046875, "y0": 466.91998291015625, "x1": 636.8400268554688, "y1": 477.0, "width": 36.36004638671875, "height": 10.08001708984375}, {"x0": 340.9200134277344, "y0": 445.67999267578125, "x1": 377.2799987792969, "y1": 466.20001220703125, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 378.0, "y0": 445.67999267578125, "x1": 414.3599853515625, "y1": 466.20001220703125, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 415.0799865722656, "y0": 445.67999267578125, "x1": 451.44000244140625, "y1": 466.20001220703125, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 452.1600036621094, "y0": 445.67999267578125, "x1": 488.5199890136719, "y1": 466.20001220703125, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 489.239990234375, "y0": 445.67999267578125, "x1": 525.5999755859375, "y1": 466.20001220703125, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 526.3200073242188, "y0": 445.67999267578125, "x1": 562.6799926757812, "y1": 466.20001220703125, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 563.4000244140625, "y0": 445.67999267578125, "x1": 599.760009765625, "y1": 466.20001220703125, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 600.47998046875, "y0": 445.67999267578125, "x1": 636.8400268554688, "y1": 466.20001220703125, "width": 36.36004638671875, "height": 20.52001953125}, {"x0": 255.24000549316406, "y0": 393.47998046875, "x1": 340.20001220703125, "y1": 444.96002197265625, "width": 84.96000671386719, "height": 51.48004150390625}, {"x0": 340.9200134277344, "y0": 393.47998046875, "x1": 377.2799987792969, "y1": 444.96002197265625, "width": 36.3599853515625, "height": 51.48004150390625}, {"x0": 378.0, "y0": 393.47998046875, "x1": 414.3599853515625, "y1": 444.96002197265625, "width": 36.3599853515625, "height": 51.48004150390625}, {"x0": 415.0799865722656, "y0": 393.47998046875, "x1": 451.44000244140625, "y1": 444.96002197265625, "width": 36.360015869140625, "height": 51.48004150390625}, {"x0": 452.1600036621094, "y0": 393.47998046875, "x1": 488.5199890136719, "y1": 444.96002197265625, "width": 36.3599853515625, "height": 51.48004150390625}, {"x0": 489.239990234375, "y0": 393.47998046875, "x1": 525.5999755859375, "y1": 444.96002197265625, "width": 36.3599853515625, "height": 51.48004150390625}, {"x0": 526.3200073242188, "y0": 393.47998046875, "x1": 562.6799926757812, "y1": 444.96002197265625, "width": 36.3599853515625, "height": 51.48004150390625}, {"x0": 563.4000244140625, "y0": 393.47998046875, "x1": 599.760009765625, "y1": 444.96002197265625, "width": 36.3599853515625, "height": 51.48004150390625}, {"x0": 600.47998046875, "y0": 393.47998046875, "x1": 636.8400268554688, "y1": 444.96002197265625, "width": 36.36004638671875, "height": 51.48004150390625}, {"x0": 255.24000549316406, "y0": 382.67999267578125, "x1": 340.20001220703125, "y1": 392.760009765625, "width": 84.96000671386719, "height": 10.08001708984375}, {"x0": 340.9200134277344, "y0": 382.67999267578125, "x1": 377.2799987792969, "y1": 392.760009765625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 378.0, "y0": 382.67999267578125, "x1": 414.3599853515625, "y1": 392.760009765625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 415.0799865722656, "y0": 382.67999267578125, "x1": 451.44000244140625, "y1": 392.760009765625, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 452.1600036621094, "y0": 382.67999267578125, "x1": 488.5199890136719, "y1": 392.760009765625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 489.239990234375, "y0": 382.67999267578125, "x1": 525.5999755859375, "y1": 392.760009765625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 526.3200073242188, "y0": 382.67999267578125, "x1": 562.6799926757812, "y1": 392.760009765625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 563.4000244140625, "y0": 382.67999267578125, "x1": 599.760009765625, "y1": 392.760009765625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 600.47998046875, "y0": 382.67999267578125, "x1": 636.8400268554688, "y1": 392.760009765625, "width": 36.36004638671875, "height": 10.08001708984375}, {"x0": 219.60000610351562, "y0": 336.239990234375, "x1": 304.55999755859375, "y1": 367.55999755859375, "width": 84.95999145507812, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 357.47998046875, "x1": 341.6400146484375, "y1": 367.55999755859375, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 342.3599853515625, "y0": 357.47998046875, "x1": 378.7200012207031, "y1": 367.55999755859375, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 379.44000244140625, "y0": 357.47998046875, "x1": 415.79998779296875, "y1": 367.55999755859375, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 416.5199890136719, "y0": 357.47998046875, "x1": 452.8800048828125, "y1": 367.55999755859375, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 453.6000061035156, "y0": 357.47998046875, "x1": 489.9599914550781, "y1": 367.55999755859375, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 490.67999267578125, "y0": 357.47998046875, "x1": 527.0399780273438, "y1": 367.55999755859375, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 527.760009765625, "y0": 357.47998046875, "x1": 564.1199951171875, "y1": 367.55999755859375, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 564.8400268554688, "y0": 357.47998046875, "x1": 601.2000122070312, "y1": 367.55999755859375, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 601.9199829101562, "y0": 336.239990234375, "x1": 636.8400268554688, "y1": 367.55999755859375, "width": 34.9200439453125, "height": 31.32000732421875}, {"x0": 637.5599975585938, "y0": 336.239990234375, "x1": 672.47998046875, "y1": 367.55999755859375, "width": 34.91998291015625, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 336.239990234375, "x1": 341.6400146484375, "y1": 356.760009765625, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 342.3599853515625, "y0": 336.239990234375, "x1": 378.7200012207031, "y1": 356.760009765625, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 379.44000244140625, "y0": 336.239990234375, "x1": 415.79998779296875, "y1": 356.760009765625, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 416.5199890136719, "y0": 336.239990234375, "x1": 452.8800048828125, "y1": 356.760009765625, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 453.6000061035156, "y0": 336.239990234375, "x1": 489.9599914550781, "y1": 356.760009765625, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 490.67999267578125, "y0": 336.239990234375, "x1": 527.0399780273438, "y1": 356.760009765625, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 527.760009765625, "y0": 336.239990234375, "x1": 564.1199951171875, "y1": 356.760009765625, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 564.8400268554688, "y0": 336.239990234375, "x1": 601.2000122070312, "y1": 356.760009765625, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 219.60000610351562, "y0": 284.0400085449219, "x1": 304.55999755859375, "y1": 335.5199890136719, "width": 84.95999145507812, "height": 51.47998046875}, {"x0": 305.2799987792969, "y0": 284.0400085449219, "x1": 341.6400146484375, "y1": 335.5199890136719, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 342.3599853515625, "y0": 284.0400085449219, "x1": 378.7200012207031, "y1": 335.5199890136719, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 379.44000244140625, "y0": 284.0400085449219, "x1": 415.79998779296875, "y1": 335.5199890136719, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 416.5199890136719, "y0": 284.0400085449219, "x1": 452.8800048828125, "y1": 335.5199890136719, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 453.6000061035156, "y0": 284.0400085449219, "x1": 489.9599914550781, "y1": 335.5199890136719, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 490.67999267578125, "y0": 284.0400085449219, "x1": 527.0399780273438, "y1": 335.5199890136719, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 527.760009765625, "y0": 284.0400085449219, "x1": 564.1199951171875, "y1": 335.5199890136719, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 564.8400268554688, "y0": 284.0400085449219, "x1": 601.2000122070312, "y1": 335.5199890136719, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 601.9199829101562, "y0": 284.0400085449219, "x1": 636.8400268554688, "y1": 335.5199890136719, "width": 34.9200439453125, "height": 51.47998046875}, {"x0": 637.5599975585938, "y0": 284.0400085449219, "x1": 672.47998046875, "y1": 335.5199890136719, "width": 34.91998291015625, "height": 51.47998046875}, {"x0": 219.60000610351562, "y0": 273.239990234375, "x1": 304.55999755859375, "y1": 283.32000732421875, "width": 84.95999145507812, "height": 10.08001708984375}, {"x0": 305.2799987792969, "y0": 273.239990234375, "x1": 341.6400146484375, "y1": 283.32000732421875, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 342.3599853515625, "y0": 273.239990234375, "x1": 378.7200012207031, "y1": 283.32000732421875, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 379.44000244140625, "y0": 273.239990234375, "x1": 415.79998779296875, "y1": 283.32000732421875, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 416.5199890136719, "y0": 273.239990234375, "x1": 452.8800048828125, "y1": 283.32000732421875, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 453.6000061035156, "y0": 273.239990234375, "x1": 489.9599914550781, "y1": 283.32000732421875, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 490.67999267578125, "y0": 273.239990234375, "x1": 527.0399780273438, "y1": 283.32000732421875, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 527.760009765625, "y0": 273.239990234375, "x1": 564.1199951171875, "y1": 283.32000732421875, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 564.8400268554688, "y0": 273.239990234375, "x1": 601.2000122070312, "y1": 283.32000732421875, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 601.9199829101562, "y0": 273.239990234375, "x1": 636.8400268554688, "y1": 283.32000732421875, "width": 34.9200439453125, "height": 10.08001708984375}, {"x0": 637.5599975585938, "y0": 273.239990234375, "x1": 672.47998046875, "y1": 283.32000732421875, "width": 34.91998291015625, "height": 10.08001708984375}]}, {"pageInfo": {"number": 97, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 219.60000610351562, "y0": 404.2799987792969, "x1": 304.55999755859375, "y1": 435.6000061035156, "width": 84.95999145507812, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 425.52001953125, "x1": 341.6400146484375, "y1": 435.6000061035156, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 342.3599853515625, "y0": 425.52001953125, "x1": 378.7200012207031, "y1": 435.6000061035156, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 379.44000244140625, "y0": 425.52001953125, "x1": 415.79998779296875, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 416.5199890136719, "y0": 425.52001953125, "x1": 452.8800048828125, "y1": 435.6000061035156, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 453.6000061035156, "y0": 425.52001953125, "x1": 489.9599914550781, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 490.67999267578125, "y0": 425.52001953125, "x1": 527.0399780273438, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 527.760009765625, "y0": 425.52001953125, "x1": 564.1199951171875, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 564.8400268554688, "y0": 425.52001953125, "x1": 601.2000122070312, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 601.9199829101562, "y0": 404.2799987792969, "x1": 636.8400268554688, "y1": 435.6000061035156, "width": 34.9200439453125, "height": 31.32000732421875}, {"x0": 637.5599975585938, "y0": 404.2799987792969, "x1": 672.47998046875, "y1": 435.6000061035156, "width": 34.91998291015625, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 404.2799987792969, "x1": 341.6400146484375, "y1": 424.79998779296875, "width": 36.360015869140625, "height": 20.519989013671875}, {"x0": 342.3599853515625, "y0": 404.2799987792969, "x1": 378.7200012207031, "y1": 424.79998779296875, "width": 36.360015869140625, "height": 20.519989013671875}, {"x0": 379.44000244140625, "y0": 404.2799987792969, "x1": 415.79998779296875, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 416.5199890136719, "y0": 404.2799987792969, "x1": 452.8800048828125, "y1": 424.79998779296875, "width": 36.360015869140625, "height": 20.519989013671875}, {"x0": 453.6000061035156, "y0": 404.2799987792969, "x1": 489.9599914550781, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 490.67999267578125, "y0": 404.2799987792969, "x1": 527.0399780273438, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 527.760009765625, "y0": 404.2799987792969, "x1": 564.1199951171875, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 564.8400268554688, "y0": 404.2799987792969, "x1": 601.2000122070312, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 219.60000610351562, "y0": 352.08001708984375, "x1": 304.55999755859375, "y1": 403.55999755859375, "width": 84.95999145507812, "height": 51.47998046875}, {"x0": 305.2799987792969, "y0": 352.08001708984375, "x1": 341.6400146484375, "y1": 403.55999755859375, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 342.3599853515625, "y0": 352.08001708984375, "x1": 378.7200012207031, "y1": 403.55999755859375, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 379.44000244140625, "y0": 352.08001708984375, "x1": 415.79998779296875, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 416.5199890136719, "y0": 352.08001708984375, "x1": 452.8800048828125, "y1": 403.55999755859375, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 453.6000061035156, "y0": 352.08001708984375, "x1": 489.9599914550781, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 490.67999267578125, "y0": 352.08001708984375, "x1": 527.0399780273438, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 527.760009765625, "y0": 352.08001708984375, "x1": 564.1199951171875, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 564.8400268554688, "y0": 352.08001708984375, "x1": 601.2000122070312, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 601.9199829101562, "y0": 352.08001708984375, "x1": 636.8400268554688, "y1": 403.55999755859375, "width": 34.9200439453125, "height": 51.47998046875}, {"x0": 637.5599975585938, "y0": 352.08001708984375, "x1": 672.47998046875, "y1": 403.55999755859375, "width": 34.91998291015625, "height": 51.47998046875}, {"x0": 219.60000610351562, "y0": 341.2799987792969, "x1": 304.55999755859375, "y1": 351.3599853515625, "width": 84.95999145507812, "height": 10.079986572265625}, {"x0": 305.2799987792969, "y0": 341.2799987792969, "x1": 341.6400146484375, "y1": 351.3599853515625, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 342.3599853515625, "y0": 341.2799987792969, "x1": 378.7200012207031, "y1": 351.3599853515625, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 379.44000244140625, "y0": 341.2799987792969, "x1": 415.79998779296875, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 416.5199890136719, "y0": 341.2799987792969, "x1": 452.8800048828125, "y1": 351.3599853515625, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 453.6000061035156, "y0": 341.2799987792969, "x1": 489.9599914550781, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 490.67999267578125, "y0": 341.2799987792969, "x1": 527.0399780273438, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 527.760009765625, "y0": 341.2799987792969, "x1": 564.1199951171875, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 564.8400268554688, "y0": 341.2799987792969, "x1": 601.2000122070312, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 601.9199829101562, "y0": 341.2799987792969, "x1": 636.8400268554688, "y1": 351.3599853515625, "width": 34.9200439453125, "height": 10.079986572265625}, {"x0": 637.5599975585938, "y0": 341.2799987792969, "x1": 672.47998046875, "y1": 351.3599853515625, "width": 34.91998291015625, "height": 10.079986572265625}, {"x0": 219.60000610351562, "y0": 253.44000244140625, "x1": 304.55999755859375, "y1": 284.760009765625, "width": 84.95999145507812, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 274.67999267578125, "x1": 341.6400146484375, "y1": 284.760009765625, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 342.3599853515625, "y0": 274.67999267578125, "x1": 378.7200012207031, "y1": 284.760009765625, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 379.44000244140625, "y0": 274.67999267578125, "x1": 415.79998779296875, "y1": 284.760009765625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 416.5199890136719, "y0": 274.67999267578125, "x1": 452.8800048828125, "y1": 284.760009765625, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 453.6000061035156, "y0": 274.67999267578125, "x1": 489.9599914550781, "y1": 284.760009765625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 490.67999267578125, "y0": 274.67999267578125, "x1": 527.0399780273438, "y1": 284.760009765625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 527.760009765625, "y0": 274.67999267578125, "x1": 564.1199951171875, "y1": 284.760009765625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 564.8400268554688, "y0": 274.67999267578125, "x1": 601.2000122070312, "y1": 284.760009765625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 601.9199829101562, "y0": 253.44000244140625, "x1": 636.8400268554688, "y1": 284.760009765625, "width": 34.9200439453125, "height": 31.32000732421875}, {"x0": 637.5599975585938, "y0": 253.44000244140625, "x1": 672.47998046875, "y1": 284.760009765625, "width": 34.91998291015625, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 253.44000244140625, "x1": 341.6400146484375, "y1": 273.9599914550781, "width": 36.360015869140625, "height": 20.519989013671875}, {"x0": 342.3599853515625, "y0": 253.44000244140625, "x1": 378.7200012207031, "y1": 273.9599914550781, "width": 36.360015869140625, "height": 20.519989013671875}, {"x0": 379.44000244140625, "y0": 253.44000244140625, "x1": 415.79998779296875, "y1": 273.9599914550781, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 416.5199890136719, "y0": 253.44000244140625, "x1": 452.8800048828125, "y1": 273.9599914550781, "width": 36.360015869140625, "height": 20.519989013671875}, {"x0": 453.6000061035156, "y0": 253.44000244140625, "x1": 489.9599914550781, "y1": 273.9599914550781, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 490.67999267578125, "y0": 253.44000244140625, "x1": 527.0399780273438, "y1": 273.9599914550781, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 527.760009765625, "y0": 253.44000244140625, "x1": 564.1199951171875, "y1": 273.9599914550781, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 564.8400268554688, "y0": 253.44000244140625, "x1": 601.2000122070312, "y1": 273.9599914550781, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 219.60000610351562, "y0": 201.239990234375, "x1": 304.55999755859375, "y1": 252.72000122070312, "width": 84.95999145507812, "height": 51.480010986328125}, {"x0": 305.2799987792969, "y0": 201.239990234375, "x1": 341.6400146484375, "y1": 252.72000122070312, "width": 36.360015869140625, "height": 51.480010986328125}, {"x0": 342.3599853515625, "y0": 201.239990234375, "x1": 378.7200012207031, "y1": 252.72000122070312, "width": 36.360015869140625, "height": 51.480010986328125}, {"x0": 379.44000244140625, "y0": 201.239990234375, "x1": 415.79998779296875, "y1": 252.72000122070312, "width": 36.3599853515625, "height": 51.480010986328125}, {"x0": 416.5199890136719, "y0": 201.239990234375, "x1": 452.8800048828125, "y1": 252.72000122070312, "width": 36.360015869140625, "height": 51.480010986328125}, {"x0": 453.6000061035156, "y0": 201.239990234375, "x1": 489.9599914550781, "y1": 252.72000122070312, "width": 36.3599853515625, "height": 51.480010986328125}, {"x0": 490.67999267578125, "y0": 201.239990234375, "x1": 527.0399780273438, "y1": 252.72000122070312, "width": 36.3599853515625, "height": 51.480010986328125}, {"x0": 527.760009765625, "y0": 201.239990234375, "x1": 564.1199951171875, "y1": 252.72000122070312, "width": 36.3599853515625, "height": 51.480010986328125}, {"x0": 564.8400268554688, "y0": 201.239990234375, "x1": 601.2000122070312, "y1": 252.72000122070312, "width": 36.3599853515625, "height": 51.480010986328125}, {"x0": 601.9199829101562, "y0": 201.239990234375, "x1": 636.8400268554688, "y1": 252.72000122070312, "width": 34.9200439453125, "height": 51.480010986328125}, {"x0": 637.5599975585938, "y0": 201.239990234375, "x1": 672.47998046875, "y1": 252.72000122070312, "width": 34.91998291015625, "height": 51.480010986328125}, {"x0": 219.60000610351562, "y0": 190.44000244140625, "x1": 304.55999755859375, "y1": 200.51998901367188, "width": 84.95999145507812, "height": 10.079986572265625}, {"x0": 305.2799987792969, "y0": 190.44000244140625, "x1": 341.6400146484375, "y1": 200.51998901367188, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 342.3599853515625, "y0": 190.44000244140625, "x1": 378.7200012207031, "y1": 200.51998901367188, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 379.44000244140625, "y0": 190.44000244140625, "x1": 415.79998779296875, "y1": 200.51998901367188, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 416.5199890136719, "y0": 190.44000244140625, "x1": 452.8800048828125, "y1": 200.51998901367188, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 453.6000061035156, "y0": 190.44000244140625, "x1": 489.9599914550781, "y1": 200.51998901367188, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 490.67999267578125, "y0": 190.44000244140625, "x1": 527.0399780273438, "y1": 200.51998901367188, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 527.760009765625, "y0": 190.44000244140625, "x1": 564.1199951171875, "y1": 200.51998901367188, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 564.8400268554688, "y0": 190.44000244140625, "x1": 601.2000122070312, "y1": 200.51998901367188, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 601.9199829101562, "y0": 190.44000244140625, "x1": 636.8400268554688, "y1": 200.51998901367188, "width": 34.9200439453125, "height": 10.079986572265625}, {"x0": 637.5599975585938, "y0": 190.44000244140625, "x1": 672.47998046875, "y1": 200.51998901367188, "width": 34.91998291015625, "height": 10.079986572265625}]}, {"pageInfo": {"number": 98, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 255.24000549316406, "y0": 347.4000244140625, "x1": 340.20001220703125, "y1": 378.7200012207031, "width": 84.96000671386719, "height": 31.319976806640625}, {"x0": 340.9200134277344, "y0": 368.6400146484375, "x1": 377.2799987792969, "y1": 378.7200012207031, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 378.0, "y0": 368.6400146484375, "x1": 414.3599853515625, "y1": 378.7200012207031, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 415.0799865722656, "y0": 368.6400146484375, "x1": 451.44000244140625, "y1": 378.7200012207031, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 452.1600036621094, "y0": 368.6400146484375, "x1": 488.5199890136719, "y1": 378.7200012207031, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 489.239990234375, "y0": 368.6400146484375, "x1": 525.5999755859375, "y1": 378.7200012207031, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 526.3200073242188, "y0": 368.6400146484375, "x1": 562.6799926757812, "y1": 378.7200012207031, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 563.4000244140625, "y0": 368.6400146484375, "x1": 599.760009765625, "y1": 378.7200012207031, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 600.47998046875, "y0": 368.6400146484375, "x1": 636.8400268554688, "y1": 378.7200012207031, "width": 36.36004638671875, "height": 10.079986572265625}, {"x0": 340.9200134277344, "y0": 347.4000244140625, "x1": 377.2799987792969, "y1": 367.91998291015625, "width": 36.3599853515625, "height": 20.51995849609375}, {"x0": 378.0, "y0": 347.4000244140625, "x1": 414.3599853515625, "y1": 367.91998291015625, "width": 36.3599853515625, "height": 20.51995849609375}, {"x0": 415.0799865722656, "y0": 347.4000244140625, "x1": 451.44000244140625, "y1": 367.91998291015625, "width": 36.360015869140625, "height": 20.51995849609375}, {"x0": 452.1600036621094, "y0": 347.4000244140625, "x1": 488.5199890136719, "y1": 367.91998291015625, "width": 36.3599853515625, "height": 20.51995849609375}, {"x0": 489.239990234375, "y0": 347.4000244140625, "x1": 525.5999755859375, "y1": 367.91998291015625, "width": 36.3599853515625, "height": 20.51995849609375}, {"x0": 526.3200073242188, "y0": 347.4000244140625, "x1": 562.6799926757812, "y1": 367.91998291015625, "width": 36.3599853515625, "height": 20.51995849609375}, {"x0": 563.4000244140625, "y0": 347.4000244140625, "x1": 599.760009765625, "y1": 367.91998291015625, "width": 36.3599853515625, "height": 20.51995849609375}, {"x0": 600.47998046875, "y0": 347.4000244140625, "x1": 636.8400268554688, "y1": 367.91998291015625, "width": 36.36004638671875, "height": 20.51995849609375}, {"x0": 255.24000549316406, "y0": 295.20001220703125, "x1": 340.20001220703125, "y1": 346.67999267578125, "width": 84.96000671386719, "height": 51.47998046875}, {"x0": 340.9200134277344, "y0": 295.20001220703125, "x1": 377.2799987792969, "y1": 346.67999267578125, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 378.0, "y0": 295.20001220703125, "x1": 414.3599853515625, "y1": 346.67999267578125, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 415.0799865722656, "y0": 295.20001220703125, "x1": 451.44000244140625, "y1": 346.67999267578125, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 452.1600036621094, "y0": 295.20001220703125, "x1": 488.5199890136719, "y1": 346.67999267578125, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 489.239990234375, "y0": 295.20001220703125, "x1": 525.5999755859375, "y1": 346.67999267578125, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 526.3200073242188, "y0": 295.20001220703125, "x1": 562.6799926757812, "y1": 346.67999267578125, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 563.4000244140625, "y0": 295.20001220703125, "x1": 599.760009765625, "y1": 346.67999267578125, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 600.47998046875, "y0": 295.20001220703125, "x1": 636.8400268554688, "y1": 346.67999267578125, "width": 36.36004638671875, "height": 51.47998046875}, {"x0": 255.24000549316406, "y0": 284.3999938964844, "x1": 340.20001220703125, "y1": 294.4800109863281, "width": 84.96000671386719, "height": 10.08001708984375}, {"x0": 340.9200134277344, "y0": 284.3999938964844, "x1": 377.2799987792969, "y1": 294.4800109863281, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 378.0, "y0": 284.3999938964844, "x1": 414.3599853515625, "y1": 294.4800109863281, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 415.0799865722656, "y0": 284.3999938964844, "x1": 451.44000244140625, "y1": 294.4800109863281, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 452.1600036621094, "y0": 284.3999938964844, "x1": 488.5199890136719, "y1": 294.4800109863281, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 489.239990234375, "y0": 284.3999938964844, "x1": 525.5999755859375, "y1": 294.4800109863281, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 526.3200073242188, "y0": 284.3999938964844, "x1": 562.6799926757812, "y1": 294.4800109863281, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 563.4000244140625, "y0": 284.3999938964844, "x1": 599.760009765625, "y1": 294.4800109863281, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 600.47998046875, "y0": 284.3999938964844, "x1": 636.8400268554688, "y1": 294.4800109863281, "width": 36.36004638671875, "height": 10.08001708984375}, {"x0": 219.60000610351562, "y0": 237.95999145507812, "x1": 304.55999755859375, "y1": 269.2799987792969, "width": 84.95999145507812, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 259.20001220703125, "x1": 341.6400146484375, "y1": 269.2799987792969, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 342.3599853515625, "y0": 259.20001220703125, "x1": 378.7200012207031, "y1": 269.2799987792969, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 379.44000244140625, "y0": 259.20001220703125, "x1": 415.79998779296875, "y1": 269.2799987792969, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 416.5199890136719, "y0": 259.20001220703125, "x1": 452.8800048828125, "y1": 269.2799987792969, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 453.6000061035156, "y0": 259.20001220703125, "x1": 489.9599914550781, "y1": 269.2799987792969, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 490.67999267578125, "y0": 259.20001220703125, "x1": 527.0399780273438, "y1": 269.2799987792969, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 527.760009765625, "y0": 259.20001220703125, "x1": 564.1199951171875, "y1": 269.2799987792969, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 564.8400268554688, "y0": 259.20001220703125, "x1": 601.2000122070312, "y1": 269.2799987792969, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 601.9199829101562, "y0": 237.95999145507812, "x1": 636.8400268554688, "y1": 269.2799987792969, "width": 34.9200439453125, "height": 31.32000732421875}, {"x0": 637.5599975585938, "y0": 237.95999145507812, "x1": 672.47998046875, "y1": 269.2799987792969, "width": 34.91998291015625, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 237.95999145507812, "x1": 341.6400146484375, "y1": 258.4800109863281, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 342.3599853515625, "y0": 237.95999145507812, "x1": 378.7200012207031, "y1": 258.4800109863281, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 379.44000244140625, "y0": 237.95999145507812, "x1": 415.79998779296875, "y1": 258.4800109863281, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 416.5199890136719, "y0": 237.95999145507812, "x1": 452.8800048828125, "y1": 258.4800109863281, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 453.6000061035156, "y0": 237.95999145507812, "x1": 489.9599914550781, "y1": 258.4800109863281, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 490.67999267578125, "y0": 237.95999145507812, "x1": 527.0399780273438, "y1": 258.4800109863281, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 527.760009765625, "y0": 237.95999145507812, "x1": 564.1199951171875, "y1": 258.4800109863281, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 564.8400268554688, "y0": 237.95999145507812, "x1": 601.2000122070312, "y1": 258.4800109863281, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 219.60000610351562, "y0": 185.760009765625, "x1": 304.55999755859375, "y1": 237.239990234375, "width": 84.95999145507812, "height": 51.47998046875}, {"x0": 305.2799987792969, "y0": 185.760009765625, "x1": 341.6400146484375, "y1": 237.239990234375, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 342.3599853515625, "y0": 185.760009765625, "x1": 378.7200012207031, "y1": 237.239990234375, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 379.44000244140625, "y0": 185.760009765625, "x1": 415.79998779296875, "y1": 237.239990234375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 416.5199890136719, "y0": 185.760009765625, "x1": 452.8800048828125, "y1": 237.239990234375, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 453.6000061035156, "y0": 185.760009765625, "x1": 489.9599914550781, "y1": 237.239990234375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 490.67999267578125, "y0": 185.760009765625, "x1": 527.0399780273438, "y1": 237.239990234375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 527.760009765625, "y0": 185.760009765625, "x1": 564.1199951171875, "y1": 237.239990234375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 564.8400268554688, "y0": 185.760009765625, "x1": 601.2000122070312, "y1": 237.239990234375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 601.9199829101562, "y0": 185.760009765625, "x1": 636.8400268554688, "y1": 237.239990234375, "width": 34.9200439453125, "height": 51.47998046875}, {"x0": 637.5599975585938, "y0": 185.760009765625, "x1": 672.47998046875, "y1": 237.239990234375, "width": 34.91998291015625, "height": 51.47998046875}, {"x0": 219.60000610351562, "y0": 174.95999145507812, "x1": 304.55999755859375, "y1": 185.04000854492188, "width": 84.95999145507812, "height": 10.08001708984375}, {"x0": 305.2799987792969, "y0": 174.95999145507812, "x1": 341.6400146484375, "y1": 185.04000854492188, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 342.3599853515625, "y0": 174.95999145507812, "x1": 378.7200012207031, "y1": 185.04000854492188, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 379.44000244140625, "y0": 174.95999145507812, "x1": 415.79998779296875, "y1": 185.04000854492188, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 416.5199890136719, "y0": 174.95999145507812, "x1": 452.8800048828125, "y1": 185.04000854492188, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 453.6000061035156, "y0": 174.95999145507812, "x1": 489.9599914550781, "y1": 185.04000854492188, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 490.67999267578125, "y0": 174.95999145507812, "x1": 527.0399780273438, "y1": 185.04000854492188, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 527.760009765625, "y0": 174.95999145507812, "x1": 564.1199951171875, "y1": 185.04000854492188, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 564.8400268554688, "y0": 174.95999145507812, "x1": 601.2000122070312, "y1": 185.04000854492188, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 601.9199829101562, "y0": 174.95999145507812, "x1": 636.8400268554688, "y1": 185.04000854492188, "width": 34.9200439453125, "height": 10.08001708984375}, {"x0": 637.5599975585938, "y0": 174.95999145507812, "x1": 672.47998046875, "y1": 185.04000854492188, "width": 34.91998291015625, "height": 10.08001708984375}]}, {"pageInfo": {"number": 99, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 247.67999267578125, "y0": 450.3599853515625, "x1": 333.0, "y1": 481.67999267578125, "width": 85.32000732421875, "height": 31.32000732421875}, {"x0": 333.3599853515625, "y0": 471.6000061035156, "x1": 372.9599914550781, "y1": 481.67999267578125, "width": 39.600006103515625, "height": 10.079986572265625}, {"x0": 373.67999267578125, "y0": 471.6000061035156, "x1": 412.9200134277344, "y1": 481.67999267578125, "width": 39.240020751953125, "height": 10.079986572265625}, {"x0": 413.6400146484375, "y0": 471.6000061035156, "x1": 450.0, "y1": 481.67999267578125, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 450.7200012207031, "y0": 471.6000061035156, "x1": 489.9599914550781, "y1": 481.67999267578125, "width": 39.239990234375, "height": 10.079986572265625}, {"x0": 490.67999267578125, "y0": 471.6000061035156, "x1": 529.9199829101562, "y1": 481.67999267578125, "width": 39.239990234375, "height": 10.079986572265625}, {"x0": 531.0, "y0": 471.6000061035156, "x1": 567.0, "y1": 481.67999267578125, "width": 36.0, "height": 10.079986572265625}, {"x0": 567.719970703125, "y0": 471.6000061035156, "x1": 607.3200073242188, "y1": 481.67999267578125, "width": 39.60003662109375, "height": 10.079986572265625}, {"x0": 608.0399780273438, "y0": 471.6000061035156, "x1": 644.4000244140625, "y1": 481.67999267578125, "width": 36.36004638671875, "height": 10.079986572265625}, {"x0": 333.3599853515625, "y0": 450.3599853515625, "x1": 372.9599914550781, "y1": 470.8800048828125, "width": 39.600006103515625, "height": 20.52001953125}, {"x0": 373.67999267578125, "y0": 450.3599853515625, "x1": 412.9200134277344, "y1": 470.8800048828125, "width": 39.240020751953125, "height": 20.52001953125}, {"x0": 413.6400146484375, "y0": 450.3599853515625, "x1": 450.0, "y1": 470.8800048828125, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 450.7200012207031, "y0": 450.3599853515625, "x1": 489.9599914550781, "y1": 470.8800048828125, "width": 39.239990234375, "height": 20.52001953125}, {"x0": 490.67999267578125, "y0": 450.3599853515625, "x1": 529.9199829101562, "y1": 470.8800048828125, "width": 39.239990234375, "height": 20.52001953125}, {"x0": 531.0, "y0": 450.3599853515625, "x1": 567.0, "y1": 470.8800048828125, "width": 36.0, "height": 20.52001953125}, {"x0": 567.719970703125, "y0": 450.3599853515625, "x1": 607.3200073242188, "y1": 470.8800048828125, "width": 39.60003662109375, "height": 20.52001953125}, {"x0": 608.0399780273438, "y0": 450.3599853515625, "x1": 644.4000244140625, "y1": 470.8800048828125, "width": 36.36004638671875, "height": 20.52001953125}, {"x0": 247.67999267578125, "y0": 398.1600036621094, "x1": 333.0, "y1": 449.6400146484375, "width": 85.32000732421875, "height": 51.480010986328125}, {"x0": 333.3599853515625, "y0": 398.1600036621094, "x1": 372.9599914550781, "y1": 449.6400146484375, "width": 39.600006103515625, "height": 51.480010986328125}, {"x0": 373.67999267578125, "y0": 398.1600036621094, "x1": 412.9200134277344, "y1": 449.6400146484375, "width": 39.240020751953125, "height": 51.480010986328125}, {"x0": 413.6400146484375, "y0": 398.1600036621094, "x1": 450.0, "y1": 449.6400146484375, "width": 36.3599853515625, "height": 51.480010986328125}, {"x0": 450.7200012207031, "y0": 398.1600036621094, "x1": 489.9599914550781, "y1": 449.6400146484375, "width": 39.239990234375, "height": 51.480010986328125}, {"x0": 490.67999267578125, "y0": 398.1600036621094, "x1": 529.9199829101562, "y1": 449.6400146484375, "width": 39.239990234375, "height": 51.480010986328125}, {"x0": 531.0, "y0": 398.1600036621094, "x1": 567.0, "y1": 449.6400146484375, "width": 36.0, "height": 51.480010986328125}, {"x0": 567.719970703125, "y0": 398.1600036621094, "x1": 607.3200073242188, "y1": 449.6400146484375, "width": 39.60003662109375, "height": 51.480010986328125}, {"x0": 608.0399780273438, "y0": 398.1600036621094, "x1": 644.4000244140625, "y1": 449.6400146484375, "width": 36.36004638671875, "height": 51.480010986328125}, {"x0": 247.67999267578125, "y0": 387.0, "x1": 333.0, "y1": 397.44000244140625, "width": 85.32000732421875, "height": 10.44000244140625}, {"x0": 333.3599853515625, "y0": 387.0, "x1": 372.9599914550781, "y1": 397.44000244140625, "width": 39.600006103515625, "height": 10.44000244140625}, {"x0": 373.67999267578125, "y0": 387.0, "x1": 412.9200134277344, "y1": 397.44000244140625, "width": 39.240020751953125, "height": 10.44000244140625}, {"x0": 413.6400146484375, "y0": 387.0, "x1": 450.0, "y1": 397.44000244140625, "width": 36.3599853515625, "height": 10.44000244140625}, {"x0": 450.7200012207031, "y0": 387.0, "x1": 489.9599914550781, "y1": 397.44000244140625, "width": 39.239990234375, "height": 10.44000244140625}, {"x0": 490.67999267578125, "y0": 387.0, "x1": 530.280029296875, "y1": 397.44000244140625, "width": 39.60003662109375, "height": 10.44000244140625}, {"x0": 530.6400146484375, "y0": 387.3599853515625, "x1": 567.0, "y1": 397.44000244140625, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 567.719970703125, "y0": 387.0, "x1": 607.3200073242188, "y1": 397.44000244140625, "width": 39.60003662109375, "height": 10.44000244140625}, {"x0": 608.0399780273438, "y0": 387.0, "x1": 644.4000244140625, "y1": 397.44000244140625, "width": 36.36004638671875, "height": 10.44000244140625}, {"x0": 205.55999755859375, "y0": 340.91998291015625, "x1": 290.5199890136719, "y1": 372.239990234375, "width": 84.95999145507812, "height": 31.32000732421875}, {"x0": 291.239990234375, "y0": 362.1600036621094, "x1": 330.8399963378906, "y1": 372.239990234375, "width": 39.600006103515625, "height": 10.079986572265625}, {"x0": 331.20001220703125, "y0": 362.1600036621094, "x1": 370.79998779296875, "y1": 372.239990234375, "width": 39.5999755859375, "height": 10.079986572265625}, {"x0": 371.1600036621094, "y0": 362.1600036621094, "x1": 410.760009765625, "y1": 372.239990234375, "width": 39.600006103515625, "height": 10.079986572265625}, {"x0": 411.4800109863281, "y0": 362.1600036621094, "x1": 450.7200012207031, "y1": 372.239990234375, "width": 39.239990234375, "height": 10.079986572265625}, {"x0": 451.44000244140625, "y0": 362.1600036621094, "x1": 491.0400085449219, "y1": 372.239990234375, "width": 39.600006103515625, "height": 10.079986572265625}, {"x0": 491.3999938964844, "y0": 362.1600036621094, "x1": 531.0, "y1": 372.239990234375, "width": 39.600006103515625, "height": 10.079986572265625}, {"x0": 531.3599853515625, "y0": 362.1600036621094, "x1": 570.9600219726562, "y1": 372.239990234375, "width": 39.60003662109375, "height": 10.079986572265625}, {"x0": 571.6799926757812, "y0": 362.1600036621094, "x1": 610.9199829101562, "y1": 372.239990234375, "width": 39.239990234375, "height": 10.079986572265625}, {"x0": 611.6400146484375, "y0": 340.91998291015625, "x1": 650.8800048828125, "y1": 372.239990234375, "width": 39.239990234375, "height": 31.32000732421875}, {"x0": 651.5999755859375, "y0": 340.91998291015625, "x1": 686.52001953125, "y1": 372.239990234375, "width": 34.9200439453125, "height": 31.32000732421875}, {"x0": 291.239990234375, "y0": 340.91998291015625, "x1": 330.4800109863281, "y1": 361.44000244140625, "width": 39.240020751953125, "height": 20.52001953125}, {"x0": 331.20001220703125, "y0": 340.91998291015625, "x1": 370.79998779296875, "y1": 361.44000244140625, "width": 39.5999755859375, "height": 20.52001953125}, {"x0": 371.1600036621094, "y0": 340.91998291015625, "x1": 410.760009765625, "y1": 361.44000244140625, "width": 39.600006103515625, "height": 20.52001953125}, {"x0": 411.4800109863281, "y0": 340.91998291015625, "x1": 450.7200012207031, "y1": 361.44000244140625, "width": 39.239990234375, "height": 20.52001953125}, {"x0": 451.44000244140625, "y0": 340.91998291015625, "x1": 490.67999267578125, "y1": 361.44000244140625, "width": 39.239990234375, "height": 20.52001953125}, {"x0": 491.3999938964844, "y0": 340.91998291015625, "x1": 530.6400146484375, "y1": 361.44000244140625, "width": 39.240020751953125, "height": 20.52001953125}, {"x0": 531.719970703125, "y0": 340.91998291015625, "x1": 570.9600219726562, "y1": 361.44000244140625, "width": 39.24005126953125, "height": 20.52001953125}, {"x0": 571.6799926757812, "y0": 340.91998291015625, "x1": 610.9199829101562, "y1": 361.44000244140625, "width": 39.239990234375, "height": 20.52001953125}, {"x0": 205.55999755859375, "y0": 288.7200012207031, "x1": 290.5199890136719, "y1": 340.20001220703125, "width": 84.95999145507812, "height": 51.480010986328125}, {"x0": 291.239990234375, "y0": 288.7200012207031, "x1": 330.4800109863281, "y1": 340.20001220703125, "width": 39.240020751953125, "height": 51.480010986328125}, {"x0": 331.20001220703125, "y0": 288.7200012207031, "x1": 370.79998779296875, "y1": 340.20001220703125, "width": 39.5999755859375, "height": 51.480010986328125}, {"x0": 371.1600036621094, "y0": 288.7200012207031, "x1": 410.760009765625, "y1": 340.20001220703125, "width": 39.600006103515625, "height": 51.480010986328125}, {"x0": 411.4800109863281, "y0": 288.7200012207031, "x1": 450.7200012207031, "y1": 340.20001220703125, "width": 39.239990234375, "height": 51.480010986328125}, {"x0": 451.44000244140625, "y0": 288.7200012207031, "x1": 490.67999267578125, "y1": 340.20001220703125, "width": 39.239990234375, "height": 51.480010986328125}, {"x0": 491.3999938964844, "y0": 288.7200012207031, "x1": 530.6400146484375, "y1": 340.20001220703125, "width": 39.240020751953125, "height": 51.480010986328125}, {"x0": 531.719970703125, "y0": 288.7200012207031, "x1": 570.9600219726562, "y1": 340.20001220703125, "width": 39.24005126953125, "height": 51.480010986328125}, {"x0": 571.6799926757812, "y0": 288.7200012207031, "x1": 610.9199829101562, "y1": 340.20001220703125, "width": 39.239990234375, "height": 51.480010986328125}, {"x0": 611.6400146484375, "y0": 288.7200012207031, "x1": 650.8800048828125, "y1": 340.20001220703125, "width": 39.239990234375, "height": 51.480010986328125}, {"x0": 651.5999755859375, "y0": 288.7200012207031, "x1": 686.52001953125, "y1": 340.20001220703125, "width": 34.9200439453125, "height": 51.480010986328125}, {"x0": 205.55999755859375, "y0": 277.55999755859375, "x1": 290.5199890136719, "y1": 288.0, "width": 84.95999145507812, "height": 10.44000244140625}, {"x0": 291.239990234375, "y0": 277.55999755859375, "x1": 330.4800109863281, "y1": 288.0, "width": 39.240020751953125, "height": 10.44000244140625}, {"x0": 331.20001220703125, "y0": 277.55999755859375, "x1": 370.79998779296875, "y1": 288.0, "width": 39.5999755859375, "height": 10.44000244140625}, {"x0": 371.1600036621094, "y0": 277.55999755859375, "x1": 410.760009765625, "y1": 288.0, "width": 39.600006103515625, "height": 10.44000244140625}, {"x0": 411.4800109863281, "y0": 277.55999755859375, "x1": 450.7200012207031, "y1": 288.0, "width": 39.239990234375, "height": 10.44000244140625}, {"x0": 451.44000244140625, "y0": 277.55999755859375, "x1": 490.67999267578125, "y1": 288.0, "width": 39.239990234375, "height": 10.44000244140625}, {"x0": 491.3999938964844, "y0": 277.55999755859375, "x1": 530.6400146484375, "y1": 288.0, "width": 39.240020751953125, "height": 10.44000244140625}, {"x0": 531.719970703125, "y0": 277.55999755859375, "x1": 570.9600219726562, "y1": 288.0, "width": 39.24005126953125, "height": 10.44000244140625}, {"x0": 571.6799926757812, "y0": 277.55999755859375, "x1": 610.9199829101562, "y1": 288.0, "width": 39.239990234375, "height": 10.44000244140625}, {"x0": 611.6400146484375, "y0": 277.55999755859375, "x1": 650.8800048828125, "y1": 288.0, "width": 39.239990234375, "height": 10.44000244140625}, {"x0": 651.5999755859375, "y0": 277.55999755859375, "x1": 686.52001953125, "y1": 288.0, "width": 34.9200439453125, "height": 10.44000244140625}]}, {"pageInfo": {"number": 100, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 219.60000610351562, "y0": 404.2799987792969, "x1": 304.55999755859375, "y1": 435.6000061035156, "width": 84.95999145507812, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 425.52001953125, "x1": 341.6400146484375, "y1": 435.6000061035156, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 342.3599853515625, "y0": 425.52001953125, "x1": 378.7200012207031, "y1": 435.6000061035156, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 379.44000244140625, "y0": 425.52001953125, "x1": 415.79998779296875, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 416.5199890136719, "y0": 425.52001953125, "x1": 452.8800048828125, "y1": 435.6000061035156, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 453.6000061035156, "y0": 425.52001953125, "x1": 489.9599914550781, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 490.67999267578125, "y0": 425.52001953125, "x1": 527.0399780273438, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 527.760009765625, "y0": 425.52001953125, "x1": 564.1199951171875, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 564.8400268554688, "y0": 425.52001953125, "x1": 601.2000122070312, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 601.9199829101562, "y0": 404.2799987792969, "x1": 636.8400268554688, "y1": 435.6000061035156, "width": 34.9200439453125, "height": 31.32000732421875}, {"x0": 637.5599975585938, "y0": 404.2799987792969, "x1": 672.47998046875, "y1": 435.6000061035156, "width": 34.91998291015625, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 404.2799987792969, "x1": 341.6400146484375, "y1": 424.79998779296875, "width": 36.360015869140625, "height": 20.519989013671875}, {"x0": 342.3599853515625, "y0": 404.2799987792969, "x1": 378.7200012207031, "y1": 424.79998779296875, "width": 36.360015869140625, "height": 20.519989013671875}, {"x0": 379.44000244140625, "y0": 404.2799987792969, "x1": 415.79998779296875, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 416.5199890136719, "y0": 404.2799987792969, "x1": 452.8800048828125, "y1": 424.79998779296875, "width": 36.360015869140625, "height": 20.519989013671875}, {"x0": 453.6000061035156, "y0": 404.2799987792969, "x1": 489.9599914550781, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 490.67999267578125, "y0": 404.2799987792969, "x1": 527.0399780273438, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 527.760009765625, "y0": 404.2799987792969, "x1": 564.1199951171875, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 564.8400268554688, "y0": 404.2799987792969, "x1": 601.2000122070312, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 219.60000610351562, "y0": 352.08001708984375, "x1": 304.55999755859375, "y1": 403.55999755859375, "width": 84.95999145507812, "height": 51.47998046875}, {"x0": 305.2799987792969, "y0": 352.08001708984375, "x1": 341.6400146484375, "y1": 403.55999755859375, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 342.3599853515625, "y0": 352.08001708984375, "x1": 378.7200012207031, "y1": 403.55999755859375, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 379.44000244140625, "y0": 352.08001708984375, "x1": 415.79998779296875, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 416.5199890136719, "y0": 352.08001708984375, "x1": 452.8800048828125, "y1": 403.55999755859375, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 453.6000061035156, "y0": 352.08001708984375, "x1": 489.9599914550781, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 490.67999267578125, "y0": 352.08001708984375, "x1": 527.0399780273438, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 527.760009765625, "y0": 352.08001708984375, "x1": 564.1199951171875, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 564.8400268554688, "y0": 352.08001708984375, "x1": 601.2000122070312, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 601.9199829101562, "y0": 352.08001708984375, "x1": 636.8400268554688, "y1": 403.55999755859375, "width": 34.9200439453125, "height": 51.47998046875}, {"x0": 637.5599975585938, "y0": 352.08001708984375, "x1": 672.47998046875, "y1": 403.55999755859375, "width": 34.91998291015625, "height": 51.47998046875}, {"x0": 219.60000610351562, "y0": 341.2799987792969, "x1": 304.55999755859375, "y1": 351.3599853515625, "width": 84.95999145507812, "height": 10.079986572265625}, {"x0": 305.2799987792969, "y0": 341.2799987792969, "x1": 341.6400146484375, "y1": 351.3599853515625, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 342.3599853515625, "y0": 341.2799987792969, "x1": 378.7200012207031, "y1": 351.3599853515625, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 379.44000244140625, "y0": 341.2799987792969, "x1": 415.79998779296875, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 416.5199890136719, "y0": 341.2799987792969, "x1": 452.8800048828125, "y1": 351.3599853515625, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 453.6000061035156, "y0": 341.2799987792969, "x1": 489.9599914550781, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 490.67999267578125, "y0": 341.2799987792969, "x1": 527.0399780273438, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 527.760009765625, "y0": 341.2799987792969, "x1": 564.1199951171875, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 564.8400268554688, "y0": 341.2799987792969, "x1": 601.2000122070312, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 601.9199829101562, "y0": 341.2799987792969, "x1": 636.8400268554688, "y1": 351.3599853515625, "width": 34.9200439453125, "height": 10.079986572265625}, {"x0": 637.5599975585938, "y0": 341.2799987792969, "x1": 672.47998046875, "y1": 351.3599853515625, "width": 34.91998291015625, "height": 10.079986572265625}, {"x0": 219.60000610351562, "y0": 271.79998779296875, "x1": 304.55999755859375, "y1": 303.1199951171875, "width": 84.95999145507812, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 293.0400085449219, "x1": 341.6400146484375, "y1": 303.1199951171875, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 342.3599853515625, "y0": 293.0400085449219, "x1": 378.7200012207031, "y1": 303.1199951171875, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 379.44000244140625, "y0": 293.0400085449219, "x1": 415.79998779296875, "y1": 303.1199951171875, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 416.5199890136719, "y0": 293.0400085449219, "x1": 452.8800048828125, "y1": 303.1199951171875, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 453.6000061035156, "y0": 293.0400085449219, "x1": 489.9599914550781, "y1": 303.1199951171875, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 490.67999267578125, "y0": 293.0400085449219, "x1": 527.0399780273438, "y1": 303.1199951171875, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 527.760009765625, "y0": 293.0400085449219, "x1": 564.1199951171875, "y1": 303.1199951171875, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 564.8400268554688, "y0": 293.0400085449219, "x1": 601.2000122070312, "y1": 303.1199951171875, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 601.9199829101562, "y0": 271.79998779296875, "x1": 636.8400268554688, "y1": 303.1199951171875, "width": 34.9200439453125, "height": 31.32000732421875}, {"x0": 637.5599975585938, "y0": 271.79998779296875, "x1": 672.47998046875, "y1": 303.1199951171875, "width": 34.91998291015625, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 271.79998779296875, "x1": 341.6400146484375, "y1": 292.32000732421875, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 342.3599853515625, "y0": 271.79998779296875, "x1": 378.7200012207031, "y1": 292.32000732421875, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 379.44000244140625, "y0": 271.79998779296875, "x1": 415.79998779296875, "y1": 292.32000732421875, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 416.5199890136719, "y0": 271.79998779296875, "x1": 452.8800048828125, "y1": 292.32000732421875, "width": 36.360015869140625, "height": 20.52001953125}, {"x0": 453.6000061035156, "y0": 271.79998779296875, "x1": 489.9599914550781, "y1": 292.32000732421875, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 490.67999267578125, "y0": 271.79998779296875, "x1": 527.0399780273438, "y1": 292.32000732421875, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 527.760009765625, "y0": 271.79998779296875, "x1": 564.1199951171875, "y1": 292.32000732421875, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 564.8400268554688, "y0": 271.79998779296875, "x1": 601.2000122070312, "y1": 292.32000732421875, "width": 36.3599853515625, "height": 20.52001953125}, {"x0": 219.60000610351562, "y0": 219.60000610351562, "x1": 304.55999755859375, "y1": 271.08001708984375, "width": 84.95999145507812, "height": 51.480010986328125}, {"x0": 305.2799987792969, "y0": 219.60000610351562, "x1": 341.6400146484375, "y1": 271.08001708984375, "width": 36.360015869140625, "height": 51.480010986328125}, {"x0": 342.3599853515625, "y0": 219.60000610351562, "x1": 378.7200012207031, "y1": 271.08001708984375, "width": 36.360015869140625, "height": 51.480010986328125}, {"x0": 379.44000244140625, "y0": 219.60000610351562, "x1": 415.79998779296875, "y1": 271.08001708984375, "width": 36.3599853515625, "height": 51.480010986328125}, {"x0": 416.5199890136719, "y0": 219.60000610351562, "x1": 452.8800048828125, "y1": 271.08001708984375, "width": 36.360015869140625, "height": 51.480010986328125}, {"x0": 453.6000061035156, "y0": 219.60000610351562, "x1": 489.9599914550781, "y1": 271.08001708984375, "width": 36.3599853515625, "height": 51.480010986328125}, {"x0": 490.67999267578125, "y0": 219.60000610351562, "x1": 527.0399780273438, "y1": 271.08001708984375, "width": 36.3599853515625, "height": 51.480010986328125}, {"x0": 527.760009765625, "y0": 219.60000610351562, "x1": 564.1199951171875, "y1": 271.08001708984375, "width": 36.3599853515625, "height": 51.480010986328125}, {"x0": 564.8400268554688, "y0": 219.60000610351562, "x1": 601.2000122070312, "y1": 271.08001708984375, "width": 36.3599853515625, "height": 51.480010986328125}, {"x0": 601.9199829101562, "y0": 219.60000610351562, "x1": 636.8400268554688, "y1": 271.08001708984375, "width": 34.9200439453125, "height": 51.480010986328125}, {"x0": 637.5599975585938, "y0": 219.60000610351562, "x1": 672.47998046875, "y1": 271.08001708984375, "width": 34.91998291015625, "height": 51.480010986328125}, {"x0": 219.60000610351562, "y0": 208.79998779296875, "x1": 304.55999755859375, "y1": 218.8800048828125, "width": 84.95999145507812, "height": 10.08001708984375}, {"x0": 305.2799987792969, "y0": 208.79998779296875, "x1": 341.6400146484375, "y1": 218.8800048828125, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 342.3599853515625, "y0": 208.79998779296875, "x1": 378.7200012207031, "y1": 218.8800048828125, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 379.44000244140625, "y0": 208.79998779296875, "x1": 415.79998779296875, "y1": 218.8800048828125, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 416.5199890136719, "y0": 208.79998779296875, "x1": 452.8800048828125, "y1": 218.8800048828125, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 453.6000061035156, "y0": 208.79998779296875, "x1": 489.9599914550781, "y1": 218.8800048828125, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 490.67999267578125, "y0": 208.79998779296875, "x1": 527.0399780273438, "y1": 218.8800048828125, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 527.760009765625, "y0": 208.79998779296875, "x1": 564.1199951171875, "y1": 218.8800048828125, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 564.8400268554688, "y0": 208.79998779296875, "x1": 601.2000122070312, "y1": 218.8800048828125, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 601.9199829101562, "y0": 208.79998779296875, "x1": 636.8400268554688, "y1": 218.8800048828125, "width": 34.9200439453125, "height": 10.08001708984375}, {"x0": 637.5599975585938, "y0": 208.79998779296875, "x1": 672.47998046875, "y1": 218.8800048828125, "width": 34.91998291015625, "height": 10.08001708984375}]}, {"pageInfo": {"number": 101, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 219.60000610351562, "y0": 404.2799987792969, "x1": 304.55999755859375, "y1": 435.6000061035156, "width": 84.95999145507812, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 425.52001953125, "x1": 341.6400146484375, "y1": 435.6000061035156, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 342.3599853515625, "y0": 425.52001953125, "x1": 378.7200012207031, "y1": 435.6000061035156, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 379.44000244140625, "y0": 425.52001953125, "x1": 415.79998779296875, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 416.5199890136719, "y0": 425.52001953125, "x1": 452.8800048828125, "y1": 435.6000061035156, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 453.6000061035156, "y0": 425.52001953125, "x1": 489.9599914550781, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 490.67999267578125, "y0": 425.52001953125, "x1": 527.0399780273438, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 527.760009765625, "y0": 425.52001953125, "x1": 564.1199951171875, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 564.8400268554688, "y0": 425.52001953125, "x1": 601.2000122070312, "y1": 435.6000061035156, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 601.9199829101562, "y0": 404.2799987792969, "x1": 636.8400268554688, "y1": 435.6000061035156, "width": 34.9200439453125, "height": 31.32000732421875}, {"x0": 637.5599975585938, "y0": 404.2799987792969, "x1": 672.47998046875, "y1": 435.6000061035156, "width": 34.91998291015625, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 404.2799987792969, "x1": 341.6400146484375, "y1": 424.79998779296875, "width": 36.360015869140625, "height": 20.519989013671875}, {"x0": 342.3599853515625, "y0": 404.2799987792969, "x1": 378.7200012207031, "y1": 424.79998779296875, "width": 36.360015869140625, "height": 20.519989013671875}, {"x0": 379.44000244140625, "y0": 404.2799987792969, "x1": 415.79998779296875, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 416.5199890136719, "y0": 404.2799987792969, "x1": 452.8800048828125, "y1": 424.79998779296875, "width": 36.360015869140625, "height": 20.519989013671875}, {"x0": 453.6000061035156, "y0": 404.2799987792969, "x1": 489.9599914550781, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 490.67999267578125, "y0": 404.2799987792969, "x1": 527.0399780273438, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 527.760009765625, "y0": 404.2799987792969, "x1": 564.1199951171875, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 564.8400268554688, "y0": 404.2799987792969, "x1": 601.2000122070312, "y1": 424.79998779296875, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 219.60000610351562, "y0": 352.08001708984375, "x1": 304.55999755859375, "y1": 403.55999755859375, "width": 84.95999145507812, "height": 51.47998046875}, {"x0": 305.2799987792969, "y0": 352.08001708984375, "x1": 341.6400146484375, "y1": 403.55999755859375, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 342.3599853515625, "y0": 352.08001708984375, "x1": 378.7200012207031, "y1": 403.55999755859375, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 379.44000244140625, "y0": 352.08001708984375, "x1": 415.79998779296875, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 416.5199890136719, "y0": 352.08001708984375, "x1": 452.8800048828125, "y1": 403.55999755859375, "width": 36.360015869140625, "height": 51.47998046875}, {"x0": 453.6000061035156, "y0": 352.08001708984375, "x1": 489.9599914550781, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 490.67999267578125, "y0": 352.08001708984375, "x1": 527.0399780273438, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 527.760009765625, "y0": 352.08001708984375, "x1": 564.1199951171875, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 564.8400268554688, "y0": 352.08001708984375, "x1": 601.2000122070312, "y1": 403.55999755859375, "width": 36.3599853515625, "height": 51.47998046875}, {"x0": 601.9199829101562, "y0": 352.08001708984375, "x1": 636.8400268554688, "y1": 403.55999755859375, "width": 34.9200439453125, "height": 51.47998046875}, {"x0": 637.5599975585938, "y0": 352.08001708984375, "x1": 672.47998046875, "y1": 403.55999755859375, "width": 34.91998291015625, "height": 51.47998046875}, {"x0": 219.60000610351562, "y0": 341.2799987792969, "x1": 304.55999755859375, "y1": 351.3599853515625, "width": 84.95999145507812, "height": 10.079986572265625}, {"x0": 305.2799987792969, "y0": 341.2799987792969, "x1": 341.6400146484375, "y1": 351.3599853515625, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 342.3599853515625, "y0": 341.2799987792969, "x1": 378.7200012207031, "y1": 351.3599853515625, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 379.44000244140625, "y0": 341.2799987792969, "x1": 415.79998779296875, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 416.5199890136719, "y0": 341.2799987792969, "x1": 452.8800048828125, "y1": 351.3599853515625, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 453.6000061035156, "y0": 341.2799987792969, "x1": 489.9599914550781, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 490.67999267578125, "y0": 341.2799987792969, "x1": 527.0399780273438, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 527.760009765625, "y0": 341.2799987792969, "x1": 564.1199951171875, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 564.8400268554688, "y0": 341.2799987792969, "x1": 601.2000122070312, "y1": 351.3599853515625, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 601.9199829101562, "y0": 341.2799987792969, "x1": 636.8400268554688, "y1": 351.3599853515625, "width": 34.9200439453125, "height": 10.079986572265625}, {"x0": 637.5599975585938, "y0": 341.2799987792969, "x1": 672.47998046875, "y1": 351.3599853515625, "width": 34.91998291015625, "height": 10.079986572265625}, {"x0": 219.60000610351562, "y0": 248.760009765625, "x1": 304.55999755859375, "y1": 280.08001708984375, "width": 84.95999145507812, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 270.0, "x1": 341.6400146484375, "y1": 280.08001708984375, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 342.3599853515625, "y0": 270.0, "x1": 378.7200012207031, "y1": 280.08001708984375, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 379.44000244140625, "y0": 270.0, "x1": 415.79998779296875, "y1": 280.08001708984375, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 416.5199890136719, "y0": 270.0, "x1": 452.8800048828125, "y1": 280.08001708984375, "width": 36.360015869140625, "height": 10.08001708984375}, {"x0": 453.6000061035156, "y0": 270.0, "x1": 489.9599914550781, "y1": 280.08001708984375, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 490.67999267578125, "y0": 270.0, "x1": 527.0399780273438, "y1": 280.08001708984375, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 527.760009765625, "y0": 270.0, "x1": 564.1199951171875, "y1": 280.08001708984375, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 564.8400268554688, "y0": 270.0, "x1": 601.2000122070312, "y1": 280.08001708984375, "width": 36.3599853515625, "height": 10.08001708984375}, {"x0": 601.9199829101562, "y0": 248.760009765625, "x1": 636.8400268554688, "y1": 280.08001708984375, "width": 34.9200439453125, "height": 31.32000732421875}, {"x0": 637.5599975585938, "y0": 248.760009765625, "x1": 672.47998046875, "y1": 280.08001708984375, "width": 34.91998291015625, "height": 31.32000732421875}, {"x0": 305.2799987792969, "y0": 248.760009765625, "x1": 341.6400146484375, "y1": 269.2799987792969, "width": 36.360015869140625, "height": 20.519989013671875}, {"x0": 342.3599853515625, "y0": 248.760009765625, "x1": 378.7200012207031, "y1": 269.2799987792969, "width": 36.360015869140625, "height": 20.519989013671875}, {"x0": 379.44000244140625, "y0": 248.760009765625, "x1": 415.79998779296875, "y1": 269.2799987792969, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 416.5199890136719, "y0": 248.760009765625, "x1": 452.8800048828125, "y1": 269.2799987792969, "width": 36.360015869140625, "height": 20.519989013671875}, {"x0": 453.6000061035156, "y0": 248.760009765625, "x1": 489.9599914550781, "y1": 269.2799987792969, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 490.67999267578125, "y0": 248.760009765625, "x1": 527.0399780273438, "y1": 269.2799987792969, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 527.760009765625, "y0": 248.760009765625, "x1": 564.1199951171875, "y1": 269.2799987792969, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 564.8400268554688, "y0": 248.760009765625, "x1": 601.2000122070312, "y1": 269.2799987792969, "width": 36.3599853515625, "height": 20.519989013671875}, {"x0": 219.60000610351562, "y0": 196.55999755859375, "x1": 304.55999755859375, "y1": 248.04000854492188, "width": 84.95999145507812, "height": 51.480010986328125}, {"x0": 305.2799987792969, "y0": 196.55999755859375, "x1": 341.6400146484375, "y1": 248.04000854492188, "width": 36.360015869140625, "height": 51.480010986328125}, {"x0": 342.3599853515625, "y0": 196.55999755859375, "x1": 378.7200012207031, "y1": 248.04000854492188, "width": 36.360015869140625, "height": 51.480010986328125}, {"x0": 379.44000244140625, "y0": 196.55999755859375, "x1": 415.79998779296875, "y1": 248.04000854492188, "width": 36.3599853515625, "height": 51.480010986328125}, {"x0": 416.5199890136719, "y0": 196.55999755859375, "x1": 452.8800048828125, "y1": 248.04000854492188, "width": 36.360015869140625, "height": 51.480010986328125}, {"x0": 453.6000061035156, "y0": 196.55999755859375, "x1": 489.9599914550781, "y1": 248.04000854492188, "width": 36.3599853515625, "height": 51.480010986328125}, {"x0": 490.67999267578125, "y0": 196.55999755859375, "x1": 527.0399780273438, "y1": 248.04000854492188, "width": 36.3599853515625, "height": 51.480010986328125}, {"x0": 527.760009765625, "y0": 196.55999755859375, "x1": 564.1199951171875, "y1": 248.04000854492188, "width": 36.3599853515625, "height": 51.480010986328125}, {"x0": 564.8400268554688, "y0": 196.55999755859375, "x1": 601.2000122070312, "y1": 248.04000854492188, "width": 36.3599853515625, "height": 51.480010986328125}, {"x0": 601.9199829101562, "y0": 196.55999755859375, "x1": 636.8400268554688, "y1": 248.04000854492188, "width": 34.9200439453125, "height": 51.480010986328125}, {"x0": 637.5599975585938, "y0": 196.55999755859375, "x1": 672.47998046875, "y1": 248.04000854492188, "width": 34.91998291015625, "height": 51.480010986328125}, {"x0": 219.60000610351562, "y0": 185.760009765625, "x1": 304.55999755859375, "y1": 195.83999633789062, "width": 84.95999145507812, "height": 10.079986572265625}, {"x0": 305.2799987792969, "y0": 185.760009765625, "x1": 341.6400146484375, "y1": 195.83999633789062, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 342.3599853515625, "y0": 185.760009765625, "x1": 378.7200012207031, "y1": 195.83999633789062, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 379.44000244140625, "y0": 185.760009765625, "x1": 415.79998779296875, "y1": 195.83999633789062, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 416.5199890136719, "y0": 185.760009765625, "x1": 452.8800048828125, "y1": 195.83999633789062, "width": 36.360015869140625, "height": 10.079986572265625}, {"x0": 453.6000061035156, "y0": 185.760009765625, "x1": 489.9599914550781, "y1": 195.83999633789062, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 490.67999267578125, "y0": 185.760009765625, "x1": 527.0399780273438, "y1": 195.83999633789062, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 527.760009765625, "y0": 185.760009765625, "x1": 564.1199951171875, "y1": 195.83999633789062, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 564.8400268554688, "y0": 185.760009765625, "x1": 601.2000122070312, "y1": 195.83999633789062, "width": 36.3599853515625, "height": 10.079986572265625}, {"x0": 601.9199829101562, "y0": 185.760009765625, "x1": 636.8400268554688, "y1": 195.83999633789062, "width": 34.9200439453125, "height": 10.079986572265625}, {"x0": 637.5599975585938, "y0": 185.760009765625, "x1": 672.47998046875, "y1": 195.83999633789062, "width": 34.91998291015625, "height": 10.079986572265625}]}, {"pageInfo": {"number": 107, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 212.39999389648438, "y0": 166.67999267578125, "x1": 237.60000610351562, "y1": 259.55999755859375, "width": 25.20001220703125, "height": 92.8800048828125}, {"x0": 238.67999267578125, "y0": 166.67999267578125, "x1": 264.239990234375, "y1": 216.0, "width": 25.55999755859375, "height": 49.32000732421875}, {"x0": 265.32000732421875, "y0": 166.67999267578125, "x1": 290.1600036621094, "y1": 209.16000366210938, "width": 24.839996337890625, "height": 42.480010986328125}, {"x0": 291.239990234375, "y0": 166.67999267578125, "x1": 316.44000244140625, "y1": 199.08001708984375, "width": 25.20001220703125, "height": 32.4000244140625}, {"x0": 527.0399780273438, "y0": 176.39999389648438, "x1": 566.6400146484375, "y1": 192.95999145507812, "width": 39.60003662109375, "height": 16.55999755859375}, {"x0": 567.3599853515625, "y0": 176.760009765625, "x1": 592.9199829101562, "y1": 192.95999145507812, "width": 25.55999755859375, "height": 16.199981689453125}, {"x0": 317.5199890136719, "y0": 166.67999267578125, "x1": 343.0799865722656, "y1": 190.79998779296875, "width": 25.55999755859375, "height": 24.1199951171875}, {"x0": 344.1600036621094, "y0": 166.67999267578125, "x1": 369.3599853515625, "y1": 187.20001220703125, "width": 25.199981689453125, "height": 20.52001953125}, {"x0": 370.44000244140625, "y0": 166.67999267578125, "x1": 396.0, "y1": 181.44000244140625, "width": 25.55999755859375, "height": 14.760009765625}, {"x0": 396.3599853515625, "y0": 166.67999267578125, "x1": 421.9200134277344, "y1": 179.6400146484375, "width": 25.560028076171875, "height": 12.96002197265625}, {"x0": 514.4400024414062, "y0": 166.67999267578125, "x1": 566.6400146484375, "y1": 177.83999633789062, "width": 52.20001220703125, "height": 11.160003662109375}]}, {"pageInfo": {"number": 112, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 201.9600067138672, "y0": 176.760009765625, "x1": 752.4000244140625, "y1": 418.67999267578125, "width": 550.4400177001953, "height": 241.91998291015625}, {"x0": 201.9600067138672, "y0": 151.92001342773438, "x1": 228.24000549316406, "y1": 296.2799987792969, "width": 26.279998779296875, "height": 144.3599853515625}, {"x0": 229.32000732421875, "y0": 151.92001342773438, "x1": 255.9600067138672, "y1": 251.27999877929688, "width": 26.639999389648438, "height": 99.3599853515625}, {"x0": 257.0400085449219, "y0": 151.92001342773438, "x1": 283.32000732421875, "y1": 224.6400146484375, "width": 26.279998779296875, "height": 72.72000122070312}, {"x0": 339.8399963378906, "y0": 151.92001342773438, "x1": 366.1199951171875, "y1": 204.83999633789062, "width": 26.279998779296875, "height": 52.91998291015625}, {"x0": 284.3999938964844, "y0": 151.92001342773438, "x1": 310.67999267578125, "y1": 203.39999389648438, "width": 26.279998779296875, "height": 51.47998046875}, {"x0": 311.760009765625, "y0": 151.92001342773438, "x1": 338.760009765625, "y1": 200.8800048828125, "width": 27.0, "height": 48.959991455078125}, {"x0": 394.55999755859375, "y0": 151.92001342773438, "x1": 420.8399963378906, "y1": 198.0, "width": 26.279998779296875, "height": 46.079986572265625}, {"x0": 367.20001220703125, "y0": 151.92001342773438, "x1": 393.4800109863281, "y1": 196.92001342773438, "width": 26.279998779296875, "height": 45.0}, {"x0": 449.6400146484375, "y0": 151.92001342773438, "x1": 475.9200134277344, "y1": 194.760009765625, "width": 26.279998779296875, "height": 42.839996337890625}, {"x0": 421.9200134277344, "y0": 151.92001342773438, "x1": 448.55999755859375, "y1": 193.32000732421875, "width": 26.639984130859375, "height": 41.399993896484375}, {"x0": 477.0, "y0": 151.92001342773438, "x1": 503.2799987792969, "y1": 187.55999755859375, "width": 26.279998779296875, "height": 35.639984130859375}, {"x0": 614.52001953125, "y0": 152.27999877929688, "x1": 641.1599731445312, "y1": 182.51998901367188, "width": 26.63995361328125, "height": 30.239990234375}, {"x0": 504.3599853515625, "y0": 151.92001342773438, "x1": 531.3599853515625, "y1": 181.79998779296875, "width": 27.0, "height": 29.879974365234375}, {"x0": 532.4400024414062, "y0": 151.92001342773438, "x1": 558.719970703125, "y1": 181.08001708984375, "width": 26.27996826171875, "height": 29.160003662109375}, {"x0": 642.239990234375, "y0": 152.27999877929688, "x1": 668.52001953125, "y1": 181.08001708984375, "width": 26.280029296875, "height": 28.800018310546875}, {"x0": 669.5999755859375, "y0": 152.27999877929688, "x1": 695.8800048828125, "y1": 180.36001586914062, "width": 26.280029296875, "height": 28.08001708984375}, {"x0": 696.9600219726562, "y0": 152.27999877929688, "x1": 723.5999755859375, "y1": 180.36001586914062, "width": 26.63995361328125, "height": 28.08001708984375}, {"x0": 559.7999877929688, "y0": 152.27999877929688, "x1": 586.0800170898438, "y1": 177.48001098632812, "width": 26.280029296875, "height": 25.20001220703125}, {"x0": 725.0399780273438, "y0": 152.27999877929688, "x1": 750.9600219726562, "y1": 177.48001098632812, "width": 25.9200439453125, "height": 25.20001220703125}, {"x0": 587.1599731445312, "y0": 152.27999877929688, "x1": 613.4400024414062, "y1": 175.32000732421875, "width": 26.280029296875, "height": 23.040008544921875}]}, {"pageInfo": {"number": 117, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 224.27999877929688, "y0": 144.36001586914062, "x1": 718.2000122070312, "y1": 408.239990234375, "width": 493.9200134277344, "height": 263.8799743652344}, {"x0": 210.9600067138672, "y0": 102.60000610351562, "x1": 236.16000366210938, "y1": 280.44000244140625, "width": 25.199996948242188, "height": 177.83999633789062}, {"x0": 236.52000427246094, "y0": 102.60000610351562, "x1": 261.3599853515625, "y1": 230.760009765625, "width": 24.839981079101562, "height": 128.16000366210938}, {"x0": 312.4800109863281, "y0": 102.60000610351562, "x1": 337.32000732421875, "y1": 216.0, "width": 24.839996337890625, "height": 113.39999389648438}, {"x0": 287.6400146484375, "y0": 102.60000610351562, "x1": 312.1199951171875, "y1": 206.6400146484375, "width": 24.47998046875, "height": 104.04000854492188}, {"x0": 262.0799865722656, "y0": 102.60000610351562, "x1": 286.55999755859375, "y1": 201.95999145507812, "width": 24.480010986328125, "height": 99.3599853515625}, {"x0": 540.719970703125, "y0": 102.60000610351562, "x1": 565.2000122070312, "y1": 191.51998901367188, "width": 24.48004150390625, "height": 88.91998291015625}, {"x0": 338.0400085449219, "y0": 102.60000610351562, "x1": 362.5199890136719, "y1": 189.0, "width": 24.47998046875, "height": 86.39999389648438}, {"x0": 439.20001220703125, "y0": 102.60000610351562, "x1": 464.0400085449219, "y1": 186.1199951171875, "width": 24.839996337890625, "height": 83.51998901367188}, {"x0": 363.6000061035156, "y0": 102.60000610351562, "x1": 388.0799865722656, "y1": 179.27999877929688, "width": 24.47998046875, "height": 76.67999267578125}, {"x0": 388.79998779296875, "y0": 102.60000610351562, "x1": 413.2799987792969, "y1": 177.83999633789062, "width": 24.480010986328125, "height": 75.239990234375}, {"x0": 490.32000732421875, "y0": 102.60000610351562, "x1": 514.7999877929688, "y1": 175.32000732421875, "width": 24.47998046875, "height": 72.72000122070312}, {"x0": 414.0, "y0": 102.60000610351562, "x1": 438.8399963378906, "y1": 164.51998901367188, "width": 24.839996337890625, "height": 61.91998291015625}, {"x0": 616.6799926757812, "y0": 102.60000610351562, "x1": 641.1599731445312, "y1": 163.08001708984375, "width": 24.47998046875, "height": 60.480010986328125}, {"x0": 464.760009765625, "y0": 102.60000610351562, "x1": 489.239990234375, "y1": 160.55999755859375, "width": 24.47998046875, "height": 57.959991455078125}, {"x0": 515.1599731445312, "y0": 102.60000610351562, "x1": 540.0, "y1": 154.08001708984375, "width": 24.84002685546875, "height": 51.480010986328125}, {"x0": 591.1199951171875, "y0": 102.60000610351562, "x1": 615.9600219726562, "y1": 152.27999877929688, "width": 24.84002685546875, "height": 49.67999267578125}, {"x0": 566.280029296875, "y0": 102.60000610351562, "x1": 590.760009765625, "y1": 149.760009765625, "width": 24.47998046875, "height": 47.160003662109375}, {"x0": 642.239990234375, "y0": 102.60000610351562, "x1": 666.3599853515625, "y1": 144.0, "width": 24.1199951171875, "height": 41.399993896484375}, {"x0": 667.4400024414062, "y0": 102.60000610351562, "x1": 691.9199829101562, "y1": 144.0, "width": 24.47998046875, "height": 41.399993896484375}, {"x0": 693.0, "y0": 102.60000610351562, "x1": 717.1199951171875, "y1": 143.27999877929688, "width": 24.1199951171875, "height": 40.67999267578125}]}, {"pageInfo": {"number": 122, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 201.60000610351562, "y0": 144.72000122070312, "x1": 227.8800048828125, "y1": 226.08001708984375, "width": 26.279998779296875, "height": 81.36001586914062}, {"x0": 228.9600067138672, "y0": 144.72000122070312, "x1": 255.60000610351562, "y1": 183.95999145507812, "width": 26.639999389648438, "height": 39.239990234375}, {"x0": 257.0400085449219, "y0": 144.72000122070312, "x1": 282.9599914550781, "y1": 171.36001586914062, "width": 25.91998291015625, "height": 26.6400146484375}, {"x0": 284.3999938964844, "y0": 144.72000122070312, "x1": 310.67999267578125, "y1": 162.36001586914062, "width": 26.279998779296875, "height": 17.6400146484375}, {"x0": 311.760009765625, "y0": 144.72000122070312, "x1": 338.3999938964844, "y1": 157.32000732421875, "width": 26.639984130859375, "height": 12.600006103515625}]}, {"pageInfo": {"number": 126, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 200.52000427246094, "y0": 285.8399963378906, "x1": 213.47999572753906, "y1": 397.08001708984375, "width": 12.959991455078125, "height": 111.24002075195312}, {"x0": 214.1999969482422, "y0": 117.36001586914062, "x1": 725.4000244140625, "y1": 397.08001708984375, "width": 511.2000274658203, "height": 279.7200012207031}, {"x0": 200.52000427246094, "y0": 107.6400146484375, "x1": 226.8000030517578, "y1": 285.1199951171875, "width": 26.279998779296875, "height": 177.47998046875}, {"x0": 253.8000030517578, "y0": 107.6400146484375, "x1": 279.0, "y1": 189.0, "width": 25.199996948242188, "height": 81.3599853515625}, {"x0": 227.52000427246094, "y0": 107.6400146484375, "x1": 252.72000122070312, "y1": 181.79998779296875, "width": 25.199996948242188, "height": 74.15997314453125}, {"x0": 279.7200012207031, "y0": 107.6400146484375, "x1": 304.9200134277344, "y1": 165.239990234375, "width": 25.20001220703125, "height": 57.5999755859375}, {"x0": 306.0, "y0": 107.6400146484375, "x1": 331.55999755859375, "y1": 140.04000854492188, "width": 25.55999755859375, "height": 32.399993896484375}, {"x0": 358.55999755859375, "y0": 107.6400146484375, "x1": 383.760009765625, "y1": 139.67999267578125, "width": 25.20001220703125, "height": 32.03997802734375}, {"x0": 384.4800109863281, "y0": 107.6400146484375, "x1": 410.0400085449219, "y1": 135.72000122070312, "width": 25.55999755859375, "height": 28.079986572265625}, {"x0": 332.2799987792969, "y0": 107.6400146484375, "x1": 357.8399963378906, "y1": 133.55999755859375, "width": 25.55999755859375, "height": 25.91998291015625}, {"x0": 437.0400085449219, "y0": 107.6400146484375, "x1": 462.239990234375, "y1": 132.83999633789062, "width": 25.199981689453125, "height": 25.199981689453125}, {"x0": 463.32000732421875, "y0": 107.6400146484375, "x1": 488.5199890136719, "y1": 131.760009765625, "width": 25.199981689453125, "height": 24.1199951171875}, {"x0": 620.280029296875, "y0": 107.6400146484375, "x1": 645.8400268554688, "y1": 129.60000610351562, "width": 25.55999755859375, "height": 21.959991455078125}, {"x0": 410.760009765625, "y0": 107.6400146484375, "x1": 436.32000732421875, "y1": 128.16000366210938, "width": 25.55999755859375, "height": 20.519989013671875}, {"x0": 489.239990234375, "y0": 107.6400146484375, "x1": 514.7999877929688, "y1": 126.72000122070312, "width": 25.55999755859375, "height": 19.079986572265625}, {"x0": 672.8400268554688, "y0": 108.0, "x1": 698.0399780273438, "y1": 126.0, "width": 25.199951171875, "height": 18.0}, {"x0": 515.52001953125, "y0": 107.6400146484375, "x1": 541.0800170898438, "y1": 124.20001220703125, "width": 25.55999755859375, "height": 16.55999755859375}, {"x0": 568.0800170898438, "y0": 108.0, "x1": 593.280029296875, "y1": 123.1199951171875, "width": 25.20001220703125, "height": 15.1199951171875}, {"x0": 541.7999877929688, "y0": 108.0, "x1": 567.3599853515625, "y1": 120.60000610351562, "width": 25.55999755859375, "height": 12.600006103515625}, {"x0": 699.1199951171875, "y0": 108.0, "x1": 725.4000244140625, "y1": 119.16000366210938, "width": 26.280029296875, "height": 11.160003662109375}, {"x0": 594.3599853515625, "y0": 107.6400146484375, "x1": 619.5599975585938, "y1": 118.08001708984375, "width": 25.20001220703125, "height": 10.44000244140625}]}, {"pageInfo": {"number": 131, "rotation": 0, "width": 841.6799926757812, "height": 595.4400024414062}, "tableCells": [{"x0": 197.63999938964844, "y0": 266.760009765625, "x1": 210.9600067138672, "y1": 417.6000061035156, "width": 13.32000732421875, "height": 150.83999633789062}, {"x0": 211.67999267578125, "y0": 104.04000854492188, "x1": 728.280029296875, "y1": 417.6000061035156, "width": 516.6000366210938, "height": 313.55999755859375}, {"x0": 197.63999938964844, "y0": 104.04000854492188, "x1": 223.9199981689453, "y1": 266.0400085449219, "width": 26.279998779296875, "height": 162.0}, {"x0": 224.63999938964844, "y0": 104.04000854492188, "x1": 250.55999755859375, "y1": 177.1199951171875, "width": 25.919998168945312, "height": 73.07998657226562}, {"x0": 251.63999938964844, "y0": 104.04000854492188, "x1": 277.20001220703125, "y1": 163.44000244140625, "width": 25.560012817382812, "height": 59.399993896484375}, {"x0": 277.9200134277344, "y0": 104.04000854492188, "x1": 303.4800109863281, "y1": 151.20001220703125, "width": 25.55999755859375, "height": 47.160003662109375}, {"x0": 304.20001220703125, "y0": 104.04000854492188, "x1": 330.1199951171875, "y1": 138.239990234375, "width": 25.91998291015625, "height": 34.199981689453125}, {"x0": 383.760009765625, "y0": 104.04000854492188, "x1": 409.67999267578125, "y1": 127.79998779296875, "width": 25.91998291015625, "height": 23.759979248046875}, {"x0": 357.1199951171875, "y0": 104.04000854492188, "x1": 383.0400085449219, "y1": 127.08001708984375, "width": 25.920013427734375, "height": 23.040008544921875}, {"x0": 330.8399963378906, "y0": 104.04000854492188, "x1": 356.3999938964844, "y1": 124.20001220703125, "width": 25.55999755859375, "height": 20.160003662109375}, {"x0": 410.3999938964844, "y0": 104.04000854492188, "x1": 435.9599914550781, "y1": 120.60000610351562, "width": 25.55999755859375, "height": 16.55999755859375}]}, {"pageInfo": {"number": 140, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 179.27999877929688, "y0": 656.6400146484375, "x1": 446.3999938964844, "y1": 666.719970703125, "width": 267.1199951171875, "height": 10.0799560546875}, {"x0": 178.9199981689453, "y0": 593.6400146484375, "x1": 446.3999938964844, "y1": 654.1199951171875, "width": 267.47999572753906, "height": 60.47998046875}]}, {"pageInfo": {"number": 141, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 143.27999877929688, "y0": 411.8399963378906, "x1": 384.1199951171875, "y1": 604.4400024414062, "width": 240.83999633789062, "height": 192.60000610351562}, {"x0": 385.55999755859375, "y0": 411.8399963378906, "x1": 504.0, "y1": 604.4400024414062, "width": 118.44000244140625, "height": 192.60000610351562}, {"x0": 182.52000427246094, "y0": 366.47998046875, "x1": 291.9599914550781, "y1": 376.55999755859375, "width": 109.43998718261719, "height": 10.08001708984375}, {"x0": 292.67999267578125, "y0": 366.47998046875, "x1": 392.0400085449219, "y1": 376.55999755859375, "width": 99.36001586914062, "height": 10.08001708984375}, {"x0": 392.760009765625, "y0": 366.47998046875, "x1": 448.20001220703125, "y1": 376.55999755859375, "width": 55.44000244140625, "height": 10.08001708984375}, {"x0": 182.52000427246094, "y0": 354.9599914550781, "x1": 291.9599914550781, "y1": 365.7599792480469, "width": 109.43998718261719, "height": 10.79998779296875}, {"x0": 292.67999267578125, "y0": 354.9599914550781, "x1": 392.0400085449219, "y1": 365.7599792480469, "width": 99.36001586914062, "height": 10.79998779296875}, {"x0": 392.760009765625, "y0": 354.9599914550781, "x1": 448.20001220703125, "y1": 365.7599792480469, "width": 55.44000244140625, "height": 10.79998779296875}, {"x0": 182.52000427246094, "y0": 343.79998779296875, "x1": 291.9599914550781, "y1": 354.239990234375, "width": 109.43998718261719, "height": 10.44000244140625}, {"x0": 292.67999267578125, "y0": 343.79998779296875, "x1": 392.0400085449219, "y1": 354.239990234375, "width": 99.36001586914062, "height": 10.44000244140625}, {"x0": 392.760009765625, "y0": 343.79998779296875, "x1": 448.20001220703125, "y1": 354.239990234375, "width": 55.44000244140625, "height": 10.44000244140625}, {"x0": 182.52000427246094, "y0": 332.2799987792969, "x1": 291.9599914550781, "y1": 343.0799865722656, "width": 109.43998718261719, "height": 10.79998779296875}, {"x0": 292.67999267578125, "y0": 332.2799987792969, "x1": 392.0400085449219, "y1": 343.0799865722656, "width": 99.36001586914062, "height": 10.79998779296875}, {"x0": 392.760009765625, "y0": 332.2799987792969, "x1": 448.20001220703125, "y1": 343.0799865722656, "width": 55.44000244140625, "height": 10.79998779296875}, {"x0": 182.52000427246094, "y0": 321.1199951171875, "x1": 291.9599914550781, "y1": 331.55999755859375, "width": 109.43998718261719, "height": 10.44000244140625}, {"x0": 292.67999267578125, "y0": 321.1199951171875, "x1": 392.0400085449219, "y1": 331.55999755859375, "width": 99.36001586914062, "height": 10.44000244140625}, {"x0": 392.760009765625, "y0": 321.1199951171875, "x1": 448.20001220703125, "y1": 331.55999755859375, "width": 55.44000244140625, "height": 10.44000244140625}, {"x0": 182.52000427246094, "y0": 309.5999755859375, "x1": 291.9599914550781, "y1": 320.39996337890625, "width": 109.43998718261719, "height": 10.79998779296875}, {"x0": 292.67999267578125, "y0": 309.5999755859375, "x1": 392.0400085449219, "y1": 320.39996337890625, "width": 99.36001586914062, "height": 10.79998779296875}, {"x0": 392.760009765625, "y0": 309.5999755859375, "x1": 448.20001220703125, "y1": 320.39996337890625, "width": 55.44000244140625, "height": 10.79998779296875}, {"x0": 182.52000427246094, "y0": 298.08001708984375, "x1": 291.9599914550781, "y1": 308.8800048828125, "width": 109.43998718261719, "height": 10.79998779296875}, {"x0": 292.67999267578125, "y0": 298.08001708984375, "x1": 392.0400085449219, "y1": 308.8800048828125, "width": 99.36001586914062, "height": 10.79998779296875}, {"x0": 392.760009765625, "y0": 298.08001708984375, "x1": 448.20001220703125, "y1": 308.8800048828125, "width": 55.44000244140625, "height": 10.79998779296875}, {"x0": 182.52000427246094, "y0": 286.91998291015625, "x1": 291.9599914550781, "y1": 297.719970703125, "width": 109.43998718261719, "height": 10.79998779296875}, {"x0": 292.67999267578125, "y0": 286.91998291015625, "x1": 392.0400085449219, "y1": 297.719970703125, "width": 99.36001586914062, "height": 10.79998779296875}, {"x0": 392.760009765625, "y0": 286.91998291015625, "x1": 448.20001220703125, "y1": 297.719970703125, "width": 55.44000244140625, "height": 10.79998779296875}, {"x0": 182.52000427246094, "y0": 275.39996337890625, "x1": 291.9599914550781, "y1": 286.20001220703125, "width": 109.43998718261719, "height": 10.800048828125}, {"x0": 292.67999267578125, "y0": 275.39996337890625, "x1": 392.0400085449219, "y1": 286.20001220703125, "width": 99.36001586914062, "height": 10.800048828125}, {"x0": 392.760009765625, "y0": 275.39996337890625, "x1": 448.20001220703125, "y1": 286.20001220703125, "width": 55.44000244140625, "height": 10.800048828125}, {"x0": 182.52000427246094, "y0": 264.239990234375, "x1": 291.9599914550781, "y1": 274.67999267578125, "width": 109.43998718261719, "height": 10.44000244140625}, {"x0": 292.67999267578125, "y0": 264.239990234375, "x1": 392.0400085449219, "y1": 274.67999267578125, "width": 99.36001586914062, "height": 10.44000244140625}, {"x0": 392.760009765625, "y0": 264.239990234375, "x1": 448.20001220703125, "y1": 274.67999267578125, "width": 55.44000244140625, "height": 10.44000244140625}]}, {"pageInfo": {"number": 142, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 143.27999877929688, "y0": 446.3999938964844, "x1": 326.8800048828125, "y1": 639.0, "width": 183.60000610351562, "height": 192.60000610351562}, {"x0": 325.44000244140625, "y0": 446.3999938964844, "x1": 504.0, "y1": 639.0, "width": 178.55999755859375, "height": 192.60000610351562}, {"x0": 213.1199951171875, "y0": 375.8399963378906, "x1": 271.0799865722656, "y1": 386.2799987792969, "width": 57.959991455078125, "height": 10.44000244140625}, {"x0": 271.79998779296875, "y0": 375.8399963378906, "x1": 366.1199951171875, "y1": 386.2799987792969, "width": 94.32000732421875, "height": 10.44000244140625}, {"x0": 366.8399963378906, "y0": 375.8399963378906, "x1": 417.6000061035156, "y1": 386.2799987792969, "width": 50.760009765625, "height": 10.44000244140625}, {"x0": 213.1199951171875, "y0": 364.67999267578125, "x1": 271.0799865722656, "y1": 375.1199951171875, "width": 57.959991455078125, "height": 10.44000244140625}, {"x0": 271.79998779296875, "y0": 364.67999267578125, "x1": 366.1199951171875, "y1": 375.1199951171875, "width": 94.32000732421875, "height": 10.44000244140625}, {"x0": 366.8399963378906, "y0": 364.67999267578125, "x1": 417.6000061035156, "y1": 375.1199951171875, "width": 50.760009765625, "height": 10.44000244140625}, {"x0": 213.1199951171875, "y0": 353.1600036621094, "x1": 271.0799865722656, "y1": 363.9599914550781, "width": 57.959991455078125, "height": 10.79998779296875}, {"x0": 271.79998779296875, "y0": 353.1600036621094, "x1": 366.1199951171875, "y1": 363.9599914550781, "width": 94.32000732421875, "height": 10.79998779296875}, {"x0": 366.8399963378906, "y0": 353.1600036621094, "x1": 417.6000061035156, "y1": 363.9599914550781, "width": 50.760009765625, "height": 10.79998779296875}, {"x0": 213.1199951171875, "y0": 342.0, "x1": 271.0799865722656, "y1": 352.44000244140625, "width": 57.959991455078125, "height": 10.44000244140625}, {"x0": 271.79998779296875, "y0": 342.0, "x1": 366.1199951171875, "y1": 352.44000244140625, "width": 94.32000732421875, "height": 10.44000244140625}, {"x0": 366.8399963378906, "y0": 342.0, "x1": 417.6000061035156, "y1": 352.44000244140625, "width": 50.760009765625, "height": 10.44000244140625}, {"x0": 213.1199951171875, "y0": 330.47998046875, "x1": 271.0799865722656, "y1": 341.2799987792969, "width": 57.959991455078125, "height": 10.800018310546875}, {"x0": 271.79998779296875, "y0": 330.47998046875, "x1": 366.1199951171875, "y1": 341.2799987792969, "width": 94.32000732421875, "height": 10.800018310546875}, {"x0": 366.8399963378906, "y0": 330.47998046875, "x1": 417.6000061035156, "y1": 341.2799987792969, "width": 50.760009765625, "height": 10.800018310546875}, {"x0": 213.1199951171875, "y0": 318.96002197265625, "x1": 271.0799865722656, "y1": 329.7599792480469, "width": 57.959991455078125, "height": 10.799957275390625}, {"x0": 271.79998779296875, "y0": 318.96002197265625, "x1": 366.1199951171875, "y1": 329.7599792480469, "width": 94.32000732421875, "height": 10.799957275390625}, {"x0": 366.8399963378906, "y0": 318.96002197265625, "x1": 417.6000061035156, "y1": 329.7599792480469, "width": 50.760009765625, "height": 10.799957275390625}, {"x0": 213.1199951171875, "y0": 307.79998779296875, "x1": 271.0799865722656, "y1": 318.5999755859375, "width": 57.959991455078125, "height": 10.79998779296875}, {"x0": 271.79998779296875, "y0": 307.79998779296875, "x1": 366.1199951171875, "y1": 318.5999755859375, "width": 94.32000732421875, "height": 10.79998779296875}, {"x0": 366.8399963378906, "y0": 307.79998779296875, "x1": 417.6000061035156, "y1": 318.5999755859375, "width": 50.760009765625, "height": 10.79998779296875}]}, {"pageInfo": {"number": 143, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 166.32000732421875, "y0": 713.8800048828125, "x1": 281.8800048828125, "y1": 727.9199829101562, "width": 115.55999755859375, "height": 14.03997802734375}, {"x0": 282.6000061035156, "y0": 713.8800048828125, "x1": 332.2799987792969, "y1": 727.9199829101562, "width": 49.67999267578125, "height": 14.03997802734375}, {"x0": 332.6400146484375, "y0": 713.8800048828125, "x1": 382.32000732421875, "y1": 727.9199829101562, "width": 49.67999267578125, "height": 14.03997802734375}, {"x0": 383.0400085449219, "y0": 713.8800048828125, "x1": 464.3999938964844, "y1": 727.9199829101562, "width": 81.3599853515625, "height": 14.03997802734375}, {"x0": 166.32000732421875, "y0": 542.8800048828125, "x1": 281.8800048828125, "y1": 713.1599731445312, "width": 115.55999755859375, "height": 170.27996826171875}, {"x0": 282.6000061035156, "y0": 542.8800048828125, "x1": 332.2799987792969, "y1": 713.1599731445312, "width": 49.67999267578125, "height": 170.27996826171875}, {"x0": 332.6400146484375, "y0": 542.8800048828125, "x1": 382.32000732421875, "y1": 713.1599731445312, "width": 49.67999267578125, "height": 170.27996826171875}, {"x0": 383.0400085449219, "y0": 542.8800048828125, "x1": 464.3999938964844, "y1": 713.1599731445312, "width": 81.3599853515625, "height": 170.27996826171875}]}, {"pageInfo": {"number": 144, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 142.1999969482422, "y0": 685.4400024414062, "x1": 293.3999938964844, "y1": 714.239990234375, "width": 151.1999969482422, "height": 28.79998779296875}, {"x0": 293.760009765625, "y0": 700.2000122070312, "x1": 488.5199890136719, "y1": 714.239990234375, "width": 194.75997924804688, "height": 14.03997802734375}, {"x0": 293.760009765625, "y0": 685.4400024414062, "x1": 389.1600036621094, "y1": 699.47998046875, "width": 95.39999389648438, "height": 14.03997802734375}, {"x0": 389.8800048828125, "y0": 685.4400024414062, "x1": 488.5199890136719, "y1": 699.47998046875, "width": 98.63998413085938, "height": 14.03997802734375}, {"x0": 142.1999969482422, "y0": 514.4400024414062, "x1": 293.3999938964844, "y1": 684.719970703125, "width": 151.1999969482422, "height": 170.27996826171875}, {"x0": 293.760009765625, "y0": 514.4400024414062, "x1": 389.1600036621094, "y1": 684.719970703125, "width": 95.39999389648438, "height": 170.27996826171875}, {"x0": 389.8800048828125, "y0": 514.4400024414062, "x1": 488.5199890136719, "y1": 684.719970703125, "width": 98.63998413085938, "height": 170.27996826171875}]}, {"pageInfo": {"number": 145, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 157.32000732421875, "y0": 685.0799560546875, "x1": 216.36000061035156, "y1": 699.1199951171875, "width": 59.03999328613281, "height": 14.0400390625}, {"x0": 217.0800018310547, "y0": 685.0799560546875, "x1": 360.0, "y1": 699.1199951171875, "width": 142.9199981689453, "height": 14.0400390625}, {"x0": 360.7200012207031, "y0": 685.0799560546875, "x1": 473.3999938964844, "y1": 699.1199951171875, "width": 112.67999267578125, "height": 14.0400390625}, {"x0": 157.32000732421875, "y0": 131.03997802734375, "x1": 216.36000061035156, "y1": 684.719970703125, "width": 59.03999328613281, "height": 553.6799926757812}, {"x0": 217.0800018310547, "y0": 131.03997802734375, "x1": 360.0, "y1": 684.719970703125, "width": 142.9199981689453, "height": 553.6799926757812}, {"x0": 360.7200012207031, "y0": 131.03997802734375, "x1": 473.3999938964844, "y1": 684.719970703125, "width": 112.67999267578125, "height": 553.6799926757812}]}, {"pageInfo": {"number": 146, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 157.32000732421875, "y0": 727.2000122070312, "x1": 216.36000061035156, "y1": 741.239990234375, "width": 59.03999328613281, "height": 14.03997802734375}, {"x0": 217.0800018310547, "y0": 727.2000122070312, "x1": 360.0, "y1": 741.239990234375, "width": 142.9199981689453, "height": 14.03997802734375}, {"x0": 360.7200012207031, "y0": 727.2000122070312, "x1": 473.3999938964844, "y1": 741.239990234375, "width": 112.67999267578125, "height": 14.03997802734375}, {"x0": 157.32000732421875, "y0": 258.1199951171875, "x1": 216.36000061035156, "y1": 726.47998046875, "width": 59.03999328613281, "height": 468.3599853515625}, {"x0": 217.0800018310547, "y0": 258.1199951171875, "x1": 360.0, "y1": 726.47998046875, "width": 142.9199981689453, "height": 468.3599853515625}, {"x0": 360.7200012207031, "y0": 258.1199951171875, "x1": 473.3999938964844, "y1": 726.47998046875, "width": 112.67999267578125, "height": 468.3599853515625}]}, {"pageInfo": {"number": 147, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 167.75999450683594, "y0": 743.0399780273438, "x1": 222.83999633789062, "y1": 754.9199829101562, "width": 55.08000183105469, "height": 11.8800048828125}, {"x0": 223.1999969482422, "y0": 743.0399780273438, "x1": 357.4800109863281, "y1": 754.9199829101562, "width": 134.28001403808594, "height": 11.8800048828125}, {"x0": 358.20001220703125, "y0": 743.0399780273438, "x1": 462.9599914550781, "y1": 754.9199829101562, "width": 104.75997924804688, "height": 11.8800048828125}, {"x0": 167.75999450683594, "y0": 678.9599609375, "x1": 222.83999633789062, "y1": 742.3200073242188, "width": 55.08000183105469, "height": 63.36004638671875}, {"x0": 223.1999969482422, "y0": 678.9599609375, "x1": 357.4800109863281, "y1": 742.3200073242188, "width": 134.28001403808594, "height": 63.36004638671875}, {"x0": 358.20001220703125, "y0": 678.9599609375, "x1": 462.9599914550781, "y1": 742.3200073242188, "width": 104.75997924804688, "height": 63.36004638671875}]}, {"pageInfo": {"number": 148, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 166.32000732421875, "y0": 658.7999877929688, "x1": 233.63999938964844, "y1": 672.8399658203125, "width": 67.31999206542969, "height": 14.03997802734375}, {"x0": 234.0, "y0": 658.7999877929688, "x1": 464.0400085449219, "y1": 672.8399658203125, "width": 230.04000854492188, "height": 14.03997802734375}, {"x0": 166.32000732421875, "y0": 430.91998291015625, "x1": 233.63999938964844, "y1": 658.0799560546875, "width": 67.31999206542969, "height": 227.15997314453125}, {"x0": 234.0, "y0": 430.91998291015625, "x1": 464.3999938964844, "y1": 658.0799560546875, "width": 230.39999389648438, "height": 227.15997314453125}]}, {"pageInfo": {"number": 149, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 191.52000427246094, "y0": 641.8800048828125, "x1": 295.20001220703125, "y1": 653.760009765625, "width": 103.68000793457031, "height": 11.8800048828125}, {"x0": 295.9200134277344, "y0": 641.8800048828125, "x1": 438.1199951171875, "y1": 653.4000244140625, "width": 142.19998168945312, "height": 11.52001953125}, {"x0": 192.24000549316406, "y0": 630.0, "x1": 295.20001220703125, "y1": 641.1599731445312, "width": 102.96000671386719, "height": 11.15997314453125}, {"x0": 295.9200134277344, "y0": 630.0, "x1": 362.5199890136719, "y1": 641.1599731445312, "width": 66.5999755859375, "height": 11.15997314453125}, {"x0": 363.239990234375, "y0": 630.0, "x1": 438.1199951171875, "y1": 641.1599731445312, "width": 74.8800048828125, "height": 11.15997314453125}, {"x0": 192.24000549316406, "y0": 502.91998291015625, "x1": 295.20001220703125, "y1": 629.280029296875, "width": 102.96000671386719, "height": 126.36004638671875}, {"x0": 295.9200134277344, "y0": 502.91998291015625, "x1": 362.5199890136719, "y1": 629.280029296875, "width": 66.5999755859375, "height": 126.36004638671875}, {"x0": 363.239990234375, "y0": 502.91998291015625, "x1": 438.1199951171875, "y1": 629.280029296875, "width": 74.8800048828125, "height": 126.36004638671875}, {"x0": 192.24000549316406, "y0": 479.8800048828125, "x1": 295.20001220703125, "y1": 501.8399963378906, "width": 102.96000671386719, "height": 21.959991455078125}, {"x0": 295.9200134277344, "y0": 479.8800048828125, "x1": 362.5199890136719, "y1": 501.8399963378906, "width": 66.5999755859375, "height": 21.959991455078125}, {"x0": 363.239990234375, "y0": 479.8800048828125, "x1": 438.1199951171875, "y1": 501.8399963378906, "width": 74.8800048828125, "height": 21.959991455078125}, {"x0": 192.24000549316406, "y0": 467.2799987792969, "x1": 295.20001220703125, "y1": 479.5199890136719, "width": 102.96000671386719, "height": 12.239990234375}, {"x0": 295.9200134277344, "y0": 467.2799987792969, "x1": 362.5199890136719, "y1": 478.79998779296875, "width": 66.5999755859375, "height": 11.519989013671875}, {"x0": 363.239990234375, "y0": 467.2799987792969, "x1": 438.1199951171875, "y1": 478.79998779296875, "width": 74.8800048828125, "height": 11.519989013671875}, {"x0": 192.24000549316406, "y0": 455.3999938964844, "x1": 295.20001220703125, "y1": 466.91998291015625, "width": 102.96000671386719, "height": 11.519989013671875}, {"x0": 295.9200134277344, "y0": 455.3999938964844, "x1": 362.5199890136719, "y1": 466.91998291015625, "width": 66.5999755859375, "height": 11.519989013671875}, {"x0": 363.239990234375, "y0": 455.3999938964844, "x1": 438.1199951171875, "y1": 466.91998291015625, "width": 74.8800048828125, "height": 11.519989013671875}, {"x0": 192.24000549316406, "y0": 328.32000732421875, "x1": 295.20001220703125, "y1": 454.67999267578125, "width": 102.96000671386719, "height": 126.3599853515625}, {"x0": 295.9200134277344, "y0": 328.32000732421875, "x1": 362.5199890136719, "y1": 454.67999267578125, "width": 66.5999755859375, "height": 126.3599853515625}, {"x0": 363.239990234375, "y0": 328.32000732421875, "x1": 438.1199951171875, "y1": 454.67999267578125, "width": 74.8800048828125, "height": 126.3599853515625}]}, {"pageInfo": {"number": 150, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 189.36000061035156, "y0": 709.2000122070312, "x1": 293.3999938964844, "y1": 721.0800170898438, "width": 104.03999328613281, "height": 11.8800048828125}, {"x0": 293.760009765625, "y0": 709.2000122070312, "x1": 440.2799987792969, "y1": 720.3599853515625, "width": 146.51998901367188, "height": 11.15997314453125}, {"x0": 190.0800018310547, "y0": 696.9599609375, "x1": 293.3999938964844, "y1": 708.47998046875, "width": 103.31999206542969, "height": 11.52001953125}, {"x0": 293.760009765625, "y0": 696.9599609375, "x1": 356.0400085449219, "y1": 708.47998046875, "width": 62.279998779296875, "height": 11.52001953125}, {"x0": 356.3999938964844, "y0": 696.9599609375, "x1": 440.2799987792969, "y1": 708.47998046875, "width": 83.8800048828125, "height": 11.52001953125}, {"x0": 190.0800018310547, "y0": 570.239990234375, "x1": 293.3999938964844, "y1": 696.5999755859375, "width": 103.31999206542969, "height": 126.3599853515625}, {"x0": 293.760009765625, "y0": 570.239990234375, "x1": 356.0400085449219, "y1": 696.5999755859375, "width": 62.279998779296875, "height": 126.3599853515625}, {"x0": 356.3999938964844, "y0": 570.239990234375, "x1": 440.2799987792969, "y1": 696.5999755859375, "width": 83.8800048828125, "height": 126.3599853515625}, {"x0": 190.0800018310547, "y0": 546.8399658203125, "x1": 293.3999938964844, "y1": 569.1600341796875, "width": 103.31999206542969, "height": 22.320068359375}, {"x0": 293.760009765625, "y0": 546.8399658203125, "x1": 356.0400085449219, "y1": 569.1600341796875, "width": 62.279998779296875, "height": 22.320068359375}, {"x0": 356.3999938964844, "y0": 546.8399658203125, "x1": 440.2799987792969, "y1": 569.1600341796875, "width": 83.8800048828125, "height": 22.320068359375}, {"x0": 190.0800018310547, "y0": 534.5999755859375, "x1": 293.3999938964844, "y1": 546.47998046875, "width": 103.31999206542969, "height": 11.8800048828125}, {"x0": 293.760009765625, "y0": 534.5999755859375, "x1": 356.0400085449219, "y1": 546.1199951171875, "width": 62.279998779296875, "height": 11.52001953125}, {"x0": 356.3999938964844, "y0": 534.5999755859375, "x1": 440.2799987792969, "y1": 546.1199951171875, "width": 83.8800048828125, "height": 11.52001953125}, {"x0": 190.0800018310547, "y0": 522.719970703125, "x1": 293.3999938964844, "y1": 533.8800048828125, "width": 103.31999206542969, "height": 11.1600341796875}, {"x0": 293.760009765625, "y0": 522.719970703125, "x1": 356.0400085449219, "y1": 533.8800048828125, "width": 62.279998779296875, "height": 11.1600341796875}, {"x0": 356.3999938964844, "y0": 522.719970703125, "x1": 440.2799987792969, "y1": 533.8800048828125, "width": 83.8800048828125, "height": 11.1600341796875}, {"x0": 190.0800018310547, "y0": 395.6399841308594, "x1": 293.3999938964844, "y1": 522.0, "width": 103.31999206542969, "height": 126.36001586914062}, {"x0": 293.760009765625, "y0": 395.6399841308594, "x1": 356.0400085449219, "y1": 522.0, "width": 62.279998779296875, "height": 126.36001586914062}, {"x0": 356.3999938964844, "y0": 395.6399841308594, "x1": 440.2799987792969, "y1": 522.0, "width": 83.8800048828125, "height": 126.36001586914062}, {"x0": 192.24000549316406, "y0": 337.32000732421875, "x1": 295.9200134277344, "y1": 349.1999816894531, "width": 103.68000793457031, "height": 11.879974365234375}, {"x0": 296.6400146484375, "y0": 337.32000732421875, "x1": 437.760009765625, "y1": 348.47998046875, "width": 141.1199951171875, "height": 11.15997314453125}, {"x0": 192.9600067138672, "y0": 325.08001708984375, "x1": 295.9200134277344, "y1": 336.6000061035156, "width": 102.96000671386719, "height": 11.519989013671875}, {"x0": 296.6400146484375, "y0": 325.08001708984375, "x1": 363.239990234375, "y1": 336.6000061035156, "width": 66.5999755859375, "height": 11.519989013671875}, {"x0": 363.9599914550781, "y0": 325.08001708984375, "x1": 437.760009765625, "y1": 336.6000061035156, "width": 73.80001831054688, "height": 11.519989013671875}, {"x0": 192.9600067138672, "y0": 198.0, "x1": 295.9200134277344, "y1": 324.3599853515625, "width": 102.96000671386719, "height": 126.3599853515625}, {"x0": 296.6400146484375, "y0": 198.0, "x1": 363.239990234375, "y1": 324.3599853515625, "width": 66.5999755859375, "height": 126.3599853515625}, {"x0": 363.9599914550781, "y0": 198.0, "x1": 437.760009765625, "y1": 324.3599853515625, "width": 73.80001831054688, "height": 126.3599853515625}]}, {"pageInfo": {"number": 151, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 191.52000427246094, "y0": 669.9599609375, "x1": 295.20001220703125, "y1": 681.8399658203125, "width": 103.68000793457031, "height": 11.8800048828125}, {"x0": 295.9200134277344, "y0": 669.9599609375, "x1": 438.1199951171875, "y1": 681.47998046875, "width": 142.19998168945312, "height": 11.52001953125}, {"x0": 192.24000549316406, "y0": 658.0799560546875, "x1": 295.20001220703125, "y1": 669.239990234375, "width": 102.96000671386719, "height": 11.1600341796875}, {"x0": 295.9200134277344, "y0": 658.0799560546875, "x1": 343.79998779296875, "y1": 669.239990234375, "width": 47.879974365234375, "height": 11.1600341796875}, {"x0": 344.1600036621094, "y0": 658.0799560546875, "x1": 438.1199951171875, "y1": 669.239990234375, "width": 93.95999145507812, "height": 11.1600341796875}, {"x0": 192.24000549316406, "y0": 531.0, "x1": 295.20001220703125, "y1": 657.3599853515625, "width": 102.96000671386719, "height": 126.3599853515625}, {"x0": 295.9200134277344, "y0": 531.0, "x1": 343.79998779296875, "y1": 657.3599853515625, "width": 47.879974365234375, "height": 126.3599853515625}, {"x0": 344.1600036621094, "y0": 531.0, "x1": 438.1199951171875, "y1": 657.3599853515625, "width": 93.95999145507812, "height": 126.3599853515625}, {"x0": 295.9200134277344, "y0": 496.44000244140625, "x1": 438.1199951171875, "y1": 529.9199829101562, "width": 142.19998168945312, "height": 33.47998046875}, {"x0": 191.52000427246094, "y0": 484.1999816894531, "x1": 295.20001220703125, "y1": 496.0799865722656, "width": 103.68000793457031, "height": 11.8800048828125}, {"x0": 295.9200134277344, "y0": 484.1999816894531, "x1": 438.1199951171875, "y1": 495.3599853515625, "width": 142.19998168945312, "height": 11.160003662109375}, {"x0": 192.24000549316406, "y0": 471.9599914550781, "x1": 295.20001220703125, "y1": 483.47998046875, "width": 102.96000671386719, "height": 11.519989013671875}, {"x0": 295.9200134277344, "y0": 471.9599914550781, "x1": 343.79998779296875, "y1": 483.47998046875, "width": 47.879974365234375, "height": 11.519989013671875}, {"x0": 344.1600036621094, "y0": 471.9599914550781, "x1": 438.1199951171875, "y1": 483.47998046875, "width": 93.95999145507812, "height": 11.519989013671875}, {"x0": 192.24000549316406, "y0": 344.8800048828125, "x1": 295.20001220703125, "y1": 471.239990234375, "width": 102.96000671386719, "height": 126.3599853515625}, {"x0": 295.9200134277344, "y0": 344.8800048828125, "x1": 343.79998779296875, "y1": 471.239990234375, "width": 47.879974365234375, "height": 126.3599853515625}, {"x0": 344.1600036621094, "y0": 344.8800048828125, "x1": 438.1199951171875, "y1": 471.239990234375, "width": 93.95999145507812, "height": 126.3599853515625}, {"x0": 192.24000549316406, "y0": 321.8399658203125, "x1": 295.20001220703125, "y1": 343.79998779296875, "width": 102.96000671386719, "height": 21.96002197265625}, {"x0": 295.9200134277344, "y0": 321.8399658203125, "x1": 343.79998779296875, "y1": 343.79998779296875, "width": 47.879974365234375, "height": 21.96002197265625}, {"x0": 344.1600036621094, "y0": 321.8399658203125, "x1": 438.1199951171875, "y1": 343.79998779296875, "width": 93.95999145507812, "height": 21.96002197265625}, {"x0": 192.24000549316406, "y0": 309.5999755859375, "x1": 295.20001220703125, "y1": 321.47998046875, "width": 102.96000671386719, "height": 11.8800048828125}, {"x0": 295.9200134277344, "y0": 309.5999755859375, "x1": 343.79998779296875, "y1": 320.760009765625, "width": 47.879974365234375, "height": 11.1600341796875}, {"x0": 344.1600036621094, "y0": 309.5999755859375, "x1": 438.1199951171875, "y1": 320.760009765625, "width": 93.95999145507812, "height": 11.1600341796875}, {"x0": 192.24000549316406, "y0": 297.719970703125, "x1": 295.20001220703125, "y1": 308.8800048828125, "width": 102.96000671386719, "height": 11.1600341796875}, {"x0": 295.9200134277344, "y0": 297.719970703125, "x1": 343.79998779296875, "y1": 308.8800048828125, "width": 47.879974365234375, "height": 11.1600341796875}, {"x0": 344.1600036621094, "y0": 297.719970703125, "x1": 438.1199951171875, "y1": 308.8800048828125, "width": 93.95999145507812, "height": 11.1600341796875}, {"x0": 192.24000549316406, "y0": 159.1199951171875, "x1": 295.20001220703125, "y1": 297.0, "width": 102.96000671386719, "height": 137.8800048828125}, {"x0": 295.9200134277344, "y0": 159.1199951171875, "x1": 343.79998779296875, "y1": 297.0, "width": 47.879974365234375, "height": 137.8800048828125}, {"x0": 344.1600036621094, "y0": 159.1199951171875, "x1": 438.1199951171875, "y1": 297.0, "width": 93.95999145507812, "height": 137.8800048828125}]}, {"pageInfo": {"number": 152, "rotation": 0, "width": 595.4400024414062, "height": 841.6799926757812}, "tableCells": [{"x0": 192.24000549316406, "y0": 732.239990234375, "x1": 295.9200134277344, "y1": 744.1199951171875, "width": 103.68000793457031, "height": 11.8800048828125}, {"x0": 296.6400146484375, "y0": 732.239990234375, "x1": 437.760009765625, "y1": 743.4000244140625, "width": 141.1199951171875, "height": 11.1600341796875}, {"x0": 192.9600067138672, "y0": 720.0, "x1": 295.9200134277344, "y1": 731.52001953125, "width": 102.96000671386719, "height": 11.52001953125}, {"x0": 296.6400146484375, "y0": 720.0, "x1": 343.0799865722656, "y1": 731.52001953125, "width": 46.439971923828125, "height": 11.52001953125}, {"x0": 343.79998779296875, "y0": 720.0, "x1": 437.760009765625, "y1": 731.52001953125, "width": 93.96002197265625, "height": 11.52001953125}, {"x0": 192.9600067138672, "y0": 581.760009765625, "x1": 295.9200134277344, "y1": 719.2799682617188, "width": 102.96000671386719, "height": 137.51995849609375}, {"x0": 296.6400146484375, "y0": 581.760009765625, "x1": 343.0799865722656, "y1": 719.2799682617188, "width": 46.439971923828125, "height": 137.51995849609375}, {"x0": 343.79998779296875, "y0": 581.760009765625, "x1": 437.760009765625, "y1": 719.2799682617188, "width": 93.96002197265625, "height": 137.51995849609375}]}]} \ No newline at end of file diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Documine/Flora/ProblemDocs/23_In Vitro Percutaneous Absorption - Human Split-Thickness Skin (1).pdf b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Documine/Flora/ProblemDocs/23_In Vitro Percutaneous Absorption - Human Split-Thickness Skin (1).pdf new file mode 100644 index 00000000..7d274f5b Binary files /dev/null and b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Documine/Flora/ProblemDocs/23_In Vitro Percutaneous Absorption - Human Split-Thickness Skin (1).pdf differ