From 4ade984a1c45f2d34415d553abd46f55f5e04d7e Mon Sep 17 00:00:00 2001
From: DemchaAV
Date: Sun, 13 Sep 2026 15:24:36 +0100
Subject: [PATCH 1/4] test(templates): restore CV and cover-letter layout
snapshot coverage
Sixteen layered CV presets and all fifteen cover letters shipped with a pixel
gate and no layout snapshot. The suites that pinned them were deleted with the
classic families in #276 and #277; their baselines stayed behind, and no test
has read them since. The pixel gates tolerate 50 000 mismatched pixels, so a
shift of a few points in any of these presets passes unseen.
- CvPresetFixtures and CoverLetterPresetFixtures hold each family's roster and
canonical document, moved verbatim out of the two pixel gates, so the pixel
gate and the snapshot gate render the same presets on the same document. The
only text change is a javadoc pointer that named the old location.
- CvPresetLayoutSnapshotTest and CoverLetterPresetLayoutSnapshotTest snapshot
every preset on the roster, as _layout.
- CoverLetterTextLayerGateTest reads the letter from its new home.
The 31 baselines were recorded by these gates on this tree, after every
difference from the renders these presets last had a snapshot of was
explained. Against their v2.2.0 renders 18 are identical and 13 moved, and
each move traces to a develop commit rendered on either side of it:
- #676, spaced caps set with tracking instead of padded strings: heading and
name widths only, no coordinate, height or page change. classic_serif,
sidebar_portrait, mint_editorial, timeline_minimal (CV and letter), and part
of minimal_underlined, centered_headline and monogram_sidebar.
- d0c946ad (in #633), stacked rows drawn as lists: bullet paragraphs become
ListNodes, four fewer nodes on each of boxed_sections, minimal_underlined,
modern_professional, executive and panel, and the list half of blue_banner
and centered_headline.
- #577, the employer drawn in Monogram Sidebar's experience entries: two
added nodes.
Page counts are unchanged in all 31, and every node that moved still sits
inside its parent and inside the page's content band.
---
.../presets/CoverLetterPresetFixtures.java | 116 +
.../CoverLetterPresetLayoutSnapshotTest.java | 55 +
.../presets/CoverLetterTextLayerGateTest.java | 4 +-
.../CoverLetterV2VisualParityTest.java | 90 +-
.../cv/presets/CvPresetFixtures.java | 237 ++
.../presets/CvPresetLayoutSnapshotTest.java | 53 +
.../cv/presets/CvV2VisualParityTest.java | 209 +-
.../coverletter-v2/blue_banner_layout.json | 377 ++
.../coverletter-v2/boxed_sections_layout.json | 377 ++
.../centered_headline_layout.json | 467 +++
.../coverletter-v2/classic_serif_layout.json | 377 ++
.../coverletter-v2/compact_mono_layout.json | 437 +++
.../coverletter-v2/editorial_blue_layout.json | 407 +++
.../engineering_resume_layout.json | 587 +++
.../coverletter-v2/executive_layout.json | 407 +++
.../mint-editorial-letter_layout.json | 377 ++
.../modern_professional_layout.json | 407 +++
.../monogram_sidebar_layout.json | 557 +++
.../coverletter-v2/nordic_clean_layout.json | 587 +++
.../coverletter-v2/panel_layout.json | 437 +++
.../sidebar_portrait_layout.json | 407 +++
.../timeline_minimal_layout.json | 587 +++
.../cv-v2/blue_banner_layout.json | 2777 +++++++++++++++
.../cv-v2/boxed_sections_layout.json | 2627 ++++++++++++++
.../cv-v2/centered_headline_layout.json | 3167 +++++++++++++++++
.../cv-v2/classic_serif_layout.json | 2957 +++++++++++++++
.../cv-v2/compact_mono_layout.json | 1577 ++++++++
.../cv-v2/editorial_blue_layout.json | 2357 ++++++++++++
.../cv-v2/engineering_resume_layout.json | 1817 ++++++++++
.../cv-v2/executive_layout.json | 2657 ++++++++++++++
.../cv-v2/minimal_underlined_layout.json | 2627 ++++++++++++++
.../cv-v2/mint_editorial_layout.json | 2447 +++++++++++++
.../cv-v2/modern_professional_layout.json | 2657 ++++++++++++++
.../cv-v2/monogram_sidebar_layout.json | 1937 ++++++++++
.../cv-v2/nordic_clean_layout.json | 1787 ++++++++++
.../cv-v2/panel_layout.json | 2417 +++++++++++++
.../cv-v2/sidebar_portrait_layout.json | 2687 ++++++++++++++
.../cv-v2/timeline_minimal_layout.json | 2387 +++++++++++++
38 files changed, 46150 insertions(+), 291 deletions(-)
create mode 100644 qa/src/test/java/com/demcha/compose/document/templates/coverletter/presets/CoverLetterPresetFixtures.java
create mode 100644 qa/src/test/java/com/demcha/compose/document/templates/coverletter/presets/CoverLetterPresetLayoutSnapshotTest.java
create mode 100644 qa/src/test/java/com/demcha/compose/document/templates/cv/presets/CvPresetFixtures.java
create mode 100644 qa/src/test/java/com/demcha/compose/document/templates/cv/presets/CvPresetLayoutSnapshotTest.java
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/blue_banner_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/boxed_sections_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/centered_headline_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/classic_serif_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/compact_mono_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/editorial_blue_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/engineering_resume_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/executive_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/mint-editorial-letter_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/modern_professional_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/monogram_sidebar_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/nordic_clean_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/panel_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/sidebar_portrait_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/timeline_minimal_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/blue_banner_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/boxed_sections_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/centered_headline_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/classic_serif_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/compact_mono_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/editorial_blue_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/engineering_resume_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/executive_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/minimal_underlined_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/mint_editorial_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/modern_professional_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/monogram_sidebar_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/nordic_clean_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/panel_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/sidebar_portrait_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/timeline_minimal_layout.json
diff --git a/qa/src/test/java/com/demcha/compose/document/templates/coverletter/presets/CoverLetterPresetFixtures.java b/qa/src/test/java/com/demcha/compose/document/templates/coverletter/presets/CoverLetterPresetFixtures.java
new file mode 100644
index 000000000..3d0d76a56
--- /dev/null
+++ b/qa/src/test/java/com/demcha/compose/document/templates/coverletter/presets/CoverLetterPresetFixtures.java
@@ -0,0 +1,116 @@
+package com.demcha.compose.document.templates.coverletter.presets;
+
+import com.demcha.compose.document.templates.api.DocumentTemplate;
+import com.demcha.compose.document.templates.coverletter.data.CoverLetterDocument;
+import com.demcha.compose.document.templates.cv.data.CvIdentity;
+import org.junit.jupiter.params.provider.Arguments;
+
+import java.util.function.Supplier;
+import java.util.stream.Stream;
+
+/**
+ * The layered cover-letter presets, and the letter they are gated on, shared
+ * by {@link CoverLetterV2VisualParityTest} and
+ * {@link CoverLetterPresetLayoutSnapshotTest}.
+ *
+ * The two gates read one roster for the reason the CV gates do (see
+ * {@code CvPresetFixtures}): the pixel budget absorbs shifts the exact layout
+ * snapshot catches, and a preset listed in one gate but not the other would be
+ * half covered with nothing to say so.
+ */
+final class CoverLetterPresetFixtures {
+
+ private CoverLetterPresetFixtures() {
+ }
+
+ /**
+ * Each preset as (slug, recommended margin, factory). The slug names the
+ * preset's pixel baseline, and with {@code _layout} appended its layout
+ * snapshot.
+ */
+ static Stream presets() {
+ return Stream.of(
+ Arguments.of("executive",
+ ExecutiveLetter.RECOMMENDED_MARGIN,
+ (Supplier>) ExecutiveLetter::create),
+ Arguments.of("modern_professional",
+ ModernProfessionalLetter.RECOMMENDED_MARGIN,
+ (Supplier>) ModernProfessionalLetter::create),
+ Arguments.of("boxed_sections",
+ BoxedSectionsLetter.RECOMMENDED_MARGIN,
+ (Supplier>) BoxedSectionsLetter::create),
+ Arguments.of("classic_serif",
+ ClassicSerifLetter.RECOMMENDED_MARGIN,
+ (Supplier>) ClassicSerifLetter::create),
+ Arguments.of("editorial_blue",
+ EditorialBlueLetter.RECOMMENDED_MARGIN,
+ (Supplier>) EditorialBlueLetter::create),
+ Arguments.of("centered_headline",
+ CenteredHeadlineLetter.RECOMMENDED_MARGIN,
+ (Supplier>) CenteredHeadlineLetter::create),
+ Arguments.of("blue_banner",
+ BlueBannerLetter.RECOMMENDED_MARGIN,
+ (Supplier>) BlueBannerLetter::create),
+ Arguments.of("engineering_resume",
+ EngineeringResumeLetter.RECOMMENDED_MARGIN,
+ (Supplier>) EngineeringResumeLetter::create),
+ Arguments.of("panel",
+ PanelLetter.RECOMMENDED_MARGIN,
+ (Supplier>) PanelLetter::create),
+ Arguments.of("compact_mono",
+ CompactMonoLetter.RECOMMENDED_MARGIN,
+ (Supplier>) CompactMonoLetter::create),
+ Arguments.of("nordic_clean",
+ NordicCleanLetter.RECOMMENDED_MARGIN,
+ (Supplier>) NordicCleanLetter::create),
+ Arguments.of("sidebar_portrait",
+ SidebarPortraitLetter.RECOMMENDED_MARGIN,
+ (Supplier>) SidebarPortraitLetter::create),
+ Arguments.of("monogram_sidebar",
+ MonogramSidebarLetter.RECOMMENDED_MARGIN,
+ (Supplier>) MonogramSidebarLetter::create),
+ Arguments.of("timeline_minimal",
+ TimelineMinimalLetter.RECOMMENDED_MARGIN,
+ (Supplier>) TimelineMinimalLetter::create),
+ Arguments.of("mint-editorial-letter",
+ MintEditorialLetter.RECOMMENDED_MARGIN,
+ (Supplier>) MintEditorialLetter::create));
+ }
+
+ /**
+ * Canonical sample letter — the same Jordan Rivera identity as
+ * {@code CvPresetFixtures} so the letter masthead is verified
+ * against the same content the CV gate uses, plus a greeting, three
+ * body paragraphs with inline markdown, and a closing.
+ *
+ * Kept inline (not pulled from the examples module) so the test
+ * depends only on main + main-test code.
+ */
+ static CoverLetterDocument canonicalLetter() {
+ return CoverLetterDocument.builder()
+ .identity(CvIdentity.builder()
+ .name("Jordan", "Rivera")
+ .jobTitle("Platform Engineer")
+ .contact("+44 20 5555 1000",
+ "jordan.rivera@example.com",
+ "London, UK")
+ .link("LinkedIn", "https://linkedin.com/in/jordan-rivera-demo")
+ .link("GitHub", "https://github.com/jrivera-demo")
+ .build())
+ .greeting("Dear Hiring Team at **Northwind Systems**,")
+ .paragraph("I am excited to share my interest in the Senior "
+ + "Platform Engineer role. My recent work has focused "
+ + "on building **reusable document-generation systems** "
+ + "that balance public API design, render quality, and "
+ + "maintainability.")
+ .paragraph("I enjoy translating fuzzy workflow requirements into "
+ + "clear template abstractions, reliable test coverage, "
+ + "and examples that make adoption easier for the rest "
+ + "of the team.")
+ .paragraph("I would welcome the opportunity to bring that same "
+ + "mix of engineering rigor and product thinking to your "
+ + "platform group.")
+ .closing("Sincerely,")
+ .build();
+ }
+}
diff --git a/qa/src/test/java/com/demcha/compose/document/templates/coverletter/presets/CoverLetterPresetLayoutSnapshotTest.java b/qa/src/test/java/com/demcha/compose/document/templates/coverletter/presets/CoverLetterPresetLayoutSnapshotTest.java
new file mode 100644
index 000000000..80530c232
--- /dev/null
+++ b/qa/src/test/java/com/demcha/compose/document/templates/coverletter/presets/CoverLetterPresetLayoutSnapshotTest.java
@@ -0,0 +1,55 @@
+package com.demcha.compose.document.templates.coverletter.presets;
+
+import com.demcha.compose.GraphCompose;
+import com.demcha.compose.document.api.DocumentPageSize;
+import com.demcha.compose.document.api.DocumentSession;
+import com.demcha.compose.document.templates.TemplateTestSupport;
+import com.demcha.compose.document.templates.api.DocumentTemplate;
+import com.demcha.compose.document.templates.coverletter.data.CoverLetterDocument;
+import org.junit.jupiter.params.ParameterizedTest;
+import org.junit.jupiter.params.provider.Arguments;
+import org.junit.jupiter.params.provider.MethodSource;
+
+import java.util.function.Supplier;
+import java.util.stream.Stream;
+
+/**
+ * Structural layout-snapshot gate for the layered cover-letter presets — the
+ * sibling of {@link CoverLetterV2VisualParityTest}, reading the same
+ * {@link CoverLetterPresetFixtures}.
+ *
+ * Each preset composes the canonical {@link CoverLetterDocument} on A4 at
+ * its {@code RECOMMENDED_MARGIN}, exactly as the pixel gate does, and the
+ * laid-out node tree is compared against
+ * {@code layout-snapshots/canonical-templates/coverletter-v2/_layout.json}.
+ * The comparison is exact: node identity, nesting, page ownership and
+ * geometry.
+ *
+ * After a deliberate layout change, re-run with
+ * {@code -Dgraphcompose.updateSnapshots=true} and commit the JSON with the
+ * change. A mismatch writes the actual snapshot under
+ * {@code target/visual-tests/layout-snapshots/} for diffing.
+ */
+class CoverLetterPresetLayoutSnapshotTest {
+
+ @ParameterizedTest(name = "{0}")
+ @MethodSource("presets")
+ void matchesLayoutSnapshot(String slug,
+ double margin,
+ Supplier> factory)
+ throws Exception {
+ DocumentTemplate template = factory.get();
+ float m = (float) margin;
+ try (DocumentSession document = GraphCompose.document()
+ .pageSize(DocumentPageSize.A4)
+ .margin(m, m, m, m)
+ .create()) {
+ template.compose(document, CoverLetterPresetFixtures.canonicalLetter());
+ TemplateTestSupport.assertCanonicalSnapshot(document, slug + "_layout", "coverletter-v2");
+ }
+ }
+
+ private static Stream presets() {
+ return CoverLetterPresetFixtures.presets();
+ }
+}
diff --git a/qa/src/test/java/com/demcha/compose/document/templates/coverletter/presets/CoverLetterTextLayerGateTest.java b/qa/src/test/java/com/demcha/compose/document/templates/coverletter/presets/CoverLetterTextLayerGateTest.java
index 98b6489cf..ab86985e2 100644
--- a/qa/src/test/java/com/demcha/compose/document/templates/coverletter/presets/CoverLetterTextLayerGateTest.java
+++ b/qa/src/test/java/com/demcha/compose/document/templates/coverletter/presets/CoverLetterTextLayerGateTest.java
@@ -50,7 +50,7 @@ void theLetterReadsBackAsWords(String slug, Supplier template) th
try (DocumentSession session = GraphCompose.document()
.pageSize(DocumentPageSize.A4)
.create()) {
- template.compose(session, CoverLetterV2VisualParityTest.canonicalLetter());
+ template.compose(session, CoverLetterPresetFixtures.canonicalLetter());
pdf = session.toPdfBytes();
}
try (PDDocument document = Loader.loadPDF(pdf)) {
diff --git a/qa/src/test/java/com/demcha/compose/document/templates/coverletter/presets/CoverLetterV2VisualParityTest.java b/qa/src/test/java/com/demcha/compose/document/templates/coverletter/presets/CoverLetterV2VisualParityTest.java
index 6f9dd181d..e640f01f8 100644
--- a/qa/src/test/java/com/demcha/compose/document/templates/coverletter/presets/CoverLetterV2VisualParityTest.java
+++ b/qa/src/test/java/com/demcha/compose/document/templates/coverletter/presets/CoverLetterV2VisualParityTest.java
@@ -5,7 +5,6 @@
import com.demcha.compose.document.api.DocumentSession;
import com.demcha.compose.document.templates.api.DocumentTemplate;
import com.demcha.compose.document.templates.coverletter.data.CoverLetterDocument;
-import com.demcha.compose.document.templates.cv.data.CvIdentity;
import com.demcha.compose.testing.visual.PdfVisualRegression;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
@@ -25,6 +24,9 @@
* against a checked-in baseline PNG. Failures write the actual render +
* diff image next to the baseline.
*
+ * The roster and the letter come from {@link CoverLetterPresetFixtures},
+ * which {@link CoverLetterPresetLayoutSnapshotTest} reads too.
+ *
* Re-blessing baselines — after a deliberate
* visual change, re-run with
* {@code -Dgraphcompose.visual.approve=true} (or environment variable
@@ -60,7 +62,7 @@ void rendersWithinPixelDiffBudget(String slug,
.pageSize(DocumentPageSize.A4)
.margin(m, m, m, m)
.create()) {
- template.compose(document, canonicalLetter());
+ template.compose(document, CoverLetterPresetFixtures.canonicalLetter());
pdfBytes = document.toPdfBytes();
}
@@ -72,88 +74,6 @@ void rendersWithinPixelDiffBudget(String slug,
}
private static Stream presets() {
- return Stream.of(
- Arguments.of("executive",
- ExecutiveLetter.RECOMMENDED_MARGIN,
- (Supplier>) ExecutiveLetter::create),
- Arguments.of("modern_professional",
- ModernProfessionalLetter.RECOMMENDED_MARGIN,
- (Supplier>) ModernProfessionalLetter::create),
- Arguments.of("boxed_sections",
- BoxedSectionsLetter.RECOMMENDED_MARGIN,
- (Supplier>) BoxedSectionsLetter::create),
- Arguments.of("classic_serif",
- ClassicSerifLetter.RECOMMENDED_MARGIN,
- (Supplier>) ClassicSerifLetter::create),
- Arguments.of("editorial_blue",
- EditorialBlueLetter.RECOMMENDED_MARGIN,
- (Supplier>) EditorialBlueLetter::create),
- Arguments.of("centered_headline",
- CenteredHeadlineLetter.RECOMMENDED_MARGIN,
- (Supplier>) CenteredHeadlineLetter::create),
- Arguments.of("blue_banner",
- BlueBannerLetter.RECOMMENDED_MARGIN,
- (Supplier>) BlueBannerLetter::create),
- Arguments.of("engineering_resume",
- EngineeringResumeLetter.RECOMMENDED_MARGIN,
- (Supplier>) EngineeringResumeLetter::create),
- Arguments.of("panel",
- PanelLetter.RECOMMENDED_MARGIN,
- (Supplier>) PanelLetter::create),
- Arguments.of("compact_mono",
- CompactMonoLetter.RECOMMENDED_MARGIN,
- (Supplier>) CompactMonoLetter::create),
- Arguments.of("nordic_clean",
- NordicCleanLetter.RECOMMENDED_MARGIN,
- (Supplier>) NordicCleanLetter::create),
- Arguments.of("sidebar_portrait",
- SidebarPortraitLetter.RECOMMENDED_MARGIN,
- (Supplier>) SidebarPortraitLetter::create),
- Arguments.of("monogram_sidebar",
- MonogramSidebarLetter.RECOMMENDED_MARGIN,
- (Supplier>) MonogramSidebarLetter::create),
- Arguments.of("timeline_minimal",
- TimelineMinimalLetter.RECOMMENDED_MARGIN,
- (Supplier>) TimelineMinimalLetter::create),
- Arguments.of("mint-editorial-letter",
- MintEditorialLetter.RECOMMENDED_MARGIN,
- (Supplier>) MintEditorialLetter::create));
- }
-
- /**
- * Canonical sample letter — the same Jordan Rivera identity as
- * {@code CvV2VisualParityTest} so the letter masthead is verified
- * against the same content the CV gate uses, plus a greeting, three
- * body paragraphs with inline markdown, and a closing.
- *
- * Kept inline (not pulled from the examples module) so the test
- * depends only on main + main-test code.
- */
- static CoverLetterDocument canonicalLetter() {
- return CoverLetterDocument.builder()
- .identity(CvIdentity.builder()
- .name("Jordan", "Rivera")
- .jobTitle("Platform Engineer")
- .contact("+44 20 5555 1000",
- "jordan.rivera@example.com",
- "London, UK")
- .link("LinkedIn", "https://linkedin.com/in/jordan-rivera-demo")
- .link("GitHub", "https://github.com/jrivera-demo")
- .build())
- .greeting("Dear Hiring Team at **Northwind Systems**,")
- .paragraph("I am excited to share my interest in the Senior "
- + "Platform Engineer role. My recent work has focused "
- + "on building **reusable document-generation systems** "
- + "that balance public API design, render quality, and "
- + "maintainability.")
- .paragraph("I enjoy translating fuzzy workflow requirements into "
- + "clear template abstractions, reliable test coverage, "
- + "and examples that make adoption easier for the rest "
- + "of the team.")
- .paragraph("I would welcome the opportunity to bring that same "
- + "mix of engineering rigor and product thinking to your "
- + "platform group.")
- .closing("Sincerely,")
- .build();
+ return CoverLetterPresetFixtures.presets();
}
}
diff --git a/qa/src/test/java/com/demcha/compose/document/templates/cv/presets/CvPresetFixtures.java b/qa/src/test/java/com/demcha/compose/document/templates/cv/presets/CvPresetFixtures.java
new file mode 100644
index 000000000..b61026f2a
--- /dev/null
+++ b/qa/src/test/java/com/demcha/compose/document/templates/cv/presets/CvPresetFixtures.java
@@ -0,0 +1,237 @@
+package com.demcha.compose.document.templates.cv.presets;
+
+import com.demcha.compose.document.templates.api.DocumentTemplate;
+import com.demcha.compose.document.templates.cv.data.CvDocument;
+import com.demcha.compose.document.templates.cv.data.CvIdentity;
+import com.demcha.compose.document.templates.cv.data.CvSkill;
+import com.demcha.compose.document.templates.cv.data.EntriesSection;
+import com.demcha.compose.document.templates.cv.data.ParagraphSection;
+import com.demcha.compose.document.templates.cv.data.RowStyle;
+import com.demcha.compose.document.templates.cv.data.RowsSection;
+import com.demcha.compose.document.templates.cv.data.SkillsSection;
+import org.junit.jupiter.params.provider.Arguments;
+
+import java.util.List;
+import java.util.function.Supplier;
+import java.util.stream.Stream;
+
+/**
+ * The layered CV presets, and the document they are gated on, shared by
+ * {@link CvV2VisualParityTest} and {@link CvPresetLayoutSnapshotTest}.
+ *
+ * Both gates render every preset on the same document because each sees
+ * what the other cannot. The pixel gate tolerates tens of thousands of
+ * mismatched pixels so cross-platform font drift does not redden it, and a
+ * shift of a few points fits inside that budget; the layout snapshot compares
+ * node geometry exactly and catches it. One roster keeps the two from drifting
+ * apart — a preset added to one gate and not the other would be half covered
+ * with nothing to say so.
+ */
+final class CvPresetFixtures {
+
+ private CvPresetFixtures() {
+ }
+
+ /**
+ * Each preset as (slug, recommended margin, factory). The slug names the
+ * preset's pixel baseline, and with {@code _layout} appended its layout
+ * snapshot.
+ */
+ static Stream presets() {
+ return Stream.of(
+ Arguments.of("boxed_sections",
+ BoxedSections.RECOMMENDED_MARGIN,
+ (Supplier>) BoxedSections::create),
+ Arguments.of("minimal_underlined",
+ MinimalUnderlined.RECOMMENDED_MARGIN,
+ (Supplier>) MinimalUnderlined::create),
+ Arguments.of("modern_professional",
+ ModernProfessional.RECOMMENDED_MARGIN,
+ (Supplier>) ModernProfessional::create),
+ Arguments.of("nordic_clean",
+ NordicClean.RECOMMENDED_MARGIN,
+ (Supplier>) NordicClean::create),
+ Arguments.of("centered_headline",
+ CenteredHeadline.RECOMMENDED_MARGIN,
+ (Supplier>) CenteredHeadline::create),
+ Arguments.of("blue_banner",
+ BlueBanner.RECOMMENDED_MARGIN,
+ (Supplier>) BlueBanner::create),
+ Arguments.of("editorial_blue",
+ EditorialBlue.RECOMMENDED_MARGIN,
+ (Supplier>) EditorialBlue::create),
+ Arguments.of("classic_serif",
+ ClassicSerif.RECOMMENDED_MARGIN,
+ (Supplier>) ClassicSerif::create),
+ Arguments.of("compact_mono",
+ CompactMono.RECOMMENDED_MARGIN,
+ (Supplier>) CompactMono::create),
+ Arguments.of("executive",
+ Executive.RECOMMENDED_MARGIN,
+ (Supplier>) Executive::create),
+ Arguments.of("panel",
+ Panel.RECOMMENDED_MARGIN,
+ (Supplier>) Panel::create),
+ Arguments.of("timeline_minimal",
+ TimelineMinimal.RECOMMENDED_MARGIN,
+ (Supplier>) TimelineMinimal::create),
+ Arguments.of("engineering_resume",
+ EngineeringResume.RECOMMENDED_MARGIN,
+ (Supplier>) EngineeringResume::create),
+ Arguments.of("monogram_sidebar",
+ MonogramSidebar.RECOMMENDED_MARGIN,
+ (Supplier>) MonogramSidebar::create),
+ Arguments.of("sidebar_portrait",
+ SidebarPortrait.RECOMMENDED_MARGIN,
+ (Supplier>) SidebarPortrait::create),
+ Arguments.of("mint_editorial",
+ MintEditorial.RECOMMENDED_MARGIN,
+ (Supplier>) MintEditorial::create));
+ }
+
+ /**
+ * Canonical sample document — Jordan Rivera with every v2 section
+ * subtype exercised so the gate covers paragraph, grouped
+ * skills, row styles, and timeline entries.
+ *
+ * Kept inline (not pulled from the examples module) so the
+ * test depends only on main + main-test code.
+ */
+ static CvDocument canonicalDocument() {
+ return CvDocument.builder()
+ .identity(CvIdentity.builder()
+ .name("Jordan", "Rivera")
+ .jobTitle("Platform Engineer")
+ .contact("+44 20 5555 1000",
+ "jordan.rivera@example.com",
+ "London, UK")
+ .link("LinkedIn", "https://linkedin.com/in/jordan-rivera-demo")
+ .link("GitHub", "https://github.com/jrivera-demo")
+ .build())
+ .section(new ParagraphSection("Professional Summary",
+ "Platform engineer with **10+ years** building resilient "
+ + "document-generation pipelines, layout engines, and "
+ + "developer-facing template systems. Specialised in "
+ + "high-throughput PDF rendering, semantic authoring "
+ + "DSLs, and turning brittle production-ops scripts "
+ + "into typed, snapshot-tested libraries that scale."))
+ // Skill names match the name-only form exactly; only
+ // optional proficiency levels are added so data-driven
+ // presets (Mint Editorial) can render meters. Name-only
+ // presets read SkillGroup.skills() and render identically,
+ // so the existing baselines are unaffected.
+ .section(SkillsSection.builder("Technical Skills")
+ .leveledGroup("Languages", List.of(
+ CvSkill.of("Java 21", 0.95),
+ CvSkill.of("Kotlin", 0.85),
+ CvSkill.of("Groovy", 0.7),
+ CvSkill.of("Python", 0.75),
+ CvSkill.of("SQL", 0.8)))
+ .leveledGroup("Document & Print", List.of(
+ CvSkill.of("PDFBox", 0.9),
+ CvSkill.of("Apache POI (DOCX/XLSX)", 0.7),
+ CvSkill.of("iText", 0.65),
+ CvSkill.of("PostScript", 0.6),
+ CvSkill.of("ICC colour profiles", 0.55),
+ CvSkill.of("font metrics", 0.7)))
+ .leveledGroup("Layout engines", List.of(
+ CvSkill.of("Custom DSL design", 0.9),
+ CvSkill.of("semantic layout trees", 0.85),
+ CvSkill.of("pagination", 0.85),
+ CvSkill.of("snapshot testing", 0.8),
+ CvSkill.of("visual regression", 0.8)))
+ .leveledGroup("Build & infrastructure", List.of(
+ CvSkill.of("Maven", 0.9),
+ CvSkill.of("Gradle", 0.75),
+ CvSkill.of("GitHub Actions", 0.85),
+ CvSkill.of("JitPack", 0.8),
+ CvSkill.of("Docker", 0.7),
+ CvSkill.of("JMH benchmarking", 0.65)))
+ .leveledGroup("Testing", List.of(
+ CvSkill.of("JUnit 5", 0.9),
+ CvSkill.of("AssertJ", 0.85),
+ CvSkill.of("PDFBox-based PNG diff", 0.8),
+ CvSkill.of("layout-graph snapshots", 0.8),
+ CvSkill.of("mutation testing (Pitest)", 0.6)))
+ .leveledGroup("Distribution", List.of(
+ CvSkill.of("Maven Central", 0.8),
+ CvSkill.of("Sonatype OSSRH", 0.75),
+ CvSkill.of("GPG signing", 0.7),
+ CvSkill.of("JitPack", 0.8),
+ CvSkill.of("semantic versioning discipline", 0.85)))
+ .build())
+ .section(EntriesSection.builder("Education & Certifications")
+ .entry("MSc Computer Science",
+ "University of Manchester",
+ "2019-2021",
+ "Distinction. Thesis: *Composable layout primitives "
+ + "for deterministic document rendering*.")
+ .entry("BSc Software Engineering",
+ "Imperial College London",
+ "2015-2019",
+ "First-class honours. Specialisation in compilers and "
+ + "static analysis.")
+ .entry("Oracle Java Certification",
+ "Professional track",
+ "2023-2024",
+ "Java 17 platform deep-dive: records, sealed types, "
+ + "pattern matching, virtual threads.")
+ .build())
+ .section(RowsSection.builder("Projects", RowStyle.BULLETED_STACKED)
+ .row("GraphCompose (Java 21, PDFBox, Maven, JMH)",
+ "Declarative Java PDF layout engine. Semantic DSL, "
+ + "slot-based templates, snapshot testing. Powers "
+ + "production CV / invoice / proposal pipelines for "
+ + "hiring tools and billing systems. *(Open source)*")
+ .row("Template Studio (Kotlin, Compose Desktop, PDFBox PNG diff)",
+ "Internal tool for evaluating CV, proposal, and "
+ + "invoice output across 14 design presets. PNG "
+ + "diffing, side-by-side layout, baseline freezing.")
+ .row("LayoutLint (Java 21, JavaParser, Spoon)",
+ "Static analyser that flags fragile authoring patterns "
+ + "(deeply nested rows, untyped offsets, implicit "
+ + "page breaks) before they ship to production.")
+ .row("ChromeForge (Java, GraphCompose, Pandoc bridge)",
+ "Editorial-magazine document toolkit built on "
+ + "GraphCompose: cinematic covers, pull quotes, "
+ + "multi-column flow, sidebar callouts.")
+ .build())
+ .section(EntriesSection.builder("Professional Experience")
+ .entry("Senior Platform Engineer",
+ "Northwind Systems",
+ "2024-Present",
+ "Led the reusable document-generation platform serving "
+ + "billing, hiring, and reporting flows across "
+ + "**8 product teams**. Reduced template maintenance "
+ + "time by **70%** by retiring per-team PDF scripts "
+ + "in favour of one canonical engine.")
+ .entry("Software Engineer",
+ "BrightLeaf Labs",
+ "2021-2024",
+ "Built backend services and production document rendering "
+ + "pipelines processing **2M+ documents per month**. "
+ + "Drove the migration from iText to a custom layout "
+ + "engine, eliminating licensing risk and cutting "
+ + "p99 render latency from 1.4s to 380ms.")
+ .entry("Backend Engineer",
+ "Helix Print Co",
+ "2019-2021",
+ "Maintained a high-volume invoice-printing service "
+ + "(15M PDFs/year) and authored the compliance test "
+ + "harness that gated every template change.")
+ .build())
+ .section(RowsSection.builder("Additional Information", RowStyle.PLAIN)
+ .row("Languages",
+ "English (Fluent), German (Intermediate), Spanish (Basic)")
+ .row("Work Eligibility",
+ "Eligible to work in the UK and the EU")
+ .row("Open Source",
+ "Maintainer of GraphCompose. Regular contributor to "
+ + "PDFBox issue triage.")
+ .row("Speaking",
+ "JVM Summit 2024, Devoxx UK 2025 — both on declarative "
+ + "document layout.")
+ .build())
+ .build();
+ }
+}
diff --git a/qa/src/test/java/com/demcha/compose/document/templates/cv/presets/CvPresetLayoutSnapshotTest.java b/qa/src/test/java/com/demcha/compose/document/templates/cv/presets/CvPresetLayoutSnapshotTest.java
new file mode 100644
index 000000000..9519929bf
--- /dev/null
+++ b/qa/src/test/java/com/demcha/compose/document/templates/cv/presets/CvPresetLayoutSnapshotTest.java
@@ -0,0 +1,53 @@
+package com.demcha.compose.document.templates.cv.presets;
+
+import com.demcha.compose.GraphCompose;
+import com.demcha.compose.document.api.DocumentPageSize;
+import com.demcha.compose.document.api.DocumentSession;
+import com.demcha.compose.document.templates.TemplateTestSupport;
+import com.demcha.compose.document.templates.api.DocumentTemplate;
+import com.demcha.compose.document.templates.cv.data.CvDocument;
+import org.junit.jupiter.params.ParameterizedTest;
+import org.junit.jupiter.params.provider.Arguments;
+import org.junit.jupiter.params.provider.MethodSource;
+
+import java.util.function.Supplier;
+import java.util.stream.Stream;
+
+/**
+ * Structural layout-snapshot gate for the layered CV presets — the sibling of
+ * {@link CvV2VisualParityTest}, reading the same {@link CvPresetFixtures}.
+ *
+ * Each preset composes the canonical {@link CvDocument} on A4 at its
+ * {@code RECOMMENDED_MARGIN}, exactly as the pixel gate does, and the laid-out
+ * node tree is compared against
+ * {@code layout-snapshots/canonical-templates/cv-v2/_layout.json}. The
+ * comparison is exact: node identity, nesting, page ownership and geometry.
+ *
+ * After a deliberate layout change, re-run with
+ * {@code -Dgraphcompose.updateSnapshots=true} and commit the JSON with the
+ * change. A mismatch writes the actual snapshot under
+ * {@code target/visual-tests/layout-snapshots/} for diffing.
+ */
+class CvPresetLayoutSnapshotTest {
+
+ @ParameterizedTest(name = "{0}")
+ @MethodSource("presets")
+ void matchesLayoutSnapshot(String slug,
+ double margin,
+ Supplier> factory)
+ throws Exception {
+ DocumentTemplate template = factory.get();
+ float m = (float) margin;
+ try (DocumentSession document = GraphCompose.document()
+ .pageSize(DocumentPageSize.A4)
+ .margin(m, m, m, m)
+ .create()) {
+ template.compose(document, CvPresetFixtures.canonicalDocument());
+ TemplateTestSupport.assertCanonicalSnapshot(document, slug + "_layout", "cv-v2");
+ }
+ }
+
+ private static Stream presets() {
+ return CvPresetFixtures.presets();
+ }
+}
diff --git a/qa/src/test/java/com/demcha/compose/document/templates/cv/presets/CvV2VisualParityTest.java b/qa/src/test/java/com/demcha/compose/document/templates/cv/presets/CvV2VisualParityTest.java
index fe7b0ddc7..87861c395 100644
--- a/qa/src/test/java/com/demcha/compose/document/templates/cv/presets/CvV2VisualParityTest.java
+++ b/qa/src/test/java/com/demcha/compose/document/templates/cv/presets/CvV2VisualParityTest.java
@@ -5,20 +5,12 @@
import com.demcha.compose.document.api.DocumentSession;
import com.demcha.compose.document.templates.api.DocumentTemplate;
import com.demcha.compose.document.templates.cv.data.CvDocument;
-import com.demcha.compose.document.templates.cv.data.CvIdentity;
-import com.demcha.compose.document.templates.cv.data.CvSkill;
-import com.demcha.compose.document.templates.cv.data.EntriesSection;
-import com.demcha.compose.document.templates.cv.data.ParagraphSection;
-import com.demcha.compose.document.templates.cv.data.RowStyle;
-import com.demcha.compose.document.templates.cv.data.RowsSection;
-import com.demcha.compose.document.templates.cv.data.SkillsSection;
import com.demcha.compose.testing.visual.PdfVisualRegression;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
import java.nio.file.Path;
-import java.util.List;
import java.util.function.Supplier;
import java.util.stream.Stream;
@@ -31,6 +23,9 @@
* checked-in baseline PNG. Failures write the actual render +
* diff image next to the baseline.
*
+ * The roster and the document come from {@link CvPresetFixtures},
+ * which {@link CvPresetLayoutSnapshotTest} reads too.
+ *
* Re-blessing baselines — after a deliberate
* visual change, re-run with
* {@code -Dgraphcompose.visual.approve=true} (or environment variable
@@ -74,7 +69,7 @@ void rendersWithinPixelDiffBudget(String slug,
.pageSize(DocumentPageSize.A4)
.margin(m, m, m, m)
.create()) {
- template.compose(document, canonicalDocument());
+ template.compose(document, CvPresetFixtures.canonicalDocument());
pdfBytes = document.toPdfBytes();
}
@@ -86,200 +81,6 @@ void rendersWithinPixelDiffBudget(String slug,
}
private static Stream presets() {
- return Stream.of(
- Arguments.of("boxed_sections",
- BoxedSections.RECOMMENDED_MARGIN,
- (Supplier>) BoxedSections::create),
- Arguments.of("minimal_underlined",
- MinimalUnderlined.RECOMMENDED_MARGIN,
- (Supplier>) MinimalUnderlined::create),
- Arguments.of("modern_professional",
- ModernProfessional.RECOMMENDED_MARGIN,
- (Supplier>) ModernProfessional::create),
- Arguments.of("nordic_clean",
- NordicClean.RECOMMENDED_MARGIN,
- (Supplier>) NordicClean::create),
- Arguments.of("centered_headline",
- CenteredHeadline.RECOMMENDED_MARGIN,
- (Supplier>) CenteredHeadline::create),
- Arguments.of("blue_banner",
- BlueBanner.RECOMMENDED_MARGIN,
- (Supplier>) BlueBanner::create),
- Arguments.of("editorial_blue",
- EditorialBlue.RECOMMENDED_MARGIN,
- (Supplier>) EditorialBlue::create),
- Arguments.of("classic_serif",
- ClassicSerif.RECOMMENDED_MARGIN,
- (Supplier>) ClassicSerif::create),
- Arguments.of("compact_mono",
- CompactMono.RECOMMENDED_MARGIN,
- (Supplier>) CompactMono::create),
- Arguments.of("executive",
- Executive.RECOMMENDED_MARGIN,
- (Supplier>) Executive::create),
- Arguments.of("panel",
- Panel.RECOMMENDED_MARGIN,
- (Supplier>) Panel::create),
- Arguments.of("timeline_minimal",
- TimelineMinimal.RECOMMENDED_MARGIN,
- (Supplier>) TimelineMinimal::create),
- Arguments.of("engineering_resume",
- EngineeringResume.RECOMMENDED_MARGIN,
- (Supplier>) EngineeringResume::create),
- Arguments.of("monogram_sidebar",
- MonogramSidebar.RECOMMENDED_MARGIN,
- (Supplier>) MonogramSidebar::create),
- Arguments.of("sidebar_portrait",
- SidebarPortrait.RECOMMENDED_MARGIN,
- (Supplier>) SidebarPortrait::create),
- Arguments.of("mint_editorial",
- MintEditorial.RECOMMENDED_MARGIN,
- (Supplier>) MintEditorial::create));
- }
-
- /**
- * Canonical sample document — Jordan Rivera with every v2 section
- * subtype exercised so the gate covers paragraph, grouped
- * skills, row styles, and timeline entries.
- *
- * Kept inline (not pulled from the examples module) so the
- * test depends only on main + main-test code.
- */
- private static CvDocument canonicalDocument() {
- return CvDocument.builder()
- .identity(CvIdentity.builder()
- .name("Jordan", "Rivera")
- .jobTitle("Platform Engineer")
- .contact("+44 20 5555 1000",
- "jordan.rivera@example.com",
- "London, UK")
- .link("LinkedIn", "https://linkedin.com/in/jordan-rivera-demo")
- .link("GitHub", "https://github.com/jrivera-demo")
- .build())
- .section(new ParagraphSection("Professional Summary",
- "Platform engineer with **10+ years** building resilient "
- + "document-generation pipelines, layout engines, and "
- + "developer-facing template systems. Specialised in "
- + "high-throughput PDF rendering, semantic authoring "
- + "DSLs, and turning brittle production-ops scripts "
- + "into typed, snapshot-tested libraries that scale."))
- // Skill names match the name-only form exactly; only
- // optional proficiency levels are added so data-driven
- // presets (Mint Editorial) can render meters. Name-only
- // presets read SkillGroup.skills() and render identically,
- // so the existing baselines are unaffected.
- .section(SkillsSection.builder("Technical Skills")
- .leveledGroup("Languages", List.of(
- CvSkill.of("Java 21", 0.95),
- CvSkill.of("Kotlin", 0.85),
- CvSkill.of("Groovy", 0.7),
- CvSkill.of("Python", 0.75),
- CvSkill.of("SQL", 0.8)))
- .leveledGroup("Document & Print", List.of(
- CvSkill.of("PDFBox", 0.9),
- CvSkill.of("Apache POI (DOCX/XLSX)", 0.7),
- CvSkill.of("iText", 0.65),
- CvSkill.of("PostScript", 0.6),
- CvSkill.of("ICC colour profiles", 0.55),
- CvSkill.of("font metrics", 0.7)))
- .leveledGroup("Layout engines", List.of(
- CvSkill.of("Custom DSL design", 0.9),
- CvSkill.of("semantic layout trees", 0.85),
- CvSkill.of("pagination", 0.85),
- CvSkill.of("snapshot testing", 0.8),
- CvSkill.of("visual regression", 0.8)))
- .leveledGroup("Build & infrastructure", List.of(
- CvSkill.of("Maven", 0.9),
- CvSkill.of("Gradle", 0.75),
- CvSkill.of("GitHub Actions", 0.85),
- CvSkill.of("JitPack", 0.8),
- CvSkill.of("Docker", 0.7),
- CvSkill.of("JMH benchmarking", 0.65)))
- .leveledGroup("Testing", List.of(
- CvSkill.of("JUnit 5", 0.9),
- CvSkill.of("AssertJ", 0.85),
- CvSkill.of("PDFBox-based PNG diff", 0.8),
- CvSkill.of("layout-graph snapshots", 0.8),
- CvSkill.of("mutation testing (Pitest)", 0.6)))
- .leveledGroup("Distribution", List.of(
- CvSkill.of("Maven Central", 0.8),
- CvSkill.of("Sonatype OSSRH", 0.75),
- CvSkill.of("GPG signing", 0.7),
- CvSkill.of("JitPack", 0.8),
- CvSkill.of("semantic versioning discipline", 0.85)))
- .build())
- .section(EntriesSection.builder("Education & Certifications")
- .entry("MSc Computer Science",
- "University of Manchester",
- "2019-2021",
- "Distinction. Thesis: *Composable layout primitives "
- + "for deterministic document rendering*.")
- .entry("BSc Software Engineering",
- "Imperial College London",
- "2015-2019",
- "First-class honours. Specialisation in compilers and "
- + "static analysis.")
- .entry("Oracle Java Certification",
- "Professional track",
- "2023-2024",
- "Java 17 platform deep-dive: records, sealed types, "
- + "pattern matching, virtual threads.")
- .build())
- .section(RowsSection.builder("Projects", RowStyle.BULLETED_STACKED)
- .row("GraphCompose (Java 21, PDFBox, Maven, JMH)",
- "Declarative Java PDF layout engine. Semantic DSL, "
- + "slot-based templates, snapshot testing. Powers "
- + "production CV / invoice / proposal pipelines for "
- + "hiring tools and billing systems. *(Open source)*")
- .row("Template Studio (Kotlin, Compose Desktop, PDFBox PNG diff)",
- "Internal tool for evaluating CV, proposal, and "
- + "invoice output across 14 design presets. PNG "
- + "diffing, side-by-side layout, baseline freezing.")
- .row("LayoutLint (Java 21, JavaParser, Spoon)",
- "Static analyser that flags fragile authoring patterns "
- + "(deeply nested rows, untyped offsets, implicit "
- + "page breaks) before they ship to production.")
- .row("ChromeForge (Java, GraphCompose, Pandoc bridge)",
- "Editorial-magazine document toolkit built on "
- + "GraphCompose: cinematic covers, pull quotes, "
- + "multi-column flow, sidebar callouts.")
- .build())
- .section(EntriesSection.builder("Professional Experience")
- .entry("Senior Platform Engineer",
- "Northwind Systems",
- "2024-Present",
- "Led the reusable document-generation platform serving "
- + "billing, hiring, and reporting flows across "
- + "**8 product teams**. Reduced template maintenance "
- + "time by **70%** by retiring per-team PDF scripts "
- + "in favour of one canonical engine.")
- .entry("Software Engineer",
- "BrightLeaf Labs",
- "2021-2024",
- "Built backend services and production document rendering "
- + "pipelines processing **2M+ documents per month**. "
- + "Drove the migration from iText to a custom layout "
- + "engine, eliminating licensing risk and cutting "
- + "p99 render latency from 1.4s to 380ms.")
- .entry("Backend Engineer",
- "Helix Print Co",
- "2019-2021",
- "Maintained a high-volume invoice-printing service "
- + "(15M PDFs/year) and authored the compliance test "
- + "harness that gated every template change.")
- .build())
- .section(RowsSection.builder("Additional Information", RowStyle.PLAIN)
- .row("Languages",
- "English (Fluent), German (Intermediate), Spanish (Basic)")
- .row("Work Eligibility",
- "Eligible to work in the UK and the EU")
- .row("Open Source",
- "Maintainer of GraphCompose. Regular contributor to "
- + "PDFBox issue triage.")
- .row("Speaking",
- "JVM Summit 2024, Devoxx UK 2025 — both on declarative "
- + "document layout.")
- .build())
- .build();
+ return CvPresetFixtures.presets();
}
}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/blue_banner_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/blue_banner_layout.json
new file mode 100644
index 000000000..74bb561f8
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/blue_banner_layout.json
@@ -0,0 +1,377 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 499.276,
+ "innerHeight" : 745.89,
+ "margin" : {
+ "top" : 48.0,
+ "right" : 48.0,
+ "bottom" : 48.0,
+ "left" : 48.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CoverLetterV2BlueBannerRoot[0]",
+ "entityName" : "CoverLetterV2BlueBannerRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 48.0,
+ "computedY" : 603.43,
+ "placementX" : 48.0,
+ "placementY" : 603.43,
+ "placementWidth" : 499.276,
+ "placementHeight" : 190.46,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 190.46,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerHeader[0]",
+ "entityName" : "CoverLetterV2BlueBannerHeader",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2BlueBannerRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 751.39,
+ "placementX" : 48.0,
+ "placementY" : 751.39,
+ "placementWidth" : 499.276,
+ "placementHeight" : 42.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 42.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerHeader[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 759.39,
+ "placementX" : 48.0,
+ "placementY" : 759.39,
+ "placementWidth" : 499.276,
+ "placementHeight" : 26.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 26.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerContact[1]",
+ "entityName" : "CoverLetterV2BlueBannerContact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2BlueBannerRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 735.39,
+ "placementX" : 48.0,
+ "placementY" : 735.39,
+ "placementWidth" : 499.276,
+ "placementHeight" : 12.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 12.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 1.5,
+ "right" : 0.0,
+ "bottom" : 1.5,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerContact[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerContact[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 736.89,
+ "placementX" : 48.0,
+ "placementY" : 736.89,
+ "placementWidth" : 499.276,
+ "placementHeight" : 9.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 9.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerBody[2]",
+ "entityName" : "CoverLetterV2BlueBannerBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2BlueBannerRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 603.43,
+ "placementX" : 48.0,
+ "placementY" : 603.43,
+ "placementWidth" : 496.827,
+ "placementHeight" : 127.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 496.827,
+ "contentHeight" : 127.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerBody[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerBody[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 712.29,
+ "placementX" : 48.0,
+ "placementY" : 712.29,
+ "placementWidth" : 139.909,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 139.909,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 9.86,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerBody[2]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerBody[2]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 682.885,
+ "placementX" : 48.0,
+ "placementY" : 682.885,
+ "placementWidth" : 479.749,
+ "placementHeight" : 19.78,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 479.749,
+ "contentHeight" : 19.78,
+ "margin" : {
+ "top" : 9.625,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerBody[2]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerBody[2]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 653.48,
+ "placementX" : 48.0,
+ "placementY" : 653.48,
+ "placementWidth" : 496.827,
+ "placementHeight" : 19.78,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 496.827,
+ "contentHeight" : 19.78,
+ "margin" : {
+ "top" : 9.625,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerBody[2]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerBody[2]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 634.615,
+ "placementX" : 48.0,
+ "placementY" : 634.615,
+ "placementWidth" : 411.55,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 411.55,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 9.625,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerBody[2]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerBody[2]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 615.75,
+ "placementX" : 48.0,
+ "placementY" : 615.75,
+ "placementWidth" : 32.479,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 32.479,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 9.625,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerBody[2]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2BlueBannerRoot[0]/CoverLetterV2BlueBannerBody[2]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 603.43,
+ "placementX" : 48.0,
+ "placementY" : 603.43,
+ "placementWidth" : 43.821,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 43.821,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 3.08,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/boxed_sections_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/boxed_sections_layout.json
new file mode 100644
index 000000000..26b184ede
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/boxed_sections_layout.json
@@ -0,0 +1,377 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 499.276,
+ "innerHeight" : 745.89,
+ "margin" : {
+ "top" : 48.0,
+ "right" : 48.0,
+ "bottom" : 48.0,
+ "left" : 48.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CoverLetterV2BoxedRoot[0]",
+ "entityName" : "CoverLetterV2BoxedRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 48.0,
+ "computedY" : 579.26,
+ "placementX" : 48.0,
+ "placementY" : 579.26,
+ "placementWidth" : 499.276,
+ "placementHeight" : 214.63,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 214.63,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedHeadline[0]",
+ "entityName" : "CoverLetterV2BoxedHeadline",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2BoxedRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 761.402,
+ "placementX" : 48.0,
+ "placementY" : 761.402,
+ "placementWidth" : 499.276,
+ "placementHeight" : 32.488,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 32.488,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 4.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedHeadline[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedHeadline[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 765.402,
+ "placementX" : 48.0,
+ "placementY" : 765.402,
+ "placementWidth" : 499.276,
+ "placementHeight" : 28.488,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 28.488,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedContact[1]",
+ "entityName" : "CoverLetterV2BoxedContact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2BoxedRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 735.14,
+ "placementX" : 48.0,
+ "placementY" : 735.14,
+ "placementWidth" : 499.276,
+ "placementHeight" : 19.263,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 19.263,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 4.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedContact[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedContact[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 739.14,
+ "placementX" : 48.0,
+ "placementY" : 739.14,
+ "placementWidth" : 499.276,
+ "placementHeight" : 11.263,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 11.263,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedBody[2]",
+ "entityName" : "CoverLetterV2BoxedBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2BoxedRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 579.26,
+ "placementX" : 48.0,
+ "placementY" : 579.26,
+ "placementWidth" : 490.673,
+ "placementHeight" : 148.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 490.673,
+ "contentHeight" : 148.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedBody[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedBody[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 708.265,
+ "placementX" : 48.0,
+ "placementY" : 708.265,
+ "placementWidth" : 162.162,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 162.162,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 8.48,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedBody[2]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedBody[2]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 673.325,
+ "placementX" : 48.0,
+ "placementY" : 673.325,
+ "placementWidth" : 458.69,
+ "placementHeight" : 24.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 458.69,
+ "contentHeight" : 24.19,
+ "margin" : {
+ "top" : 10.75,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedBody[2]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedBody[2]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 638.385,
+ "placementX" : 48.0,
+ "placementY" : 638.385,
+ "placementWidth" : 490.673,
+ "placementHeight" : 24.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 490.673,
+ "contentHeight" : 24.19,
+ "margin" : {
+ "top" : 10.75,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedBody[2]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedBody[2]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 616.24,
+ "placementX" : 48.0,
+ "placementY" : 616.24,
+ "placementWidth" : 468.554,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 468.554,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 10.75,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedBody[2]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedBody[2]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 594.095,
+ "placementX" : 48.0,
+ "placementY" : 594.095,
+ "placementWidth" : 37.634,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 37.634,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 10.75,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedBody[2]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2BoxedRoot[0]/CoverLetterV2BoxedBody[2]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 579.26,
+ "placementX" : 48.0,
+ "placementY" : 579.26,
+ "placementWidth" : 50.009,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 50.009,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 3.44,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/centered_headline_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/centered_headline_layout.json
new file mode 100644
index 000000000..26a3f3ba8
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/centered_headline_layout.json
@@ -0,0 +1,467 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 499.276,
+ "innerHeight" : 745.89,
+ "margin" : {
+ "top" : 48.0,
+ "right" : 48.0,
+ "bottom" : 48.0,
+ "left" : 48.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CoverLetterV2CenteredHeadlineRoot[0]",
+ "entityName" : "CoverLetterV2CenteredHeadlineRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 48.0,
+ "computedY" : 555.23,
+ "placementX" : 48.0,
+ "placementY" : 555.23,
+ "placementWidth" : 499.276,
+ "placementHeight" : 238.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 238.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineHeadline[0]",
+ "entityName" : "CoverLetterV2CenteredHeadlineHeadline",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2CenteredHeadlineRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 737.25,
+ "placementX" : 48.0,
+ "placementY" : 737.25,
+ "placementWidth" : 499.276,
+ "placementHeight" : 56.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 56.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineHeadline[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineHeadline[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 752.29,
+ "placementX" : 48.0,
+ "placementY" : 752.29,
+ "placementWidth" : 499.276,
+ "placementHeight" : 33.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 33.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineHeadline[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineHeadline[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 737.25,
+ "placementX" : 48.0,
+ "placementY" : 737.25,
+ "placementWidth" : 499.276,
+ "placementHeight" : 12.04,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 12.04,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineRule[1]",
+ "entityName" : "CoverLetterV2CenteredHeadlineRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CoverLetterV2CenteredHeadlineRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 729.25,
+ "placementX" : 48.0,
+ "placementY" : 729.25,
+ "placementWidth" : 499.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 7.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineContact[2]",
+ "entityName" : "CoverLetterV2CenteredHeadlineContact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2CenteredHeadlineRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 705.29,
+ "placementX" : 48.0,
+ "placementY" : 705.29,
+ "placementWidth" : 499.276,
+ "placementHeight" : 23.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 23.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 7.0,
+ "right" : 0.0,
+ "bottom" : 7.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineContact[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineContact[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 712.29,
+ "placementX" : 48.0,
+ "placementY" : 712.29,
+ "placementWidth" : 499.276,
+ "placementHeight" : 9.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 9.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredContactRule[3]",
+ "entityName" : "CoverLetterV2CenteredContactRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CoverLetterV2CenteredHeadlineRoot[0]",
+ "childIndex" : 3,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 704.29,
+ "placementX" : 48.0,
+ "placementY" : 704.29,
+ "placementWidth" : 499.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineBody[4]",
+ "entityName" : "CoverLetterV2CenteredHeadlineBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2CenteredHeadlineRoot[0]",
+ "childIndex" : 4,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 555.23,
+ "placementX" : 48.0,
+ "placementY" : 555.23,
+ "placementWidth" : 486.974,
+ "placementHeight" : 149.06,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 486.974,
+ "contentHeight" : 149.06,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineBody[4]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineBody[4]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 678.19,
+ "placementX" : 48.0,
+ "placementY" : 678.19,
+ "placementWidth" : 158.079,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 158.079,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 15.66,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineBody[4]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineBody[4]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 644.985,
+ "placementX" : 48.0,
+ "placementY" : 644.985,
+ "placementWidth" : 455.758,
+ "placementHeight" : 22.33,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 455.758,
+ "contentHeight" : 22.33,
+ "margin" : {
+ "top" : 10.875,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineBody[4]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineBody[4]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 611.78,
+ "placementX" : 48.0,
+ "placementY" : 611.78,
+ "placementWidth" : 486.974,
+ "placementHeight" : 22.33,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 486.974,
+ "contentHeight" : 22.33,
+ "margin" : {
+ "top" : 10.875,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineBody[4]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineBody[4]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 590.465,
+ "placementX" : 48.0,
+ "placementY" : 590.465,
+ "placementWidth" : 464.998,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 464.998,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 10.875,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineBody[4]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineBody[4]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 569.15,
+ "placementX" : 48.0,
+ "placementY" : 569.15,
+ "placementWidth" : 36.697,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 36.697,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 10.875,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineBody[4]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CenteredHeadlineRoot[0]/CoverLetterV2CenteredHeadlineBody[4]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 555.23,
+ "placementX" : 48.0,
+ "placementY" : 555.23,
+ "placementWidth" : 49.512,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 49.512,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 3.48,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/classic_serif_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/classic_serif_layout.json
new file mode 100644
index 000000000..d8c9189f5
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/classic_serif_layout.json
@@ -0,0 +1,377 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 499.276,
+ "innerHeight" : 745.89,
+ "margin" : {
+ "top" : 48.0,
+ "right" : 48.0,
+ "bottom" : 48.0,
+ "left" : 48.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CoverLetterV2ClassicSerifRoot[0]",
+ "entityName" : "CoverLetterV2ClassicSerifRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 48.0,
+ "computedY" : 581.687,
+ "placementX" : 48.0,
+ "placementY" : 581.687,
+ "placementWidth" : 499.276,
+ "placementHeight" : 212.202,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 212.202,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifHeader[0]",
+ "entityName" : "CoverLetterV2ClassicSerifHeader",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2ClassicSerifRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 744.587,
+ "placementX" : 48.0,
+ "placementY" : 744.587,
+ "placementWidth" : 499.276,
+ "placementHeight" : 49.303,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 49.303,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifHeader[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 758.115,
+ "placementX" : 48.0,
+ "placementY" : 758.115,
+ "placementWidth" : 499.276,
+ "placementHeight" : 35.775,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 35.775,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifHeader[0]/CoverLetterV2ClassicSerifHeaderRule[1]",
+ "entityName" : "CoverLetterV2ClassicSerifHeaderRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 756.115,
+ "placementX" : 48.0,
+ "placementY" : 756.115,
+ "placementWidth" : 499.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifHeader[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifHeader[0]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 744.587,
+ "placementX" : 48.0,
+ "placementY" : 744.587,
+ "placementWidth" : 499.276,
+ "placementHeight" : 11.528,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifBody[1]",
+ "entityName" : "CoverLetterV2ClassicSerifBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2ClassicSerifRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 581.687,
+ "placementX" : 48.0,
+ "placementY" : 581.687,
+ "placementWidth" : 490.347,
+ "placementHeight" : 154.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 490.347,
+ "contentHeight" : 154.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifBody[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifBody[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 716.462,
+ "placementX" : 48.0,
+ "placementY" : 716.462,
+ "placementWidth" : 169.704,
+ "placementHeight" : 11.925,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 169.704,
+ "contentHeight" : 11.925,
+ "margin" : {
+ "top" : 8.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifBody[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifBody[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 680.012,
+ "placementX" : 48.0,
+ "placementY" : 680.012,
+ "placementWidth" : 480.024,
+ "placementHeight" : 25.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 480.024,
+ "contentHeight" : 25.2,
+ "margin" : {
+ "top" : 11.25,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifBody[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifBody[1]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 643.562,
+ "placementX" : 48.0,
+ "placementY" : 643.562,
+ "placementWidth" : 489.825,
+ "placementHeight" : 25.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 489.825,
+ "contentHeight" : 25.2,
+ "margin" : {
+ "top" : 11.25,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifBody[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifBody[1]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 620.387,
+ "placementX" : 48.0,
+ "placementY" : 620.387,
+ "placementWidth" : 490.347,
+ "placementHeight" : 11.925,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 490.347,
+ "contentHeight" : 11.925,
+ "margin" : {
+ "top" : 11.25,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifBody[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifBody[1]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 597.212,
+ "placementX" : 48.0,
+ "placementY" : 597.212,
+ "placementWidth" : 39.384,
+ "placementHeight" : 11.925,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 39.384,
+ "contentHeight" : 11.925,
+ "margin" : {
+ "top" : 11.25,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifBody[1]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ClassicSerifRoot[0]/CoverLetterV2ClassicSerifBody[1]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 581.687,
+ "placementX" : 48.0,
+ "placementY" : 581.687,
+ "placementWidth" : 52.335,
+ "placementHeight" : 11.925,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 52.335,
+ "contentHeight" : 11.925,
+ "margin" : {
+ "top" : 3.6,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/compact_mono_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/compact_mono_layout.json
new file mode 100644
index 000000000..b633ebeee
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/compact_mono_layout.json
@@ -0,0 +1,437 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 499.276,
+ "innerHeight" : 745.89,
+ "margin" : {
+ "top" : 48.0,
+ "right" : 48.0,
+ "bottom" : 48.0,
+ "left" : 48.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CoverLetterV2CompactMonoRoot[0]",
+ "entityName" : "CoverLetterV2CompactMonoRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 48.0,
+ "computedY" : 578.98,
+ "placementX" : 48.0,
+ "placementY" : 578.98,
+ "placementWidth" : 499.276,
+ "placementHeight" : 214.91,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 214.91,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoHeader[0]",
+ "entityName" : "CoverLetterV2CompactMonoHeader",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2CompactMonoRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 717.38,
+ "placementX" : 48.0,
+ "placementY" : 717.38,
+ "placementWidth" : 499.276,
+ "placementHeight" : 76.51,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 76.51,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 13.0,
+ "right" : 16.0,
+ "bottom" : 14.0,
+ "left" : 16.0
+ }
+ }, {
+ "path" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoHeader[0]/Name[0]",
+ "entityName" : "Name",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 64.0,
+ "computedY" : 750.34,
+ "placementX" : 64.0,
+ "placementY" : 750.34,
+ "placementWidth" : 183.3,
+ "placementHeight" : 30.55,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 183.3,
+ "contentHeight" : 30.55,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoHeader[0]/Name[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoHeader[0]/Name[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 64.0,
+ "computedY" : 750.34,
+ "placementX" : 64.0,
+ "placementY" : 750.34,
+ "placementWidth" : 183.3,
+ "placementHeight" : 30.55,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 183.3,
+ "contentHeight" : 30.55,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoHeader[0]/Contact[1]",
+ "entityName" : "Contact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 64.0,
+ "computedY" : 736.38,
+ "placementX" : 64.0,
+ "placementY" : 736.38,
+ "placementWidth" : 319.708,
+ "placementHeight" : 9.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 319.708,
+ "contentHeight" : 9.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoHeader[0]/Contact[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoHeader[0]/Contact[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 64.0,
+ "computedY" : 736.38,
+ "placementX" : 64.0,
+ "placementY" : 736.38,
+ "placementWidth" : 319.708,
+ "placementHeight" : 9.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 319.708,
+ "contentHeight" : 9.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoHeader[0]/CoverLetterV2CompactMonoHeaderWidthRule[2]",
+ "entityName" : "CoverLetterV2CompactMonoHeaderWidthRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoHeader[0]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 64.0,
+ "computedY" : 731.38,
+ "placementX" : 64.0,
+ "placementY" : 731.38,
+ "placementWidth" : 467.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 467.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoBody[1]",
+ "entityName" : "CoverLetterV2CompactMonoBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2CompactMonoRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 578.98,
+ "placementX" : 48.0,
+ "placementY" : 578.98,
+ "placementWidth" : 487.126,
+ "placementHeight" : 129.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 487.126,
+ "contentHeight" : 129.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoBody[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoBody[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 693.08,
+ "placementX" : 48.0,
+ "placementY" : 693.08,
+ "placementWidth" : 147.177,
+ "placementHeight" : 9.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 147.177,
+ "contentHeight" : 9.72,
+ "margin" : {
+ "top" : 5.58,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoBody[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoBody[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 662.355,
+ "placementX" : 48.0,
+ "placementY" : 662.355,
+ "placementWidth" : 424.327,
+ "placementHeight" : 20.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 424.327,
+ "contentHeight" : 20.6,
+ "margin" : {
+ "top" : 10.125,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoBody[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoBody[1]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 631.63,
+ "placementX" : 48.0,
+ "placementY" : 631.63,
+ "placementWidth" : 487.126,
+ "placementHeight" : 20.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 487.126,
+ "contentHeight" : 20.6,
+ "margin" : {
+ "top" : 10.125,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoBody[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoBody[1]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 611.785,
+ "placementX" : 48.0,
+ "placementY" : 611.785,
+ "placementWidth" : 432.929,
+ "placementHeight" : 9.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 432.929,
+ "contentHeight" : 9.72,
+ "margin" : {
+ "top" : 10.125,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoBody[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoBody[1]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 591.94,
+ "placementX" : 48.0,
+ "placementY" : 591.94,
+ "placementWidth" : 34.166,
+ "placementHeight" : 9.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 34.166,
+ "contentHeight" : 9.72,
+ "margin" : {
+ "top" : 10.125,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoBody[1]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2CompactMonoRoot[0]/CoverLetterV2CompactMonoBody[1]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 578.98,
+ "placementX" : 48.0,
+ "placementY" : 578.98,
+ "placementWidth" : 46.097,
+ "placementHeight" : 9.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 46.097,
+ "contentHeight" : 9.72,
+ "margin" : {
+ "top" : 3.24,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/editorial_blue_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/editorial_blue_layout.json
new file mode 100644
index 000000000..78f6d3eaa
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/editorial_blue_layout.json
@@ -0,0 +1,407 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 499.276,
+ "innerHeight" : 745.89,
+ "margin" : {
+ "top" : 48.0,
+ "right" : 48.0,
+ "bottom" : 48.0,
+ "left" : 48.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CoverLetterV2EditorialBlueRoot[0]",
+ "entityName" : "CoverLetterV2EditorialBlueRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 48.0,
+ "computedY" : 594.5,
+ "placementX" : 48.0,
+ "placementY" : 594.5,
+ "placementWidth" : 499.276,
+ "placementHeight" : 199.39,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 199.39,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueHeader[0]",
+ "entityName" : "CoverLetterV2EditorialBlueHeader",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2EditorialBlueRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 734.64,
+ "placementX" : 48.0,
+ "placementY" : 734.64,
+ "placementWidth" : 499.276,
+ "placementHeight" : 59.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 59.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueHeader[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 771.54,
+ "placementX" : 48.0,
+ "placementY" : 771.54,
+ "placementWidth" : 499.276,
+ "placementHeight" : 20.35,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 20.35,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueHeader[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 759.29,
+ "placementX" : 48.0,
+ "placementY" : 759.29,
+ "placementWidth" : 499.276,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueHeader[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueHeader[0]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 747.965,
+ "placementX" : 48.0,
+ "placementY" : 747.965,
+ "placementWidth" : 499.276,
+ "placementHeight" : 8.325,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 8.325,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueHeader[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueHeader[0]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 736.64,
+ "placementX" : 48.0,
+ "placementY" : 736.64,
+ "placementWidth" : 499.276,
+ "placementHeight" : 8.325,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 8.325,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueBody[1]",
+ "entityName" : "CoverLetterV2EditorialBlueBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2EditorialBlueRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 594.5,
+ "placementX" : 48.0,
+ "placementY" : 594.5,
+ "placementWidth" : 498.933,
+ "placementHeight" : 140.14,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 498.933,
+ "contentHeight" : 140.14,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueBody[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueBody[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 709.025,
+ "placementX" : 48.0,
+ "placementY" : 709.025,
+ "placementWidth" : 177.594,
+ "placementHeight" : 8.695,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 177.594,
+ "contentHeight" : 8.695,
+ "margin" : {
+ "top" : 16.92,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueBody[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueBody[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 678.435,
+ "placementX" : 48.0,
+ "placementY" : 678.435,
+ "placementWidth" : 498.933,
+ "placementHeight" : 18.84,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 498.933,
+ "contentHeight" : 18.84,
+ "margin" : {
+ "top" : 11.75,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueBody[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueBody[1]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 647.845,
+ "placementX" : 48.0,
+ "placementY" : 647.845,
+ "placementWidth" : 485.858,
+ "placementHeight" : 18.84,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 485.858,
+ "contentHeight" : 18.84,
+ "margin" : {
+ "top" : 11.75,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueBody[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueBody[1]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 627.4,
+ "placementX" : 48.0,
+ "placementY" : 627.4,
+ "placementWidth" : 497.382,
+ "placementHeight" : 8.695,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 497.382,
+ "contentHeight" : 8.695,
+ "margin" : {
+ "top" : 11.75,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueBody[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueBody[1]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 606.955,
+ "placementX" : 48.0,
+ "placementY" : 606.955,
+ "placementWidth" : 41.266,
+ "placementHeight" : 8.695,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 41.266,
+ "contentHeight" : 8.695,
+ "margin" : {
+ "top" : 11.75,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueBody[1]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EditorialBlueRoot[0]/CoverLetterV2EditorialBlueBody[1]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 594.5,
+ "placementX" : 48.0,
+ "placementY" : 594.5,
+ "placementWidth" : 58.506,
+ "placementHeight" : 8.695,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 58.506,
+ "contentHeight" : 8.695,
+ "margin" : {
+ "top" : 3.76,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/engineering_resume_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/engineering_resume_layout.json
new file mode 100644
index 000000000..753f4a3e1
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/engineering_resume_layout.json
@@ -0,0 +1,587 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 499.276,
+ "innerHeight" : 745.89,
+ "margin" : {
+ "top" : 48.0,
+ "right" : 48.0,
+ "bottom" : 48.0,
+ "left" : 48.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]",
+ "entityName" : "CoverLetterV2EngineeringResumeRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 48.0,
+ "computedY" : 592.73,
+ "placementX" : 48.0,
+ "placementY" : 592.73,
+ "placementWidth" : 499.276,
+ "placementHeight" : 201.16,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 201.16,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]",
+ "entityName" : "CoverLetterV2EngineeringResumeHeader",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 716.69,
+ "placementX" : 48.0,
+ "placementY" : 716.69,
+ "placementWidth" : 499.276,
+ "placementHeight" : 77.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 77.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 13.0,
+ "right" : 15.0,
+ "bottom" : 13.0,
+ "left" : 15.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]",
+ "entityName" : "CoverLetterV2EngineeringResumeHeaderRow",
+ "entityKind" : "RowNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 63.0,
+ "computedY" : 729.69,
+ "placementX" : 63.0,
+ "placementY" : 729.69,
+ "placementWidth" : 469.276,
+ "placementHeight" : 51.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 469.276,
+ "contentHeight" : 51.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]/CoverLetterV2EngineeringResumeIdentity[0]",
+ "entityName" : "CoverLetterV2EngineeringResumeIdentity",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 63.0,
+ "computedY" : 739.37,
+ "placementX" : 63.0,
+ "placementY" : 739.37,
+ "placementWidth" : 179.83,
+ "placementHeight" : 41.52,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 179.83,
+ "contentHeight" : 41.52,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]/CoverLetterV2EngineeringResumeIdentity[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]/CoverLetterV2EngineeringResumeIdentity[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 63.0,
+ "computedY" : 751.49,
+ "placementX" : 63.0,
+ "placementY" : 751.49,
+ "placementWidth" : 179.83,
+ "placementHeight" : 29.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 179.83,
+ "contentHeight" : 29.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]/CoverLetterV2EngineeringResumeIdentity[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]/CoverLetterV2EngineeringResumeIdentity[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 63.0,
+ "computedY" : 739.37,
+ "placementX" : 63.0,
+ "placementY" : 739.37,
+ "placementWidth" : 80.347,
+ "placementHeight" : 9.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 80.347,
+ "contentHeight" : 9.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]/CoverLetterV2EngineeringResumeContact[1]",
+ "entityName" : "CoverLetterV2EngineeringResumeContact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 337.933,
+ "computedY" : 729.69,
+ "placementX" : 337.933,
+ "placementY" : 729.69,
+ "placementWidth" : 194.342,
+ "placementHeight" : 51.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 194.342,
+ "contentHeight" : 51.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]/CoverLetterV2EngineeringResumeContact[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]/CoverLetterV2EngineeringResumeContact[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 337.933,
+ "computedY" : 772.25,
+ "placementX" : 337.933,
+ "placementY" : 772.25,
+ "placementWidth" : 194.342,
+ "placementHeight" : 8.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 194.342,
+ "contentHeight" : 8.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]/CoverLetterV2EngineeringResumeContact[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]/CoverLetterV2EngineeringResumeContact[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 337.933,
+ "computedY" : 761.61,
+ "placementX" : 337.933,
+ "placementY" : 761.61,
+ "placementWidth" : 194.342,
+ "placementHeight" : 8.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 194.342,
+ "contentHeight" : 8.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]/CoverLetterV2EngineeringResumeContact[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]/CoverLetterV2EngineeringResumeContact[1]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 337.933,
+ "computedY" : 750.97,
+ "placementX" : 337.933,
+ "placementY" : 750.97,
+ "placementWidth" : 194.342,
+ "placementHeight" : 8.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 194.342,
+ "contentHeight" : 8.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]/CoverLetterV2EngineeringResumeContact[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]/CoverLetterV2EngineeringResumeContact[1]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 337.933,
+ "computedY" : 740.33,
+ "placementX" : 337.933,
+ "placementY" : 740.33,
+ "placementWidth" : 194.342,
+ "placementHeight" : 8.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 194.342,
+ "contentHeight" : 8.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]/CoverLetterV2EngineeringResumeContact[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeHeader[0]/CoverLetterV2EngineeringResumeHeaderRow[0]/CoverLetterV2EngineeringResumeContact[1]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 337.933,
+ "computedY" : 729.69,
+ "placementX" : 337.933,
+ "placementY" : 729.69,
+ "placementWidth" : 194.342,
+ "placementHeight" : 8.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 194.342,
+ "contentHeight" : 8.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeBody[1]",
+ "entityName" : "CoverLetterV2EngineeringResumeBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 592.73,
+ "placementX" : 48.0,
+ "placementY" : 592.73,
+ "placementWidth" : 494.225,
+ "placementHeight" : 115.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 494.225,
+ "contentHeight" : 115.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeBody[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeBody[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 694.94,
+ "placementX" : 48.0,
+ "placementY" : 694.94,
+ "placementWidth" : 131.733,
+ "placementHeight" : 8.7,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 131.733,
+ "contentHeight" : 8.7,
+ "margin" : {
+ "top" : 5.05,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeBody[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeBody[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 667.397,
+ "placementX" : 48.0,
+ "placementY" : 667.397,
+ "placementWidth" : 494.225,
+ "placementHeight" : 18.48,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 494.225,
+ "contentHeight" : 18.48,
+ "margin" : {
+ "top" : 9.063,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeBody[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeBody[1]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 639.855,
+ "placementX" : 48.0,
+ "placementY" : 639.855,
+ "placementWidth" : 494.189,
+ "placementHeight" : 18.48,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 494.189,
+ "contentHeight" : 18.48,
+ "margin" : {
+ "top" : 9.063,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeBody[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeBody[1]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 622.092,
+ "placementX" : 48.0,
+ "placementY" : 622.092,
+ "placementWidth" : 387.498,
+ "placementHeight" : 8.7,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 387.498,
+ "contentHeight" : 8.7,
+ "margin" : {
+ "top" : 9.063,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeBody[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeBody[1]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 604.33,
+ "placementX" : 48.0,
+ "placementY" : 604.33,
+ "placementWidth" : 30.581,
+ "placementHeight" : 8.7,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 30.581,
+ "contentHeight" : 8.7,
+ "margin" : {
+ "top" : 9.063,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeBody[1]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2EngineeringResumeRoot[0]/CoverLetterV2EngineeringResumeBody[1]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 592.73,
+ "placementX" : 48.0,
+ "placementY" : 592.73,
+ "placementWidth" : 41.26,
+ "placementHeight" : 8.7,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 41.26,
+ "contentHeight" : 8.7,
+ "margin" : {
+ "top" : 2.9,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/executive_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/executive_layout.json
new file mode 100644
index 000000000..6df097346
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/executive_layout.json
@@ -0,0 +1,407 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 499.276,
+ "innerHeight" : 745.89,
+ "margin" : {
+ "top" : 48.0,
+ "right" : 48.0,
+ "bottom" : 48.0,
+ "left" : 48.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CoverLetterV2ExecutiveRoot[0]",
+ "entityName" : "CoverLetterV2ExecutiveRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 48.0,
+ "computedY" : 548.12,
+ "placementX" : 48.0,
+ "placementY" : 548.12,
+ "placementWidth" : 499.276,
+ "placementHeight" : 245.77,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 245.77,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveHeader[0]",
+ "entityName" : "CoverLetterV2ExecutiveHeader",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2ExecutiveRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 722.87,
+ "placementX" : 48.0,
+ "placementY" : 722.87,
+ "placementWidth" : 499.276,
+ "placementHeight" : 71.02,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 71.02,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveHeader[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 760.29,
+ "placementX" : 48.0,
+ "placementY" : 760.29,
+ "placementWidth" : 193.224,
+ "placementHeight" : 33.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 193.224,
+ "contentHeight" : 33.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveHeader[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 745.37,
+ "placementX" : 48.0,
+ "placementY" : 745.37,
+ "placementWidth" : 129.921,
+ "placementHeight" : 10.92,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 129.921,
+ "contentHeight" : 10.92,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveHeader[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveHeader[0]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 730.97,
+ "placementX" : 48.0,
+ "placementY" : 730.97,
+ "placementWidth" : 195.957,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 195.957,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveHeader[0]/CoverLetterV2ExecutiveHeaderRule[3]",
+ "entityName" : "CoverLetterV2ExecutiveHeaderRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveHeader[0]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 722.87,
+ "placementX" : 48.0,
+ "placementY" : 722.87,
+ "placementWidth" : 499.276,
+ "placementHeight" : 1.1,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 1.1,
+ "margin" : {
+ "top" : 5.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveBody[1]",
+ "entityName" : "CoverLetterV2ExecutiveBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2ExecutiveRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 548.12,
+ "placementX" : 48.0,
+ "placementY" : 548.12,
+ "placementWidth" : 497.667,
+ "placementHeight" : 166.75,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 497.667,
+ "contentHeight" : 166.75,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveBody[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveBody[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 694.37,
+ "placementX" : 48.0,
+ "placementY" : 694.37,
+ "placementWidth" : 172.615,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 172.615,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 9.1,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveBody[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveBody[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 658.445,
+ "placementX" : 48.0,
+ "placementY" : 658.445,
+ "placementWidth" : 497.667,
+ "placementHeight" : 24.05,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 497.667,
+ "contentHeight" : 24.05,
+ "margin" : {
+ "top" : 11.875,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveBody[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveBody[1]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 622.52,
+ "placementX" : 48.0,
+ "placementY" : 622.52,
+ "placementWidth" : 487.664,
+ "placementHeight" : 24.05,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 487.664,
+ "contentHeight" : 24.05,
+ "margin" : {
+ "top" : 11.875,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveBody[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveBody[1]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 586.595,
+ "placementX" : 48.0,
+ "placementY" : 586.595,
+ "placementWidth" : 478.667,
+ "placementHeight" : 24.05,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 478.667,
+ "contentHeight" : 24.05,
+ "margin" : {
+ "top" : 11.875,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveBody[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveBody[1]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 563.32,
+ "placementX" : 48.0,
+ "placementY" : 563.32,
+ "placementWidth" : 40.071,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 40.071,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 11.875,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveBody[1]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ExecutiveRoot[0]/CoverLetterV2ExecutiveBody[1]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 548.12,
+ "placementX" : 48.0,
+ "placementY" : 548.12,
+ "placementWidth" : 54.064,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 54.064,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 3.8,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/mint-editorial-letter_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/mint-editorial-letter_layout.json
new file mode 100644
index 000000000..3b225bd43
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/mint-editorial-letter_layout.json
@@ -0,0 +1,377 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 499.276,
+ "innerHeight" : 745.89,
+ "margin" : {
+ "top" : 48.0,
+ "right" : 48.0,
+ "bottom" : 48.0,
+ "left" : 48.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CoverLetterV2MintEditorialRoot[0]",
+ "entityName" : "CoverLetterV2MintEditorialRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 48.0,
+ "computedY" : 542.73,
+ "placementX" : 48.0,
+ "placementY" : 542.73,
+ "placementWidth" : 499.276,
+ "placementHeight" : 251.16,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 251.16,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialHeader[0]",
+ "entityName" : "CoverLetterV2MintEditorialHeader",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2MintEditorialRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 744.13,
+ "placementX" : 48.0,
+ "placementY" : 744.13,
+ "placementWidth" : 499.276,
+ "placementHeight" : 49.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 49.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialHeader[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 757.49,
+ "placementX" : 48.0,
+ "placementY" : 757.49,
+ "placementWidth" : 499.276,
+ "placementHeight" : 36.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 36.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialHeader[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 744.13,
+ "placementX" : 48.0,
+ "placementY" : 744.13,
+ "placementWidth" : 499.276,
+ "placementHeight" : 10.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 10.36,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialHeaderRule[1]",
+ "entityName" : "CoverLetterV2MintEditorialHeaderRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CoverLetterV2MintEditorialRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 0.0,
+ "computedY" : 712.13,
+ "placementX" : 0.0,
+ "placementY" : 712.13,
+ "placementWidth" : 595.276,
+ "placementHeight" : 6.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 595.276,
+ "contentHeight" : 6.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : -48.0,
+ "bottom" : 14.0,
+ "left" : -48.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialBody[2]",
+ "entityName" : "CoverLetterV2MintEditorialBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2MintEditorialRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 542.73,
+ "placementX" : 48.0,
+ "placementY" : 542.73,
+ "placementWidth" : 487.16,
+ "placementHeight" : 137.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 487.16,
+ "contentHeight" : 137.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialBody[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialBody[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 666.93,
+ "placementX" : 48.0,
+ "placementY" : 666.93,
+ "placementWidth" : 163.912,
+ "placementHeight" : 11.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 163.912,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialBody[2]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialBody[2]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 633.23,
+ "placementX" : 48.0,
+ "placementY" : 633.23,
+ "placementWidth" : 472.72,
+ "placementHeight" : 23.7,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 472.72,
+ "contentHeight" : 23.7,
+ "margin" : {
+ "top" : 10.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialBody[2]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialBody[2]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 599.53,
+ "placementX" : 48.0,
+ "placementY" : 599.53,
+ "placementWidth" : 487.16,
+ "placementHeight" : 23.7,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 487.16,
+ "contentHeight" : 23.7,
+ "margin" : {
+ "top" : 10.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialBody[2]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialBody[2]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 578.33,
+ "placementX" : 48.0,
+ "placementY" : 578.33,
+ "placementWidth" : 484.88,
+ "placementHeight" : 11.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 484.88,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 10.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialBody[2]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialBody[2]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 557.13,
+ "placementX" : 48.0,
+ "placementY" : 557.13,
+ "placementWidth" : 37.6,
+ "placementHeight" : 11.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 37.6,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 10.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialBody[2]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MintEditorialRoot[0]/CoverLetterV2MintEditorialBody[2]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 542.73,
+ "placementX" : 48.0,
+ "placementY" : 542.73,
+ "placementWidth" : 55.336,
+ "placementHeight" : 11.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 55.336,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 3.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/modern_professional_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/modern_professional_layout.json
new file mode 100644
index 000000000..0f51b74e5
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/modern_professional_layout.json
@@ -0,0 +1,407 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 499.276,
+ "innerHeight" : 745.89,
+ "margin" : {
+ "top" : 48.0,
+ "right" : 48.0,
+ "bottom" : 48.0,
+ "left" : 48.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CoverLetterV2ModernRoot[0]",
+ "entityName" : "CoverLetterV2ModernRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 48.0,
+ "computedY" : 582.04,
+ "placementX" : 48.0,
+ "placementY" : 582.04,
+ "placementWidth" : 499.276,
+ "placementHeight" : 211.85,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 211.85,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ModernRoot[0]/Header[0]",
+ "entityName" : "Header",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2ModernRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 767.99,
+ "placementX" : 48.0,
+ "placementY" : 767.99,
+ "placementWidth" : 499.276,
+ "placementHeight" : 25.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 25.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ModernRoot[0]/Header[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ModernRoot[0]/Header[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 767.99,
+ "placementX" : 48.0,
+ "placementY" : 767.99,
+ "placementWidth" : 499.276,
+ "placementHeight" : 25.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 25.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ModernRoot[0]/Contact[1]",
+ "entityName" : "Contact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2ModernRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 741.34,
+ "placementX" : 48.0,
+ "placementY" : 741.34,
+ "placementWidth" : 499.276,
+ "placementHeight" : 22.65,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 22.65,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 6.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ModernRoot[0]/Contact[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ModernRoot[0]/Contact[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 755.665,
+ "placementX" : 48.0,
+ "placementY" : 755.665,
+ "placementWidth" : 499.276,
+ "placementHeight" : 8.325,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 8.325,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ModernRoot[0]/Contact[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ModernRoot[0]/Contact[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 747.34,
+ "placementX" : 48.0,
+ "placementY" : 747.34,
+ "placementWidth" : 499.276,
+ "placementHeight" : 8.325,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 8.325,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ModernRoot[0]/CoverLetterV2ModernBody[2]",
+ "entityName" : "CoverLetterV2ModernBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2ModernRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 582.04,
+ "placementX" : 48.0,
+ "placementY" : 582.04,
+ "placementWidth" : 498.0,
+ "placementHeight" : 155.3,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 498.0,
+ "contentHeight" : 155.3,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ModernRoot[0]/CoverLetterV2ModernBody[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ModernRoot[0]/CoverLetterV2ModernBody[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 714.09,
+ "placementX" : 48.0,
+ "placementY" : 714.09,
+ "placementWidth" : 188.93,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 188.93,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 14.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ModernRoot[0]/CoverLetterV2ModernBody[2]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ModernRoot[0]/CoverLetterV2ModernBody[2]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 681.74,
+ "placementX" : 48.0,
+ "placementY" : 681.74,
+ "placementWidth" : 486.87,
+ "placementHeight" : 19.85,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 486.87,
+ "contentHeight" : 19.85,
+ "margin" : {
+ "top" : 12.5,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ModernRoot[0]/CoverLetterV2ModernBody[2]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ModernRoot[0]/CoverLetterV2ModernBody[2]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 649.39,
+ "placementX" : 48.0,
+ "placementY" : 649.39,
+ "placementWidth" : 471.3,
+ "placementHeight" : 19.85,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 471.3,
+ "contentHeight" : 19.85,
+ "margin" : {
+ "top" : 12.5,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ModernRoot[0]/CoverLetterV2ModernBody[2]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ModernRoot[0]/CoverLetterV2ModernBody[2]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 617.04,
+ "placementX" : 48.0,
+ "placementY" : 617.04,
+ "placementWidth" : 498.0,
+ "placementHeight" : 19.85,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 498.0,
+ "contentHeight" : 19.85,
+ "margin" : {
+ "top" : 12.5,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ModernRoot[0]/CoverLetterV2ModernBody[2]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ModernRoot[0]/CoverLetterV2ModernBody[2]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 595.29,
+ "placementX" : 48.0,
+ "placementY" : 595.29,
+ "placementWidth" : 43.9,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 43.9,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 12.5,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2ModernRoot[0]/CoverLetterV2ModernBody[2]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2ModernRoot[0]/CoverLetterV2ModernBody[2]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 582.04,
+ "placementX" : 48.0,
+ "placementY" : 582.04,
+ "placementWidth" : 62.24,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 62.24,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/monogram_sidebar_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/monogram_sidebar_layout.json
new file mode 100644
index 000000000..5dacc5a56
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/monogram_sidebar_layout.json
@@ -0,0 +1,557 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 499.276,
+ "innerHeight" : 745.89,
+ "margin" : {
+ "top" : 48.0,
+ "right" : 48.0,
+ "bottom" : 48.0,
+ "left" : 48.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]",
+ "entityName" : "CoverLetterV2MonogramSidebarRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 48.0,
+ "computedY" : 366.241,
+ "placementX" : 48.0,
+ "placementY" : 366.241,
+ "placementWidth" : 499.276,
+ "placementHeight" : 427.648,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 427.648,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]",
+ "entityName" : "CoverLetterV2MonogramSidebarHeader",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 520.141,
+ "placementX" : 48.0,
+ "placementY" : 520.141,
+ "placementWidth" : 499.276,
+ "placementHeight" : 273.748,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 273.748,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]/CoverLetterV2MonogramSidebarFrame[0]",
+ "entityName" : "CoverLetterV2MonogramSidebarFrame",
+ "entityKind" : "LayerStackNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 671.89,
+ "placementX" : 48.0,
+ "placementY" : 671.89,
+ "placementWidth" : 499.276,
+ "placementHeight" : 122.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 122.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 20.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]/CoverLetterV2MonogramSidebarFrame[0]/CoverLetterV2MonogramSidebarSpace[0]",
+ "entityName" : "CoverLetterV2MonogramSidebarSpace",
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]/CoverLetterV2MonogramSidebarFrame[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 48.0,
+ "computedY" : 671.89,
+ "placementX" : 48.0,
+ "placementY" : 671.89,
+ "placementWidth" : 499.276,
+ "placementHeight" : 122.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 122.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]/CoverLetterV2MonogramSidebarFrame[0]/CoverLetterV2MonogramSidebarBadge[1]",
+ "entityName" : "CoverLetterV2MonogramSidebarBadge",
+ "entityKind" : "LayerStackNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]/CoverLetterV2MonogramSidebarFrame[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 236.638,
+ "computedY" : 671.89,
+ "placementX" : 236.638,
+ "placementY" : 671.89,
+ "placementWidth" : 122.0,
+ "placementHeight" : 122.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 122.0,
+ "contentHeight" : 122.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]/CoverLetterV2MonogramSidebarFrame[0]/CoverLetterV2MonogramSidebarBadge[1]/CoverLetterV2MonogramSidebarRing[0]",
+ "entityName" : "CoverLetterV2MonogramSidebarRing",
+ "entityKind" : "EllipseNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]/CoverLetterV2MonogramSidebarFrame[0]/CoverLetterV2MonogramSidebarBadge[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.638,
+ "computedY" : 671.89,
+ "placementX" : 236.638,
+ "placementY" : 671.89,
+ "placementWidth" : 122.0,
+ "placementHeight" : 122.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 122.0,
+ "contentHeight" : 122.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]/CoverLetterV2MonogramSidebarFrame[0]/CoverLetterV2MonogramSidebarBadge[1]/CoverLetterV2MonogramSidebarInitials[1]",
+ "entityName" : "CoverLetterV2MonogramSidebarInitials",
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]/CoverLetterV2MonogramSidebarFrame[0]/CoverLetterV2MonogramSidebarBadge[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 274.274,
+ "computedY" : 703.74,
+ "placementX" : 274.274,
+ "placementY" : 703.74,
+ "placementWidth" : 46.728,
+ "placementHeight" : 58.3,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 46.728,
+ "contentHeight" : 58.3,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 612.896,
+ "placementX" : 48.0,
+ "placementY" : 612.896,
+ "placementWidth" : 499.276,
+ "placementHeight" : 38.994,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 38.994,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 6.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 567.901,
+ "placementX" : 48.0,
+ "placementY" : 567.901,
+ "placementWidth" : 499.276,
+ "placementHeight" : 38.994,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 38.994,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 547.021,
+ "placementX" : 48.0,
+ "placementY" : 547.021,
+ "placementWidth" : 499.276,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 12.0,
+ "right" : 0.0,
+ "bottom" : 18.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarHeader[0]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 520.141,
+ "placementX" : 48.0,
+ "placementY" : 520.141,
+ "placementWidth" : 499.276,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarBody[1]",
+ "entityName" : "CoverLetterV2MonogramSidebarBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 366.241,
+ "placementX" : 48.0,
+ "placementY" : 366.241,
+ "placementWidth" : 481.032,
+ "placementHeight" : 153.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 481.032,
+ "contentHeight" : 153.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarBody[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarBody[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 493.141,
+ "placementX" : 48.0,
+ "placementY" : 493.141,
+ "placementWidth" : 163.53,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 163.53,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 16.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarBody[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarBody[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 458.941,
+ "placementX" : 48.0,
+ "placementY" : 458.941,
+ "placementWidth" : 471.474,
+ "placementHeight" : 22.95,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 471.474,
+ "contentHeight" : 22.95,
+ "margin" : {
+ "top" : 11.25,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarBody[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarBody[1]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 424.741,
+ "placementX" : 48.0,
+ "placementY" : 424.741,
+ "placementWidth" : 480.258,
+ "placementHeight" : 22.95,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 480.258,
+ "contentHeight" : 22.95,
+ "margin" : {
+ "top" : 11.25,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarBody[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarBody[1]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 402.691,
+ "placementX" : 48.0,
+ "placementY" : 402.691,
+ "placementWidth" : 481.032,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 481.032,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 11.25,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarBody[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarBody[1]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 380.641,
+ "placementX" : 48.0,
+ "placementY" : 380.641,
+ "placementWidth" : 37.962,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 37.962,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 11.25,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarBody[1]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2MonogramSidebarRoot[0]/CoverLetterV2MonogramSidebarBody[1]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 366.241,
+ "placementX" : 48.0,
+ "placementY" : 366.241,
+ "placementWidth" : 51.219,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 51.219,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 3.6,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/nordic_clean_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/nordic_clean_layout.json
new file mode 100644
index 000000000..9f15d46d0
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/nordic_clean_layout.json
@@ -0,0 +1,587 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 499.276,
+ "innerHeight" : 745.89,
+ "margin" : {
+ "top" : 48.0,
+ "right" : 48.0,
+ "bottom" : 48.0,
+ "left" : 48.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CoverLetterV2NordicCleanRoot[0]",
+ "entityName" : "CoverLetterV2NordicCleanRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 48.0,
+ "computedY" : 613.09,
+ "placementX" : 48.0,
+ "placementY" : 613.09,
+ "placementWidth" : 499.276,
+ "placementHeight" : 180.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 180.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]",
+ "entityName" : "CoverLetterV2NordicCleanHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 740.49,
+ "placementX" : 48.0,
+ "placementY" : 740.49,
+ "placementWidth" : 499.276,
+ "placementHeight" : 53.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 53.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Identity[0]",
+ "entityName" : "Identity",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 742.65,
+ "placementX" : 48.0,
+ "placementY" : 742.65,
+ "placementWidth" : 198.18,
+ "placementHeight" : 51.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 198.18,
+ "contentHeight" : 51.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Identity[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Identity[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 48.0,
+ "computedY" : 760.49,
+ "placementX" : 48.0,
+ "placementY" : 760.49,
+ "placementWidth" : 198.18,
+ "placementHeight" : 32.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 198.18,
+ "contentHeight" : 32.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Identity[0]/CoverLetterV2NordicCleanNameAccent[1]",
+ "entityName" : "CoverLetterV2NordicCleanNameAccent",
+ "entityKind" : "ShapeNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Identity[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 48.0,
+ "computedY" : 755.89,
+ "placementX" : 48.0,
+ "placementY" : 755.89,
+ "placementWidth" : 64.0,
+ "placementHeight" : 2.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 64.0,
+ "contentHeight" : 2.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Identity[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Identity[0]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 48.0,
+ "computedY" : 744.65,
+ "placementX" : 48.0,
+ "placementY" : 744.65,
+ "placementWidth" : 81.404,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 81.404,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Contact[1]",
+ "entityName" : "Contact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 353.165,
+ "computedY" : 740.49,
+ "placementX" : 353.165,
+ "placementY" : 740.49,
+ "placementWidth" : 194.11,
+ "placementHeight" : 53.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 194.11,
+ "contentHeight" : 53.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 3.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Contact[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Contact[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 353.165,
+ "computedY" : 782.01,
+ "placementX" : 353.165,
+ "placementY" : 782.01,
+ "placementWidth" : 194.11,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 194.11,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Contact[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Contact[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 353.165,
+ "computedY" : 771.63,
+ "placementX" : 353.165,
+ "placementY" : 771.63,
+ "placementWidth" : 194.11,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 194.11,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Contact[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Contact[1]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 353.165,
+ "computedY" : 761.25,
+ "placementX" : 353.165,
+ "placementY" : 761.25,
+ "placementWidth" : 194.11,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 194.11,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Contact[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Contact[1]",
+ "childIndex" : 3,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 353.165,
+ "computedY" : 750.87,
+ "placementX" : 353.165,
+ "placementY" : 750.87,
+ "placementWidth" : 194.11,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 194.11,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Contact[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanHeader[0]/Contact[1]",
+ "childIndex" : 4,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 353.165,
+ "computedY" : 740.49,
+ "placementX" : 353.165,
+ "placementY" : 740.49,
+ "placementWidth" : 194.11,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 194.11,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanBody[1]",
+ "entityName" : "CoverLetterV2NordicCleanBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 613.09,
+ "placementX" : 48.0,
+ "placementY" : 613.09,
+ "placementWidth" : 493.369,
+ "placementHeight" : 120.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 493.369,
+ "contentHeight" : 120.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanBody[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanBody[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 718.14,
+ "placementX" : 48.0,
+ "placementY" : 718.14,
+ "placementWidth" : 135.367,
+ "placementHeight" : 8.94,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 135.367,
+ "contentHeight" : 8.94,
+ "margin" : {
+ "top" : 6.41,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanBody[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanBody[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 689.827,
+ "placementX" : 48.0,
+ "placementY" : 689.827,
+ "placementWidth" : 492.743,
+ "placementHeight" : 19.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 492.743,
+ "contentHeight" : 19.0,
+ "margin" : {
+ "top" : 9.313,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanBody[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanBody[1]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 661.515,
+ "placementX" : 48.0,
+ "placementY" : 661.515,
+ "placementWidth" : 493.369,
+ "placementHeight" : 19.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 493.369,
+ "contentHeight" : 19.0,
+ "margin" : {
+ "top" : 9.313,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanBody[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanBody[1]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 643.262,
+ "placementX" : 48.0,
+ "placementY" : 643.262,
+ "placementWidth" : 398.188,
+ "placementHeight" : 8.94,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 398.188,
+ "contentHeight" : 8.94,
+ "margin" : {
+ "top" : 9.313,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanBody[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanBody[1]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 625.01,
+ "placementX" : 48.0,
+ "placementY" : 625.01,
+ "placementWidth" : 31.424,
+ "placementHeight" : 8.94,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 31.424,
+ "contentHeight" : 8.94,
+ "margin" : {
+ "top" : 9.313,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanBody[1]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2NordicCleanRoot[0]/CoverLetterV2NordicCleanBody[1]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 613.09,
+ "placementX" : 48.0,
+ "placementY" : 613.09,
+ "placementWidth" : 42.398,
+ "placementHeight" : 8.94,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 42.398,
+ "contentHeight" : 8.94,
+ "margin" : {
+ "top" : 2.98,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/panel_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/panel_layout.json
new file mode 100644
index 000000000..7edd3c981
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/panel_layout.json
@@ -0,0 +1,437 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 499.276,
+ "innerHeight" : 745.89,
+ "margin" : {
+ "top" : 48.0,
+ "right" : 48.0,
+ "bottom" : 48.0,
+ "left" : 48.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CoverLetterV2PanelRoot[0]",
+ "entityName" : "CoverLetterV2PanelRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 48.0,
+ "computedY" : 525.65,
+ "placementX" : 48.0,
+ "placementY" : 525.65,
+ "placementWidth" : 499.276,
+ "placementHeight" : 268.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 268.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelHeader[0]",
+ "entityName" : "CoverLetterV2PanelHeader",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2PanelRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 698.45,
+ "placementX" : 48.0,
+ "placementY" : 698.45,
+ "placementWidth" : 499.276,
+ "placementHeight" : 95.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 95.44,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 8.0,
+ "bottom" : 8.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelHeader[0]/SpacerNode[0]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 56.0,
+ "computedY" : 785.89,
+ "placementX" : 56.0,
+ "placementY" : 785.89,
+ "placementWidth" : 483.276,
+ "placementHeight" : 0.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 483.276,
+ "contentHeight" : 0.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelHeader[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 56.0,
+ "computedY" : 751.09,
+ "placementX" : 56.0,
+ "placementY" : 751.09,
+ "placementWidth" : 483.276,
+ "placementHeight" : 30.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 483.276,
+ "contentHeight" : 30.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelHeader[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelHeader[0]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 56.0,
+ "computedY" : 735.81,
+ "placementX" : 56.0,
+ "placementY" : 735.81,
+ "placementWidth" : 483.276,
+ "placementHeight" : 11.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 483.276,
+ "contentHeight" : 11.28,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelHeader[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelHeader[0]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 56.0,
+ "computedY" : 721.13,
+ "placementX" : 56.0,
+ "placementY" : 721.13,
+ "placementWidth" : 483.276,
+ "placementHeight" : 10.68,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 483.276,
+ "contentHeight" : 10.68,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelHeader[0]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelHeader[0]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 56.0,
+ "computedY" : 706.45,
+ "placementX" : 56.0,
+ "placementY" : 706.45,
+ "placementWidth" : 483.276,
+ "placementHeight" : 10.68,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 483.276,
+ "contentHeight" : 10.68,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelBody[1]",
+ "entityName" : "CoverLetterV2PanelBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2PanelRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 525.65,
+ "placementX" : 48.0,
+ "placementY" : 525.65,
+ "placementWidth" : 492.428,
+ "placementHeight" : 166.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 492.428,
+ "contentHeight" : 166.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelBody[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelBody[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 670.25,
+ "placementX" : 48.0,
+ "placementY" : 670.25,
+ "placementWidth" : 170.798,
+ "placementHeight" : 11.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.798,
+ "contentHeight" : 11.28,
+ "margin" : {
+ "top" : 10.92,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelBody[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelBody[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 634.74,
+ "placementX" : 48.0,
+ "placementY" : 634.74,
+ "placementWidth" : 492.428,
+ "placementHeight" : 23.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 492.428,
+ "contentHeight" : 23.76,
+ "margin" : {
+ "top" : 11.75,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelBody[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelBody[1]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 599.23,
+ "placementX" : 48.0,
+ "placementY" : 599.23,
+ "placementWidth" : 482.53,
+ "placementHeight" : 23.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 482.53,
+ "contentHeight" : 23.76,
+ "margin" : {
+ "top" : 11.75,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelBody[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelBody[1]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 563.72,
+ "placementX" : 48.0,
+ "placementY" : 563.72,
+ "placementWidth" : 473.628,
+ "placementHeight" : 23.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 473.628,
+ "contentHeight" : 23.76,
+ "margin" : {
+ "top" : 11.75,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelBody[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelBody[1]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 540.69,
+ "placementX" : 48.0,
+ "placementY" : 540.69,
+ "placementWidth" : 39.649,
+ "placementHeight" : 11.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 39.649,
+ "contentHeight" : 11.28,
+ "margin" : {
+ "top" : 11.75,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelBody[1]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2PanelRoot[0]/CoverLetterV2PanelBody[1]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 525.65,
+ "placementX" : 48.0,
+ "placementY" : 525.65,
+ "placementWidth" : 53.495,
+ "placementHeight" : 11.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 53.495,
+ "contentHeight" : 11.28,
+ "margin" : {
+ "top" : 3.76,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/sidebar_portrait_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/sidebar_portrait_layout.json
new file mode 100644
index 000000000..3b32d1ee6
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/sidebar_portrait_layout.json
@@ -0,0 +1,407 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 499.276,
+ "innerHeight" : 745.89,
+ "margin" : {
+ "top" : 48.0,
+ "right" : 48.0,
+ "bottom" : 48.0,
+ "left" : 48.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CoverLetterV2SidebarPortraitRoot[0]",
+ "entityName" : "CoverLetterV2SidebarPortraitRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 48.0,
+ "computedY" : 525.205,
+ "placementX" : 48.0,
+ "placementY" : 525.205,
+ "placementWidth" : 499.276,
+ "placementHeight" : 268.685,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 268.685,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitHero[0]",
+ "entityName" : "CoverLetterV2SidebarPortraitHero",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2SidebarPortraitRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 708.415,
+ "placementX" : 48.0,
+ "placementY" : 708.415,
+ "placementWidth" : 499.276,
+ "placementHeight" : 85.475,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 85.475,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 19.0,
+ "right" : 34.0,
+ "bottom" : 17.0,
+ "left" : 34.0
+ }
+ }, {
+ "path" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitHero[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitHero[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 82.0,
+ "computedY" : 738.495,
+ "placementX" : 82.0,
+ "placementY" : 738.495,
+ "placementWidth" : 431.276,
+ "placementHeight" : 36.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 431.276,
+ "contentHeight" : 36.395,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitHero[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitHero[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 82.0,
+ "computedY" : 725.415,
+ "placementX" : 82.0,
+ "placementY" : 725.415,
+ "placementWidth" : 431.276,
+ "placementHeight" : 10.08,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 431.276,
+ "contentHeight" : 10.08,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitContact[1]",
+ "entityName" : "CoverLetterV2SidebarPortraitContact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2SidebarPortraitRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 698.455,
+ "placementX" : 48.0,
+ "placementY" : 698.455,
+ "placementWidth" : 499.276,
+ "placementHeight" : 9.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 9.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitContact[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitContact[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 698.455,
+ "placementX" : 48.0,
+ "placementY" : 698.455,
+ "placementWidth" : 499.276,
+ "placementHeight" : 9.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 9.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitBody[2]",
+ "entityName" : "CoverLetterV2SidebarPortraitBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2SidebarPortraitRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 525.205,
+ "placementX" : 48.0,
+ "placementY" : 525.205,
+ "placementWidth" : 492.428,
+ "placementHeight" : 173.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 492.428,
+ "contentHeight" : 173.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitBody[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitBody[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 670.255,
+ "placementX" : 48.0,
+ "placementY" : 670.255,
+ "placementWidth" : 170.798,
+ "placementHeight" : 11.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.798,
+ "contentHeight" : 11.28,
+ "margin" : {
+ "top" : 16.92,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitBody[2]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitBody[2]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 634.595,
+ "placementX" : 48.0,
+ "placementY" : 634.595,
+ "placementWidth" : 492.428,
+ "placementHeight" : 23.91,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 492.428,
+ "contentHeight" : 23.91,
+ "margin" : {
+ "top" : 11.75,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitBody[2]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitBody[2]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 598.935,
+ "placementX" : 48.0,
+ "placementY" : 598.935,
+ "placementWidth" : 482.53,
+ "placementHeight" : 23.91,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 482.53,
+ "contentHeight" : 23.91,
+ "margin" : {
+ "top" : 11.75,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitBody[2]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitBody[2]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 563.275,
+ "placementX" : 48.0,
+ "placementY" : 563.275,
+ "placementWidth" : 473.628,
+ "placementHeight" : 23.91,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 473.628,
+ "contentHeight" : 23.91,
+ "margin" : {
+ "top" : 11.75,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitBody[2]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitBody[2]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 540.245,
+ "placementX" : 48.0,
+ "placementY" : 540.245,
+ "placementWidth" : 39.649,
+ "placementHeight" : 11.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 39.649,
+ "contentHeight" : 11.28,
+ "margin" : {
+ "top" : 11.75,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitBody[2]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2SidebarPortraitRoot[0]/CoverLetterV2SidebarPortraitBody[2]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 525.205,
+ "placementX" : 48.0,
+ "placementY" : 525.205,
+ "placementWidth" : 53.495,
+ "placementHeight" : 11.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 53.495,
+ "contentHeight" : 11.28,
+ "margin" : {
+ "top" : 3.76,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/timeline_minimal_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/timeline_minimal_layout.json
new file mode 100644
index 000000000..b80ef92f8
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/timeline_minimal_layout.json
@@ -0,0 +1,587 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 499.276,
+ "innerHeight" : 745.89,
+ "margin" : {
+ "top" : 48.0,
+ "right" : 48.0,
+ "bottom" : 48.0,
+ "left" : 48.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]",
+ "entityName" : "CoverLetterV2TimelineMinimalRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 48.0,
+ "computedY" : 562.79,
+ "placementX" : 48.0,
+ "placementY" : 562.79,
+ "placementWidth" : 499.276,
+ "placementHeight" : 231.1,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 231.1,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]",
+ "entityName" : "CoverLetterV2TimelineMinimalHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 729.39,
+ "placementX" : 48.0,
+ "placementY" : 729.39,
+ "placementWidth" : 499.276,
+ "placementHeight" : 64.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 64.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]/CoverLetterV2TimelineMinimalName[0]",
+ "entityName" : "CoverLetterV2TimelineMinimalName",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 744.89,
+ "placementX" : 48.0,
+ "placementY" : 744.89,
+ "placementWidth" : 213.136,
+ "placementHeight" : 49.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 213.136,
+ "contentHeight" : 49.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]/CoverLetterV2TimelineMinimalName[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]/CoverLetterV2TimelineMinimalName[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 48.0,
+ "computedY" : 760.29,
+ "placementX" : 48.0,
+ "placementY" : 760.29,
+ "placementWidth" : 213.136,
+ "placementHeight" : 33.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 213.136,
+ "contentHeight" : 33.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]/CoverLetterV2TimelineMinimalName[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]/CoverLetterV2TimelineMinimalName[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 48.0,
+ "computedY" : 744.89,
+ "placementX" : 48.0,
+ "placementY" : 744.89,
+ "placementWidth" : 70.908,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 70.908,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]/CoverLetterV2TimelineMinimalContact[1]",
+ "entityName" : "CoverLetterV2TimelineMinimalContact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 359.246,
+ "computedY" : 729.39,
+ "placementX" : 359.246,
+ "placementY" : 729.39,
+ "placementWidth" : 188.03,
+ "placementHeight" : 64.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 188.03,
+ "contentHeight" : 64.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]/CoverLetterV2TimelineMinimalContact[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]/CoverLetterV2TimelineMinimalContact[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 359.246,
+ "computedY" : 783.39,
+ "placementX" : 359.246,
+ "placementY" : 783.39,
+ "placementWidth" : 188.03,
+ "placementHeight" : 10.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 188.03,
+ "contentHeight" : 10.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]/CoverLetterV2TimelineMinimalContact[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]/CoverLetterV2TimelineMinimalContact[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 359.246,
+ "computedY" : 769.89,
+ "placementX" : 359.246,
+ "placementY" : 769.89,
+ "placementWidth" : 188.03,
+ "placementHeight" : 10.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 188.03,
+ "contentHeight" : 10.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]/CoverLetterV2TimelineMinimalContact[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]/CoverLetterV2TimelineMinimalContact[1]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 359.246,
+ "computedY" : 756.39,
+ "placementX" : 359.246,
+ "placementY" : 756.39,
+ "placementWidth" : 188.03,
+ "placementHeight" : 10.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 188.03,
+ "contentHeight" : 10.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]/CoverLetterV2TimelineMinimalContact[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]/CoverLetterV2TimelineMinimalContact[1]",
+ "childIndex" : 3,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 359.246,
+ "computedY" : 742.89,
+ "placementX" : 359.246,
+ "placementY" : 742.89,
+ "placementWidth" : 188.03,
+ "placementHeight" : 10.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 188.03,
+ "contentHeight" : 10.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]/CoverLetterV2TimelineMinimalContact[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeader[0]/CoverLetterV2TimelineMinimalContact[1]",
+ "childIndex" : 4,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 359.246,
+ "computedY" : 729.39,
+ "placementX" : 359.246,
+ "placementY" : 729.39,
+ "placementWidth" : 188.03,
+ "placementHeight" : 10.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 188.03,
+ "contentHeight" : 10.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalHeaderRule[1]",
+ "entityName" : "CoverLetterV2TimelineMinimalHeaderRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 716.39,
+ "placementX" : 48.0,
+ "placementY" : 716.39,
+ "placementWidth" : 499.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalBody[2]",
+ "entityName" : "CoverLetterV2TimelineMinimalBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 562.79,
+ "placementX" : 48.0,
+ "placementY" : 562.79,
+ "placementWidth" : 481.032,
+ "placementHeight" : 141.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 481.032,
+ "contentHeight" : 141.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalBody[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalBody[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 689.39,
+ "placementX" : 48.0,
+ "placementY" : 689.39,
+ "placementWidth" : 163.53,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 163.53,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 4.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalBody[2]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalBody[2]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 655.34,
+ "placementX" : 48.0,
+ "placementY" : 655.34,
+ "placementWidth" : 471.474,
+ "placementHeight" : 22.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 471.474,
+ "contentHeight" : 22.8,
+ "margin" : {
+ "top" : 11.25,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalBody[2]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalBody[2]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 621.29,
+ "placementX" : 48.0,
+ "placementY" : 621.29,
+ "placementWidth" : 480.258,
+ "placementHeight" : 22.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 480.258,
+ "contentHeight" : 22.8,
+ "margin" : {
+ "top" : 11.25,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalBody[2]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalBody[2]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 599.24,
+ "placementX" : 48.0,
+ "placementY" : 599.24,
+ "placementWidth" : 481.032,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 481.032,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 11.25,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalBody[2]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalBody[2]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 577.19,
+ "placementX" : 48.0,
+ "placementY" : 577.19,
+ "placementWidth" : 37.962,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 37.962,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 11.25,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalBody[2]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CoverLetterV2TimelineMinimalRoot[0]/CoverLetterV2TimelineMinimalBody[2]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 562.79,
+ "placementX" : 48.0,
+ "placementY" : 562.79,
+ "placementWidth" : 51.219,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 51.219,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 3.6,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/blue_banner_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/blue_banner_layout.json
new file mode 100644
index 000000000..3796c8ac3
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/blue_banner_layout.json
@@ -0,0 +1,2777 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 539.276,
+ "innerHeight" : 785.89,
+ "margin" : {
+ "top" : 28.0,
+ "right" : 28.0,
+ "bottom" : 28.0,
+ "left" : 28.0
+ }
+ },
+ "totalPages" : 2,
+ "nodes" : [ {
+ "path" : "CvV2BlueBannerRoot[0]",
+ "entityName" : "CvV2BlueBannerRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 28.0,
+ "computedY" : 15.73,
+ "placementX" : 28.0,
+ "placementY" : 15.73,
+ "placementWidth" : 539.276,
+ "placementHeight" : 798.16,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 798.16,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/Header[0]",
+ "entityName" : "Header",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 771.39,
+ "placementX" : 28.0,
+ "placementY" : 771.39,
+ "placementWidth" : 539.276,
+ "placementHeight" : 42.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 42.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/Header[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/Header[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 779.39,
+ "placementX" : 28.0,
+ "placementY" : 779.39,
+ "placementWidth" : 539.276,
+ "placementHeight" : 26.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 26.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/Contact[1]",
+ "entityName" : "Contact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 755.39,
+ "placementX" : 28.0,
+ "placementY" : 755.39,
+ "placementWidth" : 539.276,
+ "placementHeight" : 12.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 12.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 1.5,
+ "right" : 0.0,
+ "bottom" : 1.5,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/Contact[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/Contact[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 756.89,
+ "placementX" : 28.0,
+ "placementY" : 756.89,
+ "placementWidth" : 539.276,
+ "placementHeight" : 9.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 9.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_0RuleTop[2]",
+ "entityName" : "BlueBannerTitle_0RuleTop",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 46.0,
+ "computedY" : 747.39,
+ "placementX" : 46.0,
+ "placementY" : 747.39,
+ "placementWidth" : 500.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 500.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 18.0,
+ "bottom" : 1.0,
+ "left" : 18.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_0[3]",
+ "entityName" : "BlueBannerTitle_0",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 3,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 727.23,
+ "placementX" : 28.0,
+ "placementY" : 727.23,
+ "placementWidth" : 539.276,
+ "placementHeight" : 15.16,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 15.16,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 3.2,
+ "right" : 0.0,
+ "bottom" : 3.2,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_0[3]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_0[3]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 730.43,
+ "placementX" : 28.0,
+ "placementY" : 730.43,
+ "placementWidth" : 539.276,
+ "placementHeight" : 8.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 8.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_0RuleBottom[4]",
+ "entityName" : "BlueBannerTitle_0RuleBottom",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 4,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 46.0,
+ "computedY" : 721.23,
+ "placementX" : 46.0,
+ "placementY" : 721.23,
+ "placementWidth" : 500.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 500.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 18.0,
+ "bottom" : 1.0,
+ "left" : 18.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_0[5]",
+ "entityName" : "BlueBannerBody_0",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 5,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 692.25,
+ "placementX" : 28.0,
+ "placementY" : 692.25,
+ "placementWidth" : 523.908,
+ "placementHeight" : 23.98,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 523.908,
+ "contentHeight" : 23.98,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 3.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_0[5]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_0[5]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 692.25,
+ "placementX" : 32.0,
+ "placementY" : 692.25,
+ "placementWidth" : 515.908,
+ "placementHeight" : 19.78,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 515.908,
+ "contentHeight" : 19.78,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_1RuleTop[6]",
+ "entityName" : "BlueBannerTitle_1RuleTop",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 6,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 46.0,
+ "computedY" : 684.25,
+ "placementX" : 46.0,
+ "placementY" : 684.25,
+ "placementWidth" : 500.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 500.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 18.0,
+ "bottom" : 1.0,
+ "left" : 18.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_1[7]",
+ "entityName" : "BlueBannerTitle_1",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 7,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 664.09,
+ "placementX" : 28.0,
+ "placementY" : 664.09,
+ "placementWidth" : 539.276,
+ "placementHeight" : 15.16,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 15.16,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 3.2,
+ "right" : 0.0,
+ "bottom" : 3.2,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_1[7]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_1[7]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 667.29,
+ "placementX" : 28.0,
+ "placementY" : 667.29,
+ "placementWidth" : 539.276,
+ "placementHeight" : 8.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 8.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_1RuleBottom[8]",
+ "entityName" : "BlueBannerTitle_1RuleBottom",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 8,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 46.0,
+ "computedY" : 658.09,
+ "placementX" : 46.0,
+ "placementY" : 658.09,
+ "placementWidth" : 500.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 500.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 18.0,
+ "bottom" : 1.0,
+ "left" : 18.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]",
+ "entityName" : "BlueBannerBody_1",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 9,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 518.07,
+ "placementX" : 28.0,
+ "placementY" : 518.07,
+ "placementWidth" : 539.276,
+ "placementHeight" : 135.02,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 135.02,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 3.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]",
+ "entityName" : "BlueBannerEntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 640.49,
+ "placementX" : 32.0,
+ "placementY" : 640.49,
+ "placementWidth" : 531.276,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.276,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 32.0,
+ "computedY" : 640.49,
+ "placementX" : 32.0,
+ "placementY" : 640.49,
+ "placementWidth" : 115.664,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 115.664,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 32.0,
+ "computedY" : 640.49,
+ "placementX" : 32.0,
+ "placementY" : 640.49,
+ "placementWidth" : 115.664,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 115.664,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 413.768,
+ "computedY" : 640.85,
+ "placementX" : 413.768,
+ "placementY" : 640.85,
+ "placementWidth" : 149.507,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 149.507,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 413.768,
+ "computedY" : 640.85,
+ "placementX" : 413.768,
+ "placementY" : 640.85,
+ "placementWidth" : 149.507,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 149.507,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 628.55,
+ "placementX" : 32.0,
+ "placementY" : 628.55,
+ "placementWidth" : 64.42,
+ "placementHeight" : 8.94,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 64.42,
+ "contentHeight" : 8.94,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 604.57,
+ "placementX" : 32.0,
+ "placementY" : 604.57,
+ "placementWidth" : 521.775,
+ "placementHeight" : 19.78,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 521.775,
+ "contentHeight" : 19.78,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[3]",
+ "entityName" : "BlueBannerEntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 591.97,
+ "placementX" : 32.0,
+ "placementY" : 591.97,
+ "placementWidth" : 531.276,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.276,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[3]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[3]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 32.0,
+ "computedY" : 591.97,
+ "placementX" : 32.0,
+ "placementY" : 591.97,
+ "placementWidth" : 85.304,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 85.304,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[3]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[3]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 32.0,
+ "computedY" : 591.97,
+ "placementX" : 32.0,
+ "placementY" : 591.97,
+ "placementWidth" : 85.304,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 85.304,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[3]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[3]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 413.768,
+ "computedY" : 592.33,
+ "placementX" : 413.768,
+ "placementY" : 592.33,
+ "placementWidth" : 149.507,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 149.507,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[3]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[3]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 413.768,
+ "computedY" : 592.33,
+ "placementX" : 413.768,
+ "placementY" : 592.33,
+ "placementWidth" : 149.507,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 149.507,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 580.03,
+ "placementX" : 32.0,
+ "placementY" : 580.03,
+ "placementWidth" : 50.943,
+ "placementHeight" : 8.94,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 50.943,
+ "contentHeight" : 8.94,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 556.05,
+ "placementX" : 32.0,
+ "placementY" : 556.05,
+ "placementWidth" : 515.53,
+ "placementHeight" : 19.78,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 515.53,
+ "contentHeight" : 19.78,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[6]",
+ "entityName" : "BlueBannerEntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 543.45,
+ "placementX" : 32.0,
+ "placementY" : 543.45,
+ "placementWidth" : 531.276,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.276,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[6]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[6]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 32.0,
+ "computedY" : 543.45,
+ "placementX" : 32.0,
+ "placementY" : 543.45,
+ "placementWidth" : 79.88,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 79.88,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[6]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[6]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 32.0,
+ "computedY" : 543.45,
+ "placementX" : 32.0,
+ "placementY" : 543.45,
+ "placementWidth" : 79.88,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 79.88,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[6]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[6]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 413.768,
+ "computedY" : 543.81,
+ "placementX" : 413.768,
+ "placementY" : 543.81,
+ "placementWidth" : 149.507,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 149.507,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[6]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[6]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 413.768,
+ "computedY" : 543.81,
+ "placementX" : 413.768,
+ "placementY" : 543.81,
+ "placementWidth" : 149.507,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 149.507,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 531.51,
+ "placementX" : 32.0,
+ "placementY" : 531.51,
+ "placementWidth" : 45.706,
+ "placementHeight" : 8.94,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 45.706,
+ "contentHeight" : 8.94,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]/ParagraphNode[8]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_1[9]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 518.07,
+ "placementX" : 32.0,
+ "placementY" : 518.07,
+ "placementWidth" : 490.028,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 490.028,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_2RuleTop[10]",
+ "entityName" : "BlueBannerTitle_2RuleTop",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 10,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 46.0,
+ "computedY" : 510.07,
+ "placementX" : 46.0,
+ "placementY" : 510.07,
+ "placementWidth" : 500.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 500.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 18.0,
+ "bottom" : 1.0,
+ "left" : 18.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_2[11]",
+ "entityName" : "BlueBannerTitle_2",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 11,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 489.91,
+ "placementX" : 28.0,
+ "placementY" : 489.91,
+ "placementWidth" : 539.276,
+ "placementHeight" : 15.16,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 15.16,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 3.2,
+ "right" : 0.0,
+ "bottom" : 3.2,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_2[11]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_2[11]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 493.11,
+ "placementX" : 28.0,
+ "placementY" : 493.11,
+ "placementWidth" : 539.276,
+ "placementHeight" : 8.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 8.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_2RuleBottom[12]",
+ "entityName" : "BlueBannerTitle_2RuleBottom",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 12,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 46.0,
+ "computedY" : 483.91,
+ "placementX" : 46.0,
+ "placementY" : 483.91,
+ "placementWidth" : 500.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 500.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 18.0,
+ "bottom" : 1.0,
+ "left" : 18.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]",
+ "entityName" : "BlueBannerBody_2",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 13,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 364.97,
+ "placementX" : 28.0,
+ "placementY" : 364.97,
+ "placementWidth" : 539.276,
+ "placementHeight" : 113.94,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 113.94,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 3.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[0]",
+ "entityName" : "BlueBannerEntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 466.31,
+ "placementX" : 32.0,
+ "placementY" : 466.31,
+ "placementWidth" : 531.276,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.276,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[0]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 32.0,
+ "computedY" : 466.31,
+ "placementX" : 32.0,
+ "placementY" : 466.31,
+ "placementWidth" : 98.624,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.624,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[0]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[0]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 32.0,
+ "computedY" : 466.31,
+ "placementX" : 32.0,
+ "placementY" : 466.31,
+ "placementWidth" : 98.624,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.624,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[0]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 413.768,
+ "computedY" : 466.67,
+ "placementX" : 413.768,
+ "placementY" : 466.67,
+ "placementWidth" : 149.507,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 149.507,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[0]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[0]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 413.768,
+ "computedY" : 466.67,
+ "placementX" : 413.768,
+ "placementY" : 466.67,
+ "placementWidth" : 149.507,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 149.507,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 454.37,
+ "placementX" : 32.0,
+ "placementY" : 454.37,
+ "placementWidth" : 83.082,
+ "placementHeight" : 8.94,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 83.082,
+ "contentHeight" : 8.94,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 440.93,
+ "placementX" : 32.0,
+ "placementY" : 440.93,
+ "placementWidth" : 282.821,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 282.821,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[3]",
+ "entityName" : "BlueBannerEntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 428.33,
+ "placementX" : 32.0,
+ "placementY" : 428.33,
+ "placementWidth" : 531.276,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.276,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[3]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[3]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 32.0,
+ "computedY" : 428.33,
+ "placementX" : 32.0,
+ "placementY" : 428.33,
+ "placementWidth" : 116.56,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 116.56,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[3]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[3]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 32.0,
+ "computedY" : 428.33,
+ "placementX" : 32.0,
+ "placementY" : 428.33,
+ "placementWidth" : 116.56,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 116.56,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[3]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[3]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 413.768,
+ "computedY" : 428.69,
+ "placementX" : 413.768,
+ "placementY" : 428.69,
+ "placementWidth" : 149.507,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 149.507,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[3]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[3]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 413.768,
+ "computedY" : 428.69,
+ "placementX" : 413.768,
+ "placementY" : 428.69,
+ "placementWidth" : 149.507,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 149.507,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 416.39,
+ "placementX" : 32.0,
+ "placementY" : 416.39,
+ "placementWidth" : 79.328,
+ "placementHeight" : 8.94,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 79.328,
+ "contentHeight" : 8.94,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 402.95,
+ "placementX" : 32.0,
+ "placementY" : 402.95,
+ "placementWidth" : 220.805,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 220.805,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[6]",
+ "entityName" : "BlueBannerEntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 390.35,
+ "placementX" : 32.0,
+ "placementY" : 390.35,
+ "placementWidth" : 531.276,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.276,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[6]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[6]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 32.0,
+ "computedY" : 390.35,
+ "placementX" : 32.0,
+ "placementY" : 390.35,
+ "placementWidth" : 115.016,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 115.016,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[6]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[6]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 32.0,
+ "computedY" : 390.35,
+ "placementX" : 32.0,
+ "placementY" : 390.35,
+ "placementWidth" : 115.016,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 115.016,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[6]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[6]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 413.768,
+ "computedY" : 390.71,
+ "placementX" : 413.768,
+ "placementY" : 390.71,
+ "placementWidth" : 149.507,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 149.507,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[6]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/BlueBannerEntryHeader[6]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 413.768,
+ "computedY" : 390.71,
+ "placementX" : 413.768,
+ "placementY" : 390.71,
+ "placementWidth" : 149.507,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 149.507,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 378.41,
+ "placementX" : 32.0,
+ "placementY" : 378.41,
+ "placementWidth" : 58.386,
+ "placementHeight" : 8.94,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 58.386,
+ "contentHeight" : 8.94,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]/ParagraphNode[8]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_2[13]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 364.97,
+ "placementX" : 32.0,
+ "placementY" : 364.97,
+ "placementWidth" : 283.144,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 283.144,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_3RuleTop[14]",
+ "entityName" : "BlueBannerTitle_3RuleTop",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 14,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 46.0,
+ "computedY" : 356.97,
+ "placementX" : 46.0,
+ "placementY" : 356.97,
+ "placementWidth" : 500.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 500.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 18.0,
+ "bottom" : 1.0,
+ "left" : 18.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_3[15]",
+ "entityName" : "BlueBannerTitle_3",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 15,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 336.81,
+ "placementX" : 28.0,
+ "placementY" : 336.81,
+ "placementWidth" : 539.276,
+ "placementHeight" : 15.16,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 15.16,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 3.2,
+ "right" : 0.0,
+ "bottom" : 3.2,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_3[15]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_3[15]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 340.01,
+ "placementX" : 28.0,
+ "placementY" : 340.01,
+ "placementWidth" : 539.276,
+ "placementHeight" : 8.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 8.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_3RuleBottom[16]",
+ "entityName" : "BlueBannerTitle_3RuleBottom",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 16,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 46.0,
+ "computedY" : 330.81,
+ "placementX" : 46.0,
+ "placementY" : 330.81,
+ "placementWidth" : 500.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 500.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 18.0,
+ "bottom" : 1.0,
+ "left" : 18.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_3[17]",
+ "entityName" : "BlueBannerBody_3",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 17,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 245.17,
+ "placementX" : 28.0,
+ "placementY" : 245.17,
+ "placementWidth" : 373.049,
+ "placementHeight" : 80.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 373.049,
+ "contentHeight" : 80.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 3.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_3[17]/ListNode[0]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_3[17]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 312.37,
+ "placementX" : 32.0,
+ "placementY" : 312.37,
+ "placementWidth" : 171.094,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 171.094,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_3[17]/ListNode[1]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_3[17]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 298.93,
+ "placementX" : 32.0,
+ "placementY" : 298.93,
+ "placementWidth" : 365.049,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 365.049,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_3[17]/ListNode[2]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_3[17]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 285.49,
+ "placementX" : 32.0,
+ "placementY" : 285.49,
+ "placementWidth" : 362.216,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 362.216,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_3[17]/ListNode[3]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_3[17]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 272.05,
+ "placementX" : 32.0,
+ "placementY" : 272.05,
+ "placementWidth" : 315.662,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 315.662,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_3[17]/ListNode[4]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_3[17]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 258.61,
+ "placementX" : 32.0,
+ "placementY" : 258.61,
+ "placementWidth" : 342.042,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 342.042,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_3[17]/ListNode[5]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_3[17]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 245.17,
+ "placementX" : 32.0,
+ "placementY" : 245.17,
+ "placementWidth" : 341.141,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 341.141,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_4RuleTop[18]",
+ "entityName" : "BlueBannerTitle_4RuleTop",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 18,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 46.0,
+ "computedY" : 237.17,
+ "placementX" : 46.0,
+ "placementY" : 237.17,
+ "placementWidth" : 500.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 500.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 18.0,
+ "bottom" : 1.0,
+ "left" : 18.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_4[19]",
+ "entityName" : "BlueBannerTitle_4",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 19,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 217.01,
+ "placementX" : 28.0,
+ "placementY" : 217.01,
+ "placementWidth" : 539.276,
+ "placementHeight" : 15.16,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 15.16,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 3.2,
+ "right" : 0.0,
+ "bottom" : 3.2,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_4[19]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_4[19]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 220.21,
+ "placementX" : 28.0,
+ "placementY" : 220.21,
+ "placementWidth" : 539.276,
+ "placementHeight" : 8.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 8.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_4RuleBottom[20]",
+ "entityName" : "BlueBannerTitle_4RuleBottom",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 20,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 46.0,
+ "computedY" : 211.01,
+ "placementX" : 46.0,
+ "placementY" : 211.01,
+ "placementWidth" : 500.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 500.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 18.0,
+ "bottom" : 1.0,
+ "left" : 18.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_4[21]",
+ "entityName" : "BlueBannerBody_4",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 21,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 152.25,
+ "placementX" : 28.0,
+ "placementY" : 152.25,
+ "placementWidth" : 307.869,
+ "placementHeight" : 53.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 307.869,
+ "contentHeight" : 53.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 3.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_4[21]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_4[21]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 192.57,
+ "placementX" : 32.0,
+ "placementY" : 192.57,
+ "placementWidth" : 225.471,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 225.471,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_4[21]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_4[21]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 179.13,
+ "placementX" : 32.0,
+ "placementY" : 179.13,
+ "placementWidth" : 182.713,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 182.713,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_4[21]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_4[21]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 165.69,
+ "placementX" : 32.0,
+ "placementY" : 165.69,
+ "placementWidth" : 299.869,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 299.869,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_4[21]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_4[21]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 152.25,
+ "placementX" : 32.0,
+ "placementY" : 152.25,
+ "placementWidth" : 296.797,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 296.797,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_5RuleTop[22]",
+ "entityName" : "BlueBannerTitle_5RuleTop",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 22,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 46.0,
+ "computedY" : 144.25,
+ "placementX" : 46.0,
+ "placementY" : 144.25,
+ "placementWidth" : 500.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 500.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 18.0,
+ "bottom" : 1.0,
+ "left" : 18.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_5[23]",
+ "entityName" : "BlueBannerTitle_5",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 23,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 124.09,
+ "placementX" : 28.0,
+ "placementY" : 124.09,
+ "placementWidth" : 539.276,
+ "placementHeight" : 15.16,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 15.16,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 3.2,
+ "right" : 0.0,
+ "bottom" : 3.2,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_5[23]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_5[23]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 127.29,
+ "placementX" : 28.0,
+ "placementY" : 127.29,
+ "placementWidth" : 539.276,
+ "placementHeight" : 8.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 8.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerTitle_5RuleBottom[24]",
+ "entityName" : "BlueBannerTitle_5RuleBottom",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 24,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 46.0,
+ "computedY" : 118.09,
+ "placementX" : 46.0,
+ "placementY" : 118.09,
+ "placementWidth" : 500.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 500.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 18.0,
+ "bottom" : 1.0,
+ "left" : 18.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_5[25]",
+ "entityName" : "BlueBannerBody_5",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]",
+ "childIndex" : 25,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 15.73,
+ "placementX" : 28.0,
+ "placementY" : 15.73,
+ "placementWidth" : 526.069,
+ "placementHeight" : 97.36,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 526.069,
+ "contentHeight" : 97.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 3.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_5[25]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_5[25]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 88.75,
+ "placementX" : 32.0,
+ "placementY" : 88.75,
+ "placementWidth" : 511.327,
+ "placementHeight" : 20.14,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 511.327,
+ "contentHeight" : 20.14,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_5[25]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_5[25]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 64.41,
+ "placementX" : 32.0,
+ "placementY" : 64.41,
+ "placementWidth" : 518.069,
+ "placementHeight" : 20.14,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 518.069,
+ "contentHeight" : 20.14,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_5[25]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_5[25]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 40.07,
+ "placementX" : 32.0,
+ "placementY" : 40.07,
+ "placementWidth" : 516.7,
+ "placementHeight" : 20.14,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 516.7,
+ "contentHeight" : 20.14,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2BlueBannerRoot[0]/BlueBannerBody_5[25]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2BlueBannerRoot[0]/BlueBannerBody_5[25]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 792.55,
+ "placementX" : 32.0,
+ "placementY" : 792.55,
+ "placementWidth" : 500.24,
+ "placementHeight" : 20.14,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 500.24,
+ "contentHeight" : 20.14,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/boxed_sections_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/boxed_sections_layout.json
new file mode 100644
index 000000000..aa9dcd305
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/boxed_sections_layout.json
@@ -0,0 +1,2627 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 539.276,
+ "innerHeight" : 785.89,
+ "margin" : {
+ "top" : 28.0,
+ "right" : 28.0,
+ "bottom" : 28.0,
+ "left" : 28.0
+ }
+ },
+ "totalPages" : 2,
+ "nodes" : [ {
+ "path" : "CvV2Root[0]",
+ "entityName" : "CvV2Root",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 28.0,
+ "computedY" : -242.54,
+ "placementX" : 28.0,
+ "placementY" : -242.54,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1056.43,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1056.43,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Headline[0]",
+ "entityName" : "CvV2Headline",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 781.402,
+ "placementX" : 28.0,
+ "placementY" : 781.402,
+ "placementWidth" : 539.276,
+ "placementHeight" : 32.488,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 32.488,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 4.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Headline[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Headline[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 785.402,
+ "placementX" : 28.0,
+ "placementY" : 785.402,
+ "placementWidth" : 539.276,
+ "placementHeight" : 28.488,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 28.488,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Contact[1]",
+ "entityName" : "CvV2Contact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 755.14,
+ "placementX" : 28.0,
+ "placementY" : 755.14,
+ "placementWidth" : 539.276,
+ "placementHeight" : 19.263,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 19.263,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 4.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Contact[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Contact[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 759.14,
+ "placementX" : 28.0,
+ "placementY" : 759.14,
+ "placementWidth" : 539.276,
+ "placementHeight" : 11.263,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 11.263,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Banner_0[2]",
+ "entityName" : "CvV2Banner_0",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 721.42,
+ "placementX" : 28.0,
+ "placementY" : 721.42,
+ "placementWidth" : 539.276,
+ "placementHeight" : 22.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 22.72,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 5.0,
+ "right" : 5.0,
+ "bottom" : 5.0,
+ "left" : 5.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Banner_0[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Banner_0[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 33.0,
+ "computedY" : 726.42,
+ "placementX" : 33.0,
+ "placementY" : 726.42,
+ "placementWidth" : 529.276,
+ "placementHeight" : 12.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 529.276,
+ "contentHeight" : 12.72,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_0[3]",
+ "entityName" : "CvV2Body_0",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]",
+ "childIndex" : 3,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 671.435,
+ "placementX" : 28.0,
+ "placementY" : 671.435,
+ "placementWidth" : 528.197,
+ "placementHeight" : 42.985,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 528.197,
+ "contentHeight" : 42.985,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 4.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_0[3]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_0[3]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 671.435,
+ "placementX" : 32.0,
+ "placementY" : 671.435,
+ "placementWidth" : 520.197,
+ "placementHeight" : 36.985,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 520.197,
+ "contentHeight" : 36.985,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Banner_1[4]",
+ "entityName" : "CvV2Banner_1",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]",
+ "childIndex" : 4,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 637.715,
+ "placementX" : 28.0,
+ "placementY" : 637.715,
+ "placementWidth" : 539.276,
+ "placementHeight" : 22.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 22.72,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 5.0,
+ "right" : 5.0,
+ "bottom" : 5.0,
+ "left" : 5.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Banner_1[4]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Banner_1[4]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 33.0,
+ "computedY" : 642.715,
+ "placementX" : 33.0,
+ "placementY" : 642.715,
+ "placementWidth" : 529.276,
+ "placementHeight" : 12.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 529.276,
+ "contentHeight" : 12.72,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_1[5]",
+ "entityName" : "CvV2Body_1",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]",
+ "childIndex" : 5,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 526.345,
+ "placementX" : 28.0,
+ "placementY" : 526.345,
+ "placementWidth" : 426.244,
+ "placementHeight" : 104.37,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 426.244,
+ "contentHeight" : 104.37,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 4.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_1[5]/ListNode[0]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_1[5]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 613.32,
+ "placementX" : 32.0,
+ "placementY" : 613.32,
+ "placementWidth" : 194.609,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 194.609,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_1[5]/ListNode[1]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_1[5]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 595.925,
+ "placementX" : 32.0,
+ "placementY" : 595.925,
+ "placementWidth" : 418.244,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 418.244,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_1[5]/ListNode[2]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_1[5]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 578.53,
+ "placementX" : 32.0,
+ "placementY" : 578.53,
+ "placementWidth" : 417.014,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 417.014,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_1[5]/ListNode[3]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_1[5]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 561.135,
+ "placementX" : 32.0,
+ "placementY" : 561.135,
+ "placementWidth" : 362.542,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 362.542,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_1[5]/ListNode[4]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_1[5]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 543.74,
+ "placementX" : 32.0,
+ "placementY" : 543.74,
+ "placementWidth" : 389.012,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 389.012,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_1[5]/ListNode[5]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_1[5]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 526.345,
+ "placementX" : 32.0,
+ "placementY" : 526.345,
+ "placementWidth" : 390.913,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 390.913,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Banner_2[6]",
+ "entityName" : "CvV2Banner_2",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]",
+ "childIndex" : 6,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 492.625,
+ "placementX" : 28.0,
+ "placementY" : 492.625,
+ "placementWidth" : 539.276,
+ "placementHeight" : 22.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 22.72,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 5.0,
+ "right" : 5.0,
+ "bottom" : 5.0,
+ "left" : 5.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Banner_2[6]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Banner_2[6]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 33.0,
+ "computedY" : 497.625,
+ "placementX" : 33.0,
+ "placementY" : 497.625,
+ "placementWidth" : 529.276,
+ "placementHeight" : 12.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 529.276,
+ "contentHeight" : 12.72,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]",
+ "entityName" : "CvV2Body_2",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]",
+ "childIndex" : 7,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 325.48,
+ "placementX" : 28.0,
+ "placementY" : 325.48,
+ "placementWidth" : 539.276,
+ "placementHeight" : 160.145,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 160.145,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 4.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[0]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 469.435,
+ "placementX" : 32.0,
+ "placementY" : 469.435,
+ "placementWidth" : 531.276,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[0]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 32.0,
+ "computedY" : 469.435,
+ "placementX" : 32.0,
+ "placementY" : 469.435,
+ "placementWidth" : 99.875,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 99.875,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[0]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[0]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 32.0,
+ "computedY" : 469.435,
+ "placementX" : 32.0,
+ "placementY" : 469.435,
+ "placementWidth" : 99.875,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 99.875,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[0]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 400.88,
+ "computedY" : 469.965,
+ "placementX" : 400.88,
+ "placementY" : 469.965,
+ "placementWidth" : 162.396,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 162.396,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[0]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[0]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 400.88,
+ "computedY" : 469.965,
+ "placementX" : 400.88,
+ "placementY" : 469.965,
+ "placementWidth" : 162.396,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 162.396,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 454.305,
+ "placementX" : 32.0,
+ "placementY" : 454.305,
+ "placementWidth" : 88.393,
+ "placementHeight" : 11.13,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 88.393,
+ "contentHeight" : 11.13,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 436.91,
+ "placementX" : 32.0,
+ "placementY" : 436.91,
+ "placementWidth" : 324.512,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 324.512,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 429.91,
+ "placementX" : 32.0,
+ "placementY" : 429.91,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[4]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 413.72,
+ "placementX" : 32.0,
+ "placementY" : 413.72,
+ "placementWidth" : 531.276,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[4]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[4]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 32.0,
+ "computedY" : 413.72,
+ "placementX" : 32.0,
+ "placementY" : 413.72,
+ "placementWidth" : 113.123,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 113.123,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[4]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[4]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 32.0,
+ "computedY" : 413.72,
+ "placementX" : 32.0,
+ "placementY" : 413.72,
+ "placementWidth" : 113.123,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 113.123,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[4]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[4]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 400.88,
+ "computedY" : 414.25,
+ "placementX" : 400.88,
+ "placementY" : 414.25,
+ "placementWidth" : 162.396,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 162.396,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[4]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[4]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 400.88,
+ "computedY" : 414.25,
+ "placementX" : 400.88,
+ "placementY" : 414.25,
+ "placementWidth" : 162.396,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 162.396,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 398.59,
+ "placementX" : 32.0,
+ "placementY" : 398.59,
+ "placementWidth" : 87.268,
+ "placementHeight" : 11.13,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 87.268,
+ "contentHeight" : 11.13,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 381.195,
+ "placementX" : 32.0,
+ "placementY" : 381.195,
+ "placementWidth" : 255.523,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 255.523,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/SpacerNode[7]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 374.195,
+ "placementX" : 32.0,
+ "placementY" : 374.195,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[8]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 358.005,
+ "placementX" : 32.0,
+ "placementY" : 358.005,
+ "placementWidth" : 531.276,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[8]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[8]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 32.0,
+ "computedY" : 358.005,
+ "placementX" : 32.0,
+ "placementY" : 358.005,
+ "placementWidth" : 107.806,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 107.806,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[8]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[8]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 32.0,
+ "computedY" : 358.005,
+ "placementX" : 32.0,
+ "placementY" : 358.005,
+ "placementWidth" : 107.806,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 107.806,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[8]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[8]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 400.88,
+ "computedY" : 358.535,
+ "placementX" : 400.88,
+ "placementY" : 358.535,
+ "placementWidth" : 162.396,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 162.396,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[8]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]/CvV2EntryHeader[8]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 400.88,
+ "computedY" : 358.535,
+ "placementX" : 400.88,
+ "placementY" : 358.535,
+ "placementWidth" : 162.396,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 162.396,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 342.875,
+ "placementX" : 32.0,
+ "placementY" : 342.875,
+ "placementWidth" : 64.05,
+ "placementHeight" : 11.13,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 64.05,
+ "contentHeight" : 11.13,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_2[7]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_2[7]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 325.48,
+ "placementX" : 32.0,
+ "placementY" : 325.48,
+ "placementWidth" : 321.262,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 321.262,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Banner_3[8]",
+ "entityName" : "CvV2Banner_3",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]",
+ "childIndex" : 8,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 291.76,
+ "placementX" : 28.0,
+ "placementY" : 291.76,
+ "placementWidth" : 539.276,
+ "placementHeight" : 22.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 22.72,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 5.0,
+ "right" : 5.0,
+ "bottom" : 5.0,
+ "left" : 5.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Banner_3[8]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Banner_3[8]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 33.0,
+ "computedY" : 296.76,
+ "placementX" : 33.0,
+ "placementY" : 296.76,
+ "placementWidth" : 529.276,
+ "placementHeight" : 12.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 529.276,
+ "contentHeight" : 12.72,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_3[9]",
+ "entityName" : "CvV2Body_3",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]",
+ "childIndex" : 9,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 107.01,
+ "placementX" : 28.0,
+ "placementY" : 107.01,
+ "placementWidth" : 539.196,
+ "placementHeight" : 177.75,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.196,
+ "contentHeight" : 177.75,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 4.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_3[9]/ListNode[0]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_3[9]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 239.175,
+ "placementX" : 32.0,
+ "placementY" : 239.175,
+ "placementWidth" : 515.235,
+ "placementHeight" : 39.585,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 515.235,
+ "contentHeight" : 39.585,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_3[9]/SpacerNode[1]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_3[9]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 232.175,
+ "placementX" : 32.0,
+ "placementY" : 232.175,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_3[9]/ListNode[2]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_3[9]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 199.385,
+ "placementX" : 32.0,
+ "placementY" : 199.385,
+ "placementWidth" : 531.196,
+ "placementHeight" : 26.79,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.196,
+ "contentHeight" : 26.79,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_3[9]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_3[9]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 192.385,
+ "placementX" : 32.0,
+ "placementY" : 192.385,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_3[9]/ListNode[4]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_3[9]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 146.8,
+ "placementX" : 32.0,
+ "placementY" : 146.8,
+ "placementWidth" : 501.088,
+ "placementHeight" : 39.585,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 501.088,
+ "contentHeight" : 39.585,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_3[9]/SpacerNode[5]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_3[9]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 139.8,
+ "placementX" : 32.0,
+ "placementY" : 139.8,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_3[9]/ListNode[6]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_3[9]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 107.01,
+ "placementX" : 32.0,
+ "placementY" : 107.01,
+ "placementWidth" : 500.718,
+ "placementHeight" : 26.79,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 500.718,
+ "contentHeight" : 26.79,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Banner_4[10]",
+ "entityName" : "CvV2Banner_4",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]",
+ "childIndex" : 10,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 73.29,
+ "placementX" : 28.0,
+ "placementY" : 73.29,
+ "placementWidth" : 539.276,
+ "placementHeight" : 22.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 22.72,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 5.0,
+ "right" : 5.0,
+ "bottom" : 5.0,
+ "left" : 5.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Banner_4[10]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Banner_4[10]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 33.0,
+ "computedY" : 78.29,
+ "placementX" : 33.0,
+ "placementY" : 78.29,
+ "placementWidth" : 529.276,
+ "placementHeight" : 12.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 529.276,
+ "contentHeight" : 12.72,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]",
+ "entityName" : "CvV2Body_4",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]",
+ "childIndex" : 11,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : -132.24,
+ "placementX" : 28.0,
+ "placementY" : -132.24,
+ "placementWidth" : 539.276,
+ "placementHeight" : 198.53,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 198.53,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 4.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[0]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 50.1,
+ "placementX" : 32.0,
+ "placementY" : 50.1,
+ "placementWidth" : 531.276,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[0]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 32.0,
+ "computedY" : 50.1,
+ "placementX" : 32.0,
+ "placementY" : 50.1,
+ "placementWidth" : 112.038,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 112.038,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[0]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[0]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 32.0,
+ "computedY" : 50.1,
+ "placementX" : 32.0,
+ "placementY" : 50.1,
+ "placementWidth" : 112.038,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 112.038,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[0]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 400.88,
+ "computedY" : 50.63,
+ "placementX" : 400.88,
+ "placementY" : 50.63,
+ "placementWidth" : 162.396,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 162.396,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[0]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[0]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 400.88,
+ "computedY" : 50.63,
+ "placementX" : 400.88,
+ "placementY" : 50.63,
+ "placementWidth" : 162.396,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 162.396,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 34.97,
+ "placementX" : 32.0,
+ "placementY" : 34.97,
+ "placementWidth" : 68.88,
+ "placementHeight" : 11.13,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 68.88,
+ "contentHeight" : 11.13,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 787.7,
+ "placementX" : 32.0,
+ "placementY" : 787.7,
+ "placementWidth" : 515.579,
+ "placementHeight" : 24.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 515.579,
+ "contentHeight" : 24.19,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 780.7,
+ "placementX" : 32.0,
+ "placementY" : 780.7,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[4]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 764.51,
+ "placementX" : 32.0,
+ "placementY" : 764.51,
+ "placementWidth" : 531.276,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 531.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[4]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[4]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 32.0,
+ "computedY" : 764.51,
+ "placementX" : 32.0,
+ "placementY" : 764.51,
+ "placementWidth" : 80.914,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 80.914,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[4]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[4]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 32.0,
+ "computedY" : 764.51,
+ "placementX" : 32.0,
+ "placementY" : 764.51,
+ "placementWidth" : 80.914,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 80.914,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[4]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[4]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 400.88,
+ "computedY" : 765.04,
+ "placementX" : 400.88,
+ "placementY" : 765.04,
+ "placementWidth" : 162.396,
+ "placementHeight" : 11.66,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 162.396,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[4]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[4]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 400.88,
+ "computedY" : 765.04,
+ "placementX" : 400.88,
+ "placementY" : 765.04,
+ "placementWidth" : 162.396,
+ "placementHeight" : 11.66,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 162.396,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 749.38,
+ "placementX" : 32.0,
+ "placementY" : 749.38,
+ "placementWidth" : 56.448,
+ "placementHeight" : 11.13,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 56.448,
+ "contentHeight" : 11.13,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 719.19,
+ "placementX" : 32.0,
+ "placementY" : 719.19,
+ "placementWidth" : 521.108,
+ "placementHeight" : 24.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 521.108,
+ "contentHeight" : 24.19,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/SpacerNode[7]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 712.19,
+ "placementX" : 32.0,
+ "placementY" : 712.19,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[8]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 696.0,
+ "placementX" : 32.0,
+ "placementY" : 696.0,
+ "placementWidth" : 531.276,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 531.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[8]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[8]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 32.0,
+ "computedY" : 696.0,
+ "placementX" : 32.0,
+ "placementY" : 696.0,
+ "placementWidth" : 79.267,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 79.267,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[8]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[8]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 32.0,
+ "computedY" : 696.0,
+ "placementX" : 32.0,
+ "placementY" : 696.0,
+ "placementWidth" : 79.267,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 79.267,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[8]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[8]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 400.88,
+ "computedY" : 696.53,
+ "placementX" : 400.88,
+ "placementY" : 696.53,
+ "placementWidth" : 162.396,
+ "placementHeight" : 11.66,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 162.396,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[8]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]/CvV2EntryHeader[8]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 400.88,
+ "computedY" : 696.53,
+ "placementX" : 400.88,
+ "placementY" : 696.53,
+ "placementWidth" : 162.396,
+ "placementHeight" : 11.66,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 162.396,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 680.87,
+ "placementX" : 32.0,
+ "placementY" : 680.87,
+ "placementWidth" : 49.955,
+ "placementHeight" : 11.13,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 49.955,
+ "contentHeight" : 11.13,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_4[11]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_4[11]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 650.68,
+ "placementX" : 32.0,
+ "placementY" : 650.68,
+ "placementWidth" : 522.897,
+ "placementHeight" : 24.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 522.897,
+ "contentHeight" : 24.19,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Banner_5[12]",
+ "entityName" : "CvV2Banner_5",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]",
+ "childIndex" : 12,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 616.96,
+ "placementX" : 28.0,
+ "placementY" : 616.96,
+ "placementWidth" : 539.276,
+ "placementHeight" : 22.72,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 22.72,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 5.0,
+ "right" : 5.0,
+ "bottom" : 5.0,
+ "left" : 5.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Banner_5[12]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Banner_5[12]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 33.0,
+ "computedY" : 621.96,
+ "placementX" : 33.0,
+ "placementY" : 621.96,
+ "placementWidth" : 529.276,
+ "placementHeight" : 12.72,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 529.276,
+ "contentHeight" : 12.72,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_5[13]",
+ "entityName" : "CvV2Body_5",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2Root[0]",
+ "childIndex" : 13,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 540.38,
+ "placementX" : 28.0,
+ "placementY" : 540.38,
+ "placementWidth" : 348.663,
+ "placementHeight" : 69.58,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 348.663,
+ "contentHeight" : 69.58,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 4.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_5[13]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_5[13]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 592.565,
+ "placementX" : 32.0,
+ "placementY" : 592.565,
+ "placementWidth" : 265.74,
+ "placementHeight" : 11.395,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 265.74,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_5[13]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_5[13]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 575.17,
+ "placementX" : 32.0,
+ "placementY" : 575.17,
+ "placementWidth" : 211.766,
+ "placementHeight" : 11.395,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 211.766,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_5[13]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_5[13]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 557.775,
+ "placementX" : 32.0,
+ "placementY" : 557.775,
+ "placementWidth" : 340.663,
+ "placementHeight" : 11.395,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 340.663,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2Root[0]/CvV2Body_5[13]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2Root[0]/CvV2Body_5[13]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 540.38,
+ "placementX" : 32.0,
+ "placementY" : 540.38,
+ "placementWidth" : 333.456,
+ "placementHeight" : 11.395,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 333.456,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/centered_headline_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/centered_headline_layout.json
new file mode 100644
index 000000000..5cc94d2b3
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/centered_headline_layout.json
@@ -0,0 +1,3167 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 539.276,
+ "innerHeight" : 785.89,
+ "margin" : {
+ "top" : 28.0,
+ "right" : 28.0,
+ "bottom" : 28.0,
+ "left" : 28.0
+ }
+ },
+ "totalPages" : 2,
+ "nodes" : [ {
+ "path" : "CenteredHeadlineRoot[0]",
+ "entityName" : "CenteredHeadlineRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 28.0,
+ "computedY" : -83.49,
+ "placementX" : 28.0,
+ "placementY" : -83.49,
+ "placementWidth" : 539.276,
+ "placementHeight" : 897.38,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 897.38,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Headline[0]",
+ "entityName" : "Headline",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 757.25,
+ "placementX" : 28.0,
+ "placementY" : 757.25,
+ "placementWidth" : 539.276,
+ "placementHeight" : 56.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 56.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Headline[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Headline[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 772.29,
+ "placementX" : 28.0,
+ "placementY" : 772.29,
+ "placementWidth" : 539.276,
+ "placementHeight" : 33.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 33.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Headline[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Headline[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 757.25,
+ "placementX" : 28.0,
+ "placementY" : 757.25,
+ "placementWidth" : 539.276,
+ "placementHeight" : 12.04,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 12.04,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/HeadlineRule[1]",
+ "entityName" : "HeadlineRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 749.25,
+ "placementX" : 28.0,
+ "placementY" : 749.25,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 7.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Contact[2]",
+ "entityName" : "Contact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 725.29,
+ "placementX" : 28.0,
+ "placementY" : 725.29,
+ "placementWidth" : 539.276,
+ "placementHeight" : 23.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 23.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 7.0,
+ "right" : 0.0,
+ "bottom" : 7.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Contact[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Contact[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 732.29,
+ "placementX" : 28.0,
+ "placementY" : 732.29,
+ "placementWidth" : 539.276,
+ "placementHeight" : 9.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 9.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/ContactRule[3]",
+ "entityName" : "ContactRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 3,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 724.29,
+ "placementX" : 28.0,
+ "placementY" : 724.29,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Title_0[4]",
+ "entityName" : "Title_0",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 4,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 704.89,
+ "placementX" : 28.0,
+ "placementY" : 704.89,
+ "placementWidth" : 155.904,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 155.904,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Title_0[4]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Title_0[4]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 704.89,
+ "placementX" : 28.0,
+ "placementY" : 704.89,
+ "placementWidth" : 155.904,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 155.904,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/TitleBottomRule_0[5]",
+ "entityName" : "TitleBottomRule_0",
+ "entityKind" : "LineNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 5,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 695.89,
+ "placementX" : 28.0,
+ "placementY" : 695.89,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_0[6]",
+ "entityName" : "Body_0",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 6,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 652.47,
+ "placementX" : 28.0,
+ "placementY" : 652.47,
+ "placementWidth" : 529.369,
+ "placementHeight" : 35.42,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 529.369,
+ "contentHeight" : 35.42,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_0[6]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_0[6]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 652.47,
+ "placementX" : 28.0,
+ "placementY" : 652.47,
+ "placementWidth" : 529.369,
+ "placementHeight" : 34.22,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 529.369,
+ "contentHeight" : 34.22,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/InterModuleRule_0[7]",
+ "entityName" : "InterModuleRule_0",
+ "entityKind" : "LineNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 7,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 646.47,
+ "placementX" : 28.0,
+ "placementY" : 646.47,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 5.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Title_1[8]",
+ "entityName" : "Title_1",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 8,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 627.07,
+ "placementX" : 28.0,
+ "placementY" : 627.07,
+ "placementWidth" : 112.072,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 112.072,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Title_1[8]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Title_1[8]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 627.07,
+ "placementX" : 28.0,
+ "placementY" : 627.07,
+ "placementWidth" : 112.072,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 112.072,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/TitleBottomRule_1[9]",
+ "entityName" : "TitleBottomRule_1",
+ "entityKind" : "LineNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 9,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 618.07,
+ "placementX" : 28.0,
+ "placementY" : 618.07,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_1[10]",
+ "entityName" : "Body_1",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 10,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 532.73,
+ "placementX" : 28.0,
+ "placementY" : 532.73,
+ "placementWidth" : 412.458,
+ "placementHeight" : 77.34,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 412.458,
+ "contentHeight" : 77.34,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_1[10]/ListNode[0]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_1[10]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 598.43,
+ "placementX" : 28.0,
+ "placementY" : 598.43,
+ "placementWidth" : 193.314,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 193.314,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_1[10]/ListNode[1]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_1[10]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 585.29,
+ "placementX" : 28.0,
+ "placementY" : 585.29,
+ "placementWidth" : 412.458,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 412.458,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_1[10]/ListNode[2]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_1[10]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 572.15,
+ "placementX" : 28.0,
+ "placementY" : 572.15,
+ "placementWidth" : 409.257,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 409.257,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_1[10]/ListNode[3]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_1[10]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 559.01,
+ "placementX" : 28.0,
+ "placementY" : 559.01,
+ "placementWidth" : 356.657,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 356.657,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_1[10]/ListNode[4]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_1[10]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 545.87,
+ "placementX" : 28.0,
+ "placementY" : 545.87,
+ "placementWidth" : 386.463,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 386.463,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_1[10]/ListNode[5]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_1[10]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 532.73,
+ "placementX" : 28.0,
+ "placementY" : 532.73,
+ "placementWidth" : 385.445,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 385.445,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/InterModuleRule_1[11]",
+ "entityName" : "InterModuleRule_1",
+ "entityKind" : "LineNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 11,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 526.73,
+ "placementX" : 28.0,
+ "placementY" : 526.73,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 5.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Title_2[12]",
+ "entityName" : "Title_2",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 12,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 507.33,
+ "placementX" : 28.0,
+ "placementY" : 507.33,
+ "placementWidth" : 188.328,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 188.328,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Title_2[12]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Title_2[12]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 507.33,
+ "placementX" : 28.0,
+ "placementY" : 507.33,
+ "placementWidth" : 188.328,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 188.328,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/TitleBottomRule_2[13]",
+ "entityName" : "TitleBottomRule_2",
+ "entityKind" : "LineNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 13,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 498.33,
+ "placementX" : 28.0,
+ "placementY" : 498.33,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]",
+ "entityName" : "Body_2",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 14,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 372.49,
+ "placementX" : 28.0,
+ "placementY" : 372.49,
+ "placementWidth" : 539.276,
+ "placementHeight" : 117.84,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 117.84,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[0]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 479.77,
+ "placementX" : 28.0,
+ "placementY" : 479.77,
+ "placementWidth" : 539.276,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[0]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 479.77,
+ "placementX" : 28.0,
+ "placementY" : 479.77,
+ "placementWidth" : 91.054,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 91.054,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[0]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[0]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 479.77,
+ "placementX" : 28.0,
+ "placementY" : 479.77,
+ "placementWidth" : 91.054,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 91.054,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[0]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 402.397,
+ "computedY" : 480.01,
+ "placementX" : 402.397,
+ "placementY" : 480.01,
+ "placementWidth" : 164.879,
+ "placementHeight" : 10.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 10.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[0]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[0]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 402.397,
+ "computedY" : 480.01,
+ "placementX" : 402.397,
+ "placementY" : 480.01,
+ "placementWidth" : 164.879,
+ "placementHeight" : 10.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 10.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 468.19,
+ "placementX" : 28.0,
+ "placementY" : 468.19,
+ "placementWidth" : 87.881,
+ "placementHeight" : 10.08,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 87.881,
+ "contentHeight" : 10.08,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 455.05,
+ "placementX" : 28.0,
+ "placementY" : 455.05,
+ "placementWidth" : 319.551,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 319.551,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 450.55,
+ "placementX" : 28.0,
+ "placementY" : 450.55,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[4]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 438.49,
+ "placementX" : 28.0,
+ "placementY" : 438.49,
+ "placementWidth" : 539.276,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[4]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[4]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 438.49,
+ "placementX" : 28.0,
+ "placementY" : 438.49,
+ "placementWidth" : 101.385,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 101.385,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[4]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[4]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 438.49,
+ "placementX" : 28.0,
+ "placementY" : 438.49,
+ "placementWidth" : 101.385,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 101.385,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[4]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[4]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 402.397,
+ "computedY" : 438.73,
+ "placementX" : 402.397,
+ "placementY" : 438.73,
+ "placementWidth" : 164.879,
+ "placementHeight" : 10.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 10.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[4]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[4]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 402.397,
+ "computedY" : 438.73,
+ "placementX" : 402.397,
+ "placementY" : 438.73,
+ "placementWidth" : 164.879,
+ "placementHeight" : 10.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 10.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 426.91,
+ "placementX" : 28.0,
+ "placementY" : 426.91,
+ "placementWidth" : 83.807,
+ "placementHeight" : 10.08,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 83.807,
+ "contentHeight" : 10.08,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 413.77,
+ "placementX" : 28.0,
+ "placementY" : 413.77,
+ "placementWidth" : 249.481,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 249.481,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/SpacerNode[7]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 409.27,
+ "placementX" : 28.0,
+ "placementY" : 409.27,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[8]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 397.21,
+ "placementX" : 28.0,
+ "placementY" : 397.21,
+ "placementWidth" : 539.276,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[8]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[8]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 397.21,
+ "placementX" : 28.0,
+ "placementY" : 397.21,
+ "placementWidth" : 96.598,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 96.598,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[8]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[8]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 397.21,
+ "placementX" : 28.0,
+ "placementY" : 397.21,
+ "placementWidth" : 96.598,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 96.598,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[8]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[8]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 402.397,
+ "computedY" : 397.45,
+ "placementX" : 402.397,
+ "placementY" : 397.45,
+ "placementWidth" : 164.879,
+ "placementHeight" : 10.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 10.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[8]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]/CvV2EntryHeader[8]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 402.397,
+ "computedY" : 397.45,
+ "placementX" : 402.397,
+ "placementY" : 397.45,
+ "placementWidth" : 164.879,
+ "placementHeight" : 10.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 10.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 385.63,
+ "placementX" : 28.0,
+ "placementY" : 385.63,
+ "placementWidth" : 62.236,
+ "placementHeight" : 10.08,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 62.236,
+ "contentHeight" : 10.08,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_2[14]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_2[14]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 372.49,
+ "placementX" : 28.0,
+ "placementY" : 372.49,
+ "placementWidth" : 319.916,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 319.916,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/InterModuleRule_2[15]",
+ "entityName" : "InterModuleRule_2",
+ "entityKind" : "LineNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 15,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 366.49,
+ "placementX" : 28.0,
+ "placementY" : 366.49,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 5.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Title_3[16]",
+ "entityName" : "Title_3",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 16,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 347.09,
+ "placementX" : 28.0,
+ "placementY" : 347.09,
+ "placementWidth" : 60.097,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 60.097,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Title_3[16]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Title_3[16]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 347.09,
+ "placementX" : 28.0,
+ "placementY" : 347.09,
+ "placementWidth" : 60.097,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 60.097,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/TitleBottomRule_3[17]",
+ "entityName" : "TitleBottomRule_3",
+ "entityKind" : "LineNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 17,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 338.09,
+ "placementX" : 28.0,
+ "placementY" : 338.09,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_3[18]",
+ "entityName" : "Body_3",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 18,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 205.88,
+ "placementX" : 28.0,
+ "placementY" : 205.88,
+ "placementWidth" : 538.426,
+ "placementHeight" : 124.21,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 538.426,
+ "contentHeight" : 124.21,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_3[18]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_3[18]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 318.45,
+ "placementX" : 28.0,
+ "placementY" : 318.45,
+ "placementWidth" : 186.693,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 186.693,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_3[18]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_3[18]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 294.62,
+ "placementX" : 28.0,
+ "placementY" : 294.62,
+ "placementWidth" : 511.012,
+ "placementHeight" : 22.33,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 511.012,
+ "contentHeight" : 22.33,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_3[18]/SpacerNode[2]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_3[18]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 290.12,
+ "placementX" : 28.0,
+ "placementY" : 290.12,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_3[18]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_3[18]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 276.98,
+ "placementX" : 28.0,
+ "placementY" : 276.98,
+ "placementWidth" : 242.199,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 242.199,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_3[18]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_3[18]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 265.04,
+ "placementX" : 28.0,
+ "placementY" : 265.04,
+ "placementWidth" : 520.364,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 520.364,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_3[18]/SpacerNode[5]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_3[18]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 260.54,
+ "placementX" : 28.0,
+ "placementY" : 260.54,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_3[18]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_3[18]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 247.4,
+ "placementX" : 28.0,
+ "placementY" : 247.4,
+ "placementWidth" : 152.711,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 152.711,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_3[18]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_3[18]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 235.46,
+ "placementX" : 28.0,
+ "placementY" : 235.46,
+ "placementWidth" : 538.426,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 538.426,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_3[18]/SpacerNode[8]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_3[18]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 230.96,
+ "placementX" : 28.0,
+ "placementY" : 230.96,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_3[18]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_3[18]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 217.82,
+ "placementX" : 28.0,
+ "placementY" : 217.82,
+ "placementWidth" : 201.475,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 201.475,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_3[18]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_3[18]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 205.88,
+ "placementX" : 28.0,
+ "placementY" : 205.88,
+ "placementWidth" : 485.486,
+ "placementHeight" : 10.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 485.486,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/InterModuleRule_3[19]",
+ "entityName" : "InterModuleRule_3",
+ "entityKind" : "LineNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 19,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 199.88,
+ "placementX" : 28.0,
+ "placementY" : 199.88,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 5.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Title_4[20]",
+ "entityName" : "Title_4",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 20,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 180.48,
+ "placementX" : 28.0,
+ "placementY" : 180.48,
+ "placementWidth" : 168.587,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 168.587,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Title_4[20]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Title_4[20]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 180.48,
+ "placementX" : 28.0,
+ "placementY" : 180.48,
+ "placementWidth" : 168.587,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 168.587,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/TitleBottomRule_4[21]",
+ "entityName" : "TitleBottomRule_4",
+ "entityKind" : "LineNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 21,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 171.48,
+ "placementX" : 28.0,
+ "placementY" : 171.48,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]",
+ "entityName" : "Body_4",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 22,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 9.97,
+ "placementX" : 28.0,
+ "placementY" : 9.97,
+ "placementWidth" : 539.276,
+ "placementHeight" : 153.51,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 153.51,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[0]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 152.92,
+ "placementX" : 28.0,
+ "placementY" : 152.92,
+ "placementWidth" : 539.276,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[0]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 152.92,
+ "placementX" : 28.0,
+ "placementY" : 152.92,
+ "placementWidth" : 98.155,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.155,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[0]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[0]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 152.92,
+ "placementX" : 28.0,
+ "placementY" : 152.92,
+ "placementWidth" : 98.155,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.155,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[0]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 402.397,
+ "computedY" : 153.16,
+ "placementX" : 402.397,
+ "placementY" : 153.16,
+ "placementWidth" : 164.879,
+ "placementHeight" : 10.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 10.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[0]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[0]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 402.397,
+ "computedY" : 153.16,
+ "placementX" : 402.397,
+ "placementY" : 153.16,
+ "placementWidth" : 164.879,
+ "placementHeight" : 10.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 10.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 141.34,
+ "placementX" : 28.0,
+ "placementY" : 141.34,
+ "placementWidth" : 68.132,
+ "placementHeight" : 10.08,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 68.132,
+ "contentHeight" : 10.08,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 116.31,
+ "placementX" : 28.0,
+ "placementY" : 116.31,
+ "placementWidth" : 507.601,
+ "placementHeight" : 22.33,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 507.601,
+ "contentHeight" : 22.33,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 111.81,
+ "placementX" : 28.0,
+ "placementY" : 111.81,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[4]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 99.75,
+ "placementX" : 28.0,
+ "placementY" : 99.75,
+ "placementWidth" : 539.276,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[4]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[4]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 99.75,
+ "placementX" : 28.0,
+ "placementY" : 99.75,
+ "placementWidth" : 72.53,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 72.53,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[4]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[4]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 99.75,
+ "placementX" : 28.0,
+ "placementY" : 99.75,
+ "placementWidth" : 72.53,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 72.53,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[4]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[4]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 402.397,
+ "computedY" : 99.99,
+ "placementX" : 402.397,
+ "placementY" : 99.99,
+ "placementWidth" : 164.879,
+ "placementHeight" : 10.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 10.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[4]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[4]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 402.397,
+ "computedY" : 99.99,
+ "placementX" : 402.397,
+ "placementY" : 99.99,
+ "placementWidth" : 164.879,
+ "placementHeight" : 10.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 10.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 88.17,
+ "placementX" : 28.0,
+ "placementY" : 88.17,
+ "placementWidth" : 54.432,
+ "placementHeight" : 10.08,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 54.432,
+ "contentHeight" : 10.08,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 63.14,
+ "placementX" : 28.0,
+ "placementY" : 63.14,
+ "placementWidth" : 535.424,
+ "placementHeight" : 22.33,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 535.424,
+ "contentHeight" : 22.33,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/SpacerNode[7]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 58.64,
+ "placementX" : 28.0,
+ "placementY" : 58.64,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[8]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 46.58,
+ "placementX" : 28.0,
+ "placementY" : 46.58,
+ "placementWidth" : 539.276,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[8]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[8]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 46.58,
+ "placementX" : 28.0,
+ "placementY" : 46.58,
+ "placementWidth" : 70.567,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 70.567,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[8]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[8]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 46.58,
+ "placementX" : 28.0,
+ "placementY" : 46.58,
+ "placementWidth" : 70.567,
+ "placementHeight" : 10.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 70.567,
+ "contentHeight" : 10.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[8]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[8]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 402.397,
+ "computedY" : 46.82,
+ "placementX" : 402.397,
+ "placementY" : 46.82,
+ "placementWidth" : 164.879,
+ "placementHeight" : 10.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 10.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[8]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]/CvV2EntryHeader[8]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 402.397,
+ "computedY" : 46.82,
+ "placementX" : 402.397,
+ "placementY" : 46.82,
+ "placementWidth" : 164.879,
+ "placementHeight" : 10.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 10.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 35.0,
+ "placementX" : 28.0,
+ "placementY" : 35.0,
+ "placementWidth" : 48.208,
+ "placementHeight" : 10.08,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 48.208,
+ "contentHeight" : 10.08,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_4[22]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_4[22]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 790.36,
+ "placementX" : 28.0,
+ "placementY" : 790.36,
+ "placementWidth" : 522.078,
+ "placementHeight" : 22.33,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 522.078,
+ "contentHeight" : 22.33,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/InterModuleRule_4[23]",
+ "entityName" : "InterModuleRule_4",
+ "entityKind" : "LineNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 23,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 784.36,
+ "placementX" : 28.0,
+ "placementY" : 784.36,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 5.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Title_5[24]",
+ "entityName" : "Title_5",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 24,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 764.96,
+ "placementX" : 28.0,
+ "placementY" : 764.96,
+ "placementWidth" : 167.285,
+ "placementHeight" : 11.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 167.285,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Title_5[24]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Title_5[24]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 764.96,
+ "placementX" : 28.0,
+ "placementY" : 764.96,
+ "placementWidth" : 167.285,
+ "placementHeight" : 11.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 167.285,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/TitleBottomRule_5[25]",
+ "entityName" : "TitleBottomRule_5",
+ "entityKind" : "LineNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 25,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 755.96,
+ "placementX" : 28.0,
+ "placementY" : 755.96,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_5[26]",
+ "entityName" : "Body_5",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CenteredHeadlineRoot[0]",
+ "childIndex" : 26,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 696.9,
+ "placementX" : 28.0,
+ "placementY" : 696.9,
+ "placementWidth" : 338.813,
+ "placementHeight" : 51.06,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 338.813,
+ "contentHeight" : 51.06,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_5[26]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_5[26]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 736.32,
+ "placementX" : 28.0,
+ "placementY" : 736.32,
+ "placementWidth" : 254.753,
+ "placementHeight" : 10.44,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 254.753,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_5[26]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_5[26]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 723.18,
+ "placementX" : 28.0,
+ "placementY" : 723.18,
+ "placementWidth" : 206.442,
+ "placementHeight" : 10.44,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 206.442,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_5[26]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_5[26]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 710.04,
+ "placementX" : 28.0,
+ "placementY" : 710.04,
+ "placementWidth" : 338.813,
+ "placementHeight" : 10.44,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 338.813,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CenteredHeadlineRoot[0]/Body_5[26]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CenteredHeadlineRoot[0]/Body_5[26]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 696.9,
+ "placementX" : 28.0,
+ "placementY" : 696.9,
+ "placementWidth" : 335.342,
+ "placementHeight" : 10.44,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 335.342,
+ "contentHeight" : 10.44,
+ "margin" : {
+ "top" : 1.2,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/classic_serif_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/classic_serif_layout.json
new file mode 100644
index 000000000..a8d5f6e3c
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/classic_serif_layout.json
@@ -0,0 +1,2957 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 555.276,
+ "innerHeight" : 801.89,
+ "margin" : {
+ "top" : 20.0,
+ "right" : 20.0,
+ "bottom" : 20.0,
+ "left" : 20.0
+ }
+ },
+ "totalPages" : 2,
+ "nodes" : [ {
+ "path" : "CvV2ClassicSerifRoot[0]",
+ "entityName" : "CvV2ClassicSerifRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 20.0,
+ "computedY" : -172.563,
+ "placementX" : 20.0,
+ "placementY" : -172.563,
+ "placementWidth" : 555.276,
+ "placementHeight" : 994.453,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 555.276,
+ "contentHeight" : 994.453,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifHeader[0]",
+ "entityName" : "CvV2ClassicSerifHeader",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 20.0,
+ "computedY" : 772.587,
+ "placementX" : 20.0,
+ "placementY" : 772.587,
+ "placementWidth" : 555.276,
+ "placementHeight" : 49.303,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 49.303,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifHeader[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 786.115,
+ "placementX" : 20.0,
+ "placementY" : 786.115,
+ "placementWidth" : 555.276,
+ "placementHeight" : 35.775,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 35.775,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifHeader[0]/CvV2ClassicSerifHeaderRule[1]",
+ "entityName" : "CvV2ClassicSerifHeaderRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 784.115,
+ "placementX" : 20.0,
+ "placementY" : 784.115,
+ "placementWidth" : 555.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifHeader[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifHeader[0]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 772.587,
+ "placementX" : 20.0,
+ "placementY" : 772.587,
+ "placementWidth" : 555.276,
+ "placementHeight" : 11.528,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifSummary[1]",
+ "entityName" : "CvV2ClassicSerifSummary",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 20.0,
+ "computedY" : 680.342,
+ "placementX" : 20.0,
+ "placementY" : 680.342,
+ "placementWidth" : 555.276,
+ "placementHeight" : 84.245,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 84.245,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 12.0,
+ "right" : 18.0,
+ "bottom" : 13.0,
+ "left" : 18.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifSummary[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifSummary[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 38.0,
+ "computedY" : 740.397,
+ "placementX" : 38.0,
+ "placementY" : 740.397,
+ "placementWidth" : 519.276,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 519.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifSummary[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifSummary[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 38.0,
+ "computedY" : 693.342,
+ "placementX" : 38.0,
+ "placementY" : 693.342,
+ "placementWidth" : 519.276,
+ "placementHeight" : 42.055,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 519.276,
+ "contentHeight" : 42.055,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]",
+ "entityName" : "CvV2ClassicSerifCoreSkills",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 20.0,
+ "computedY" : 555.602,
+ "placementX" : 20.0,
+ "placementY" : 555.602,
+ "placementWidth" : 431.352,
+ "placementHeight" : 116.74,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 431.352,
+ "contentHeight" : 116.74,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]/Header[0]",
+ "entityName" : "Header",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 653.152,
+ "placementX" : 20.0,
+ "placementY" : 653.152,
+ "placementWidth" : 76.597,
+ "placementHeight" : 19.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 76.597,
+ "contentHeight" : 19.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]/Header[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]/Header[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 20.0,
+ "computedY" : 660.152,
+ "placementX" : 20.0,
+ "placementY" : 660.152,
+ "placementWidth" : 76.597,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 76.597,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]/Header[0]/CvV2SectionHeaderSpacedCapsRule[1]",
+ "entityName" : "CvV2SectionHeaderSpacedCapsRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]/Header[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 20.0,
+ "computedY" : 655.152,
+ "placementX" : 20.0,
+ "placementY" : 655.152,
+ "placementWidth" : 72.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 72.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 637.227,
+ "placementX" : 20.0,
+ "placementY" : 637.227,
+ "placementWidth" : 197.316,
+ "placementHeight" : 11.925,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 197.316,
+ "contentHeight" : 11.925,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 621.302,
+ "placementX" : 20.0,
+ "placementY" : 621.302,
+ "placementWidth" : 431.352,
+ "placementHeight" : 11.925,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 431.352,
+ "contentHeight" : 11.925,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 605.377,
+ "placementX" : 20.0,
+ "placementY" : 605.377,
+ "placementWidth" : 430.065,
+ "placementHeight" : 11.925,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 430.065,
+ "contentHeight" : 11.925,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 589.452,
+ "placementX" : 20.0,
+ "placementY" : 589.452,
+ "placementWidth" : 373.059,
+ "placementHeight" : 11.925,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 373.059,
+ "contentHeight" : 11.925,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 573.527,
+ "placementX" : 20.0,
+ "placementY" : 573.527,
+ "placementWidth" : 400.761,
+ "placementHeight" : 11.925,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 400.761,
+ "contentHeight" : 11.925,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifCoreSkills[2]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 557.602,
+ "placementX" : 20.0,
+ "placementY" : 557.602,
+ "placementWidth" : 402.75,
+ "placementHeight" : 11.925,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 402.75,
+ "contentHeight" : 11.925,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]",
+ "entityName" : "CvV2ClassicSerifexperience",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]",
+ "childIndex" : 3,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 20.0,
+ "computedY" : 328.25,
+ "placementX" : 20.0,
+ "placementY" : 328.25,
+ "placementWidth" : 555.276,
+ "placementHeight" : 219.353,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 219.353,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/Header[0]",
+ "entityName" : "Header",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 528.412,
+ "placementX" : 20.0,
+ "placementY" : 528.412,
+ "placementWidth" : 74.22,
+ "placementHeight" : 19.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 74.22,
+ "contentHeight" : 19.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/Header[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/Header[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 20.0,
+ "computedY" : 535.412,
+ "placementX" : 20.0,
+ "placementY" : 535.412,
+ "placementWidth" : 74.22,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 74.22,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/Header[0]/CvV2SectionHeaderSpacedCapsRule[1]",
+ "entityName" : "CvV2SectionHeaderSpacedCapsRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/Header[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 20.0,
+ "computedY" : 530.412,
+ "placementX" : 20.0,
+ "placementY" : 530.412,
+ "placementWidth" : 72.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 72.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[1]",
+ "entityName" : "CvV2ClassicSerifEntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 512.222,
+ "placementX" : 20.0,
+ "placementY" : 512.222,
+ "placementWidth" : 555.276,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[1]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 20.0,
+ "computedY" : 512.222,
+ "placementX" : 20.0,
+ "placementY" : 512.222,
+ "placementWidth" : 112.038,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 112.038,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[1]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[1]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 20.0,
+ "computedY" : 512.222,
+ "placementX" : 20.0,
+ "placementY" : 512.222,
+ "placementWidth" : 112.038,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 112.038,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[1]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 431.467,
+ "computedY" : 512.885,
+ "placementX" : 431.467,
+ "placementY" : 512.885,
+ "placementWidth" : 143.808,
+ "placementHeight" : 11.528,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 143.808,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[1]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[1]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 431.467,
+ "computedY" : 512.885,
+ "placementX" : 431.467,
+ "placementY" : 512.885,
+ "placementWidth" : 143.808,
+ "placementHeight" : 11.528,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 143.808,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 496.695,
+ "placementX" : 20.0,
+ "placementY" : 496.695,
+ "placementWidth" : 71.34,
+ "placementHeight" : 11.528,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 71.34,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 467.025,
+ "placementX" : 20.0,
+ "placementY" : 467.025,
+ "placementWidth" : 527.569,
+ "placementHeight" : 24.67,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 527.569,
+ "contentHeight" : 24.67,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/SpacerNode[4]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 460.025,
+ "placementX" : 20.0,
+ "placementY" : 460.025,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[5]",
+ "entityName" : "CvV2ClassicSerifEntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 443.835,
+ "placementX" : 20.0,
+ "placementY" : 443.835,
+ "placementWidth" : 555.276,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[5]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[5]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 20.0,
+ "computedY" : 443.835,
+ "placementX" : 20.0,
+ "placementY" : 443.835,
+ "placementWidth" : 80.914,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 80.914,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[5]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[5]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 20.0,
+ "computedY" : 443.835,
+ "placementX" : 20.0,
+ "placementY" : 443.835,
+ "placementWidth" : 80.914,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 80.914,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[5]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[5]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 431.467,
+ "computedY" : 444.497,
+ "placementX" : 431.467,
+ "placementY" : 444.497,
+ "placementWidth" : 143.808,
+ "placementHeight" : 11.528,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 143.808,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[5]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[5]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 431.467,
+ "computedY" : 444.497,
+ "placementX" : 431.467,
+ "placementY" : 444.497,
+ "placementWidth" : 143.808,
+ "placementHeight" : 11.528,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 143.808,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 428.307,
+ "placementX" : 20.0,
+ "placementY" : 428.307,
+ "placementWidth" : 58.464,
+ "placementHeight" : 11.528,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 58.464,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 398.637,
+ "placementX" : 20.0,
+ "placementY" : 398.637,
+ "placementWidth" : 533.227,
+ "placementHeight" : 24.67,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 533.227,
+ "contentHeight" : 24.67,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/SpacerNode[8]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 391.637,
+ "placementX" : 20.0,
+ "placementY" : 391.637,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[9]",
+ "entityName" : "CvV2ClassicSerifEntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 375.447,
+ "placementX" : 20.0,
+ "placementY" : 375.447,
+ "placementWidth" : 555.276,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[9]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[9]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 20.0,
+ "computedY" : 375.447,
+ "placementX" : 20.0,
+ "placementY" : 375.447,
+ "placementWidth" : 79.267,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 79.267,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[9]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[9]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 20.0,
+ "computedY" : 375.447,
+ "placementX" : 20.0,
+ "placementY" : 375.447,
+ "placementWidth" : 79.267,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 79.267,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[9]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[9]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 431.467,
+ "computedY" : 376.11,
+ "placementX" : 431.467,
+ "placementY" : 376.11,
+ "placementWidth" : 143.808,
+ "placementHeight" : 11.528,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 143.808,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[9]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/CvV2ClassicSerifEntryHeader[9]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 431.467,
+ "computedY" : 376.11,
+ "placementX" : 431.467,
+ "placementY" : 376.11,
+ "placementWidth" : 143.808,
+ "placementHeight" : 11.528,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 143.808,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 359.92,
+ "placementX" : 20.0,
+ "placementY" : 359.92,
+ "placementWidth" : 51.739,
+ "placementHeight" : 11.528,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 51.739,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]/ParagraphNode[11]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifexperience[3]",
+ "childIndex" : 11,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 330.25,
+ "placementX" : 20.0,
+ "placementY" : 330.25,
+ "placementWidth" : 535.058,
+ "placementHeight" : 24.67,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 535.058,
+ "contentHeight" : 24.67,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]",
+ "entityName" : "CvV2ClassicSerifprojects",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]",
+ "childIndex" : 4,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 20.0,
+ "computedY" : 133.65,
+ "placementX" : 20.0,
+ "placementY" : 133.65,
+ "placementWidth" : 554.118,
+ "placementHeight" : 186.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 554.118,
+ "contentHeight" : 186.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]/Header[0]",
+ "entityName" : "Header",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 301.06,
+ "placementX" : 20.0,
+ "placementY" : 301.06,
+ "placementWidth" : 72.0,
+ "placementHeight" : 19.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 72.0,
+ "contentHeight" : 19.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]/Header[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]/Header[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 20.0,
+ "computedY" : 308.06,
+ "placementX" : 20.0,
+ "placementY" : 308.06,
+ "placementWidth" : 58.7,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 58.7,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]/Header[0]/CvV2SectionHeaderSpacedCapsRule[1]",
+ "entityName" : "CvV2SectionHeaderSpacedCapsRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]/Header[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 20.0,
+ "computedY" : 303.06,
+ "placementX" : 20.0,
+ "placementY" : 303.06,
+ "placementWidth" : 72.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 72.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 283.87,
+ "placementX" : 20.0,
+ "placementY" : 283.87,
+ "placementWidth" : 187.189,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 187.189,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 255.2,
+ "placementX" : 20.0,
+ "placementY" : 255.2,
+ "placementWidth" : 520.731,
+ "placementHeight" : 24.67,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 520.731,
+ "contentHeight" : 24.67,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 248.2,
+ "placementX" : 20.0,
+ "placementY" : 248.2,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 231.01,
+ "placementX" : 20.0,
+ "placementY" : 231.01,
+ "placementWidth" : 241.722,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 241.722,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 215.35,
+ "placementX" : 20.0,
+ "placementY" : 215.35,
+ "placementWidth" : 537.064,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 537.064,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]/SpacerNode[6]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 208.35,
+ "placementX" : 20.0,
+ "placementY" : 208.35,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 191.16,
+ "placementX" : 20.0,
+ "placementY" : 191.16,
+ "placementWidth" : 155.827,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 155.827,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]/ParagraphNode[8]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 175.5,
+ "placementX" : 20.0,
+ "placementY" : 175.5,
+ "placementWidth" : 554.118,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 554.118,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]/SpacerNode[9]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 168.5,
+ "placementX" : 20.0,
+ "placementY" : 168.5,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 151.31,
+ "placementX" : 20.0,
+ "placementY" : 151.31,
+ "placementWidth" : 202.574,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 202.574,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]/ParagraphNode[11]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifprojects[4]",
+ "childIndex" : 11,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 135.65,
+ "placementX" : 20.0,
+ "placementY" : 135.65,
+ "placementWidth" : 505.877,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 505.877,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]",
+ "entityName" : "CvV2ClassicSerifeducation",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]",
+ "childIndex" : 5,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 20.0,
+ "computedY" : -54.673,
+ "placementX" : 20.0,
+ "placementY" : -54.673,
+ "placementWidth" : 555.276,
+ "placementHeight" : 180.323,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 555.276,
+ "contentHeight" : 180.323,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/Header[0]",
+ "entityName" : "Header",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 106.46,
+ "placementX" : 20.0,
+ "placementY" : 106.46,
+ "placementWidth" : 72.0,
+ "placementHeight" : 19.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 72.0,
+ "contentHeight" : 19.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/Header[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/Header[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 20.0,
+ "computedY" : 113.46,
+ "placementX" : 20.0,
+ "placementY" : 113.46,
+ "placementWidth" : 70.02,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 70.02,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/Header[0]/CvV2SectionHeaderSpacedCapsRule[1]",
+ "entityName" : "CvV2SectionHeaderSpacedCapsRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/Header[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 20.0,
+ "computedY" : 108.46,
+ "placementX" : 20.0,
+ "placementY" : 108.46,
+ "placementWidth" : 72.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 72.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[1]",
+ "entityName" : "CvV2ClassicSerifEntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 90.27,
+ "placementX" : 20.0,
+ "placementY" : 90.27,
+ "placementWidth" : 555.276,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[1]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 20.0,
+ "computedY" : 90.27,
+ "placementX" : 20.0,
+ "placementY" : 90.27,
+ "placementWidth" : 99.875,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 99.875,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[1]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[1]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 20.0,
+ "computedY" : 90.27,
+ "placementX" : 20.0,
+ "placementY" : 90.27,
+ "placementWidth" : 99.875,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 99.875,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[1]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 431.467,
+ "computedY" : 90.932,
+ "placementX" : 431.467,
+ "placementY" : 90.932,
+ "placementWidth" : 143.808,
+ "placementHeight" : 11.528,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 143.808,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[1]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[1]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 431.467,
+ "computedY" : 90.932,
+ "placementX" : 431.467,
+ "placementY" : 90.932,
+ "placementWidth" : 143.808,
+ "placementHeight" : 11.528,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 143.808,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 74.742,
+ "placementX" : 20.0,
+ "placementY" : 74.742,
+ "placementWidth" : 91.55,
+ "placementHeight" : 11.528,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 91.55,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 58.082,
+ "placementX" : 20.0,
+ "placementY" : 58.082,
+ "placementWidth" : 332.059,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 332.059,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/SpacerNode[4]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 51.082,
+ "placementX" : 20.0,
+ "placementY" : 51.082,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[5]",
+ "entityName" : "CvV2ClassicSerifEntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 34.892,
+ "placementX" : 20.0,
+ "placementY" : 34.892,
+ "placementWidth" : 555.276,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[5]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[5]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 20.0,
+ "computedY" : 34.892,
+ "placementX" : 20.0,
+ "placementY" : 34.892,
+ "placementWidth" : 113.123,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 113.123,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[5]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[5]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 20.0,
+ "computedY" : 34.892,
+ "placementX" : 20.0,
+ "placementY" : 34.892,
+ "placementWidth" : 113.123,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 113.123,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[5]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[5]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 431.467,
+ "computedY" : 35.555,
+ "placementX" : 431.467,
+ "placementY" : 35.555,
+ "placementWidth" : 143.808,
+ "placementHeight" : 11.528,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 143.808,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[5]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[5]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 431.467,
+ "computedY" : 35.555,
+ "placementX" : 431.467,
+ "placementY" : 35.555,
+ "placementWidth" : 143.808,
+ "placementHeight" : 11.528,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 143.808,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 810.362,
+ "placementX" : 20.0,
+ "placementY" : 810.362,
+ "placementWidth" : 90.384,
+ "placementHeight" : 11.528,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 90.384,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 793.702,
+ "placementX" : 20.0,
+ "placementY" : 793.702,
+ "placementWidth" : 261.466,
+ "placementHeight" : 11.66,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 261.466,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/SpacerNode[8]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 786.702,
+ "placementX" : 20.0,
+ "placementY" : 786.702,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[9]",
+ "entityName" : "CvV2ClassicSerifEntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 770.512,
+ "placementX" : 20.0,
+ "placementY" : 770.512,
+ "placementWidth" : 555.276,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 555.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[9]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[9]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 20.0,
+ "computedY" : 770.512,
+ "placementX" : 20.0,
+ "placementY" : 770.512,
+ "placementWidth" : 107.806,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 107.806,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[9]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[9]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 20.0,
+ "computedY" : 770.512,
+ "placementX" : 20.0,
+ "placementY" : 770.512,
+ "placementWidth" : 107.806,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 107.806,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[9]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[9]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 431.467,
+ "computedY" : 771.175,
+ "placementX" : 431.467,
+ "placementY" : 771.175,
+ "placementWidth" : 143.808,
+ "placementHeight" : 11.528,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 143.808,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[9]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/CvV2ClassicSerifEntryHeader[9]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 431.467,
+ "computedY" : 771.175,
+ "placementX" : 431.467,
+ "placementY" : 771.175,
+ "placementWidth" : 143.808,
+ "placementHeight" : 11.528,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 143.808,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 754.985,
+ "placementX" : 20.0,
+ "placementY" : 754.985,
+ "placementWidth" : 66.337,
+ "placementHeight" : 11.528,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 66.337,
+ "contentHeight" : 11.528,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]/ParagraphNode[11]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifeducation[5]",
+ "childIndex" : 11,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 738.325,
+ "placementX" : 20.0,
+ "placementY" : 738.325,
+ "placementWidth" : 328.733,
+ "placementHeight" : 11.66,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 328.733,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]",
+ "entityName" : "CvV2ClassicSerifadditional",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]",
+ "childIndex" : 6,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 20.0,
+ "computedY" : 618.435,
+ "placementX" : 20.0,
+ "placementY" : 618.435,
+ "placementWidth" : 356.508,
+ "placementHeight" : 109.89,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 356.508,
+ "contentHeight" : 109.89,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]/Header[0]",
+ "entityName" : "Header",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 709.135,
+ "placementX" : 20.0,
+ "placementY" : 709.135,
+ "placementWidth" : 75.811,
+ "placementHeight" : 19.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 75.811,
+ "contentHeight" : 19.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]/Header[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]/Header[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 20.0,
+ "computedY" : 716.135,
+ "placementX" : 20.0,
+ "placementY" : 716.135,
+ "placementWidth" : 75.811,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 75.811,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]/Header[0]/CvV2SectionHeaderSpacedCapsRule[1]",
+ "entityName" : "CvV2SectionHeaderSpacedCapsRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]/Header[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 20.0,
+ "computedY" : 711.135,
+ "placementX" : 20.0,
+ "placementY" : 711.135,
+ "placementWidth" : 72.0,
+ "placementHeight" : 1.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 72.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 692.21,
+ "placementX" : 20.0,
+ "placementY" : 692.21,
+ "placementWidth" : 278.1,
+ "placementHeight" : 11.925,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 278.1,
+ "contentHeight" : 11.925,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]/SpacerNode[2]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 685.21,
+ "placementX" : 20.0,
+ "placementY" : 685.21,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 668.285,
+ "placementX" : 20.0,
+ "placementY" : 668.285,
+ "placementWidth" : 221.616,
+ "placementHeight" : 11.925,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 221.616,
+ "contentHeight" : 11.925,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]/SpacerNode[4]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 661.285,
+ "placementX" : 20.0,
+ "placementY" : 661.285,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 644.36,
+ "placementX" : 20.0,
+ "placementY" : 644.36,
+ "placementWidth" : 356.508,
+ "placementHeight" : 11.925,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 356.508,
+ "contentHeight" : 11.925,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]/SpacerNode[6]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 637.36,
+ "placementX" : 20.0,
+ "placementY" : 637.36,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ClassicSerifRoot[0]/CvV2ClassicSerifadditional[6]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 620.435,
+ "placementX" : 20.0,
+ "placementY" : 620.435,
+ "placementWidth" : 348.966,
+ "placementHeight" : 11.925,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 348.966,
+ "contentHeight" : 11.925,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/compact_mono_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/compact_mono_layout.json
new file mode 100644
index 000000000..c47d5afb4
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/compact_mono_layout.json
@@ -0,0 +1,1577 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 555.276,
+ "innerHeight" : 801.89,
+ "margin" : {
+ "top" : 20.0,
+ "right" : 20.0,
+ "bottom" : 20.0,
+ "left" : 20.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CvV2CompactMonoRoot[0]",
+ "entityName" : "CvV2CompactMonoRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 20.0,
+ "computedY" : 303.62,
+ "placementX" : 20.0,
+ "placementY" : 303.62,
+ "placementWidth" : 555.276,
+ "placementHeight" : 518.27,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 518.27,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoHeader[0]",
+ "entityName" : "CvV2CompactMonoHeader",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 20.0,
+ "computedY" : 745.38,
+ "placementX" : 20.0,
+ "placementY" : 745.38,
+ "placementWidth" : 555.276,
+ "placementHeight" : 76.51,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 76.51,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 13.0,
+ "right" : 16.0,
+ "bottom" : 14.0,
+ "left" : 16.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoHeader[0]/Name[0]",
+ "entityName" : "Name",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 778.34,
+ "placementX" : 36.0,
+ "placementY" : 778.34,
+ "placementWidth" : 183.3,
+ "placementHeight" : 30.55,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 183.3,
+ "contentHeight" : 30.55,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoHeader[0]/Name[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoHeader[0]/Name[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 36.0,
+ "computedY" : 778.34,
+ "placementX" : 36.0,
+ "placementY" : 778.34,
+ "placementWidth" : 183.3,
+ "placementHeight" : 30.55,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 183.3,
+ "contentHeight" : 30.55,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoHeader[0]/Contact[1]",
+ "entityName" : "Contact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 764.38,
+ "placementX" : 36.0,
+ "placementY" : 764.38,
+ "placementWidth" : 319.708,
+ "placementHeight" : 9.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 319.708,
+ "contentHeight" : 9.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoHeader[0]/Contact[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoHeader[0]/Contact[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 36.0,
+ "computedY" : 764.38,
+ "placementX" : 36.0,
+ "placementY" : 764.38,
+ "placementWidth" : 319.708,
+ "placementHeight" : 9.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 319.708,
+ "contentHeight" : 9.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoHeader[0]/CvV2CompactMonoHeaderWidthRule[2]",
+ "entityName" : "CvV2CompactMonoHeaderWidthRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoHeader[0]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 759.38,
+ "placementX" : 36.0,
+ "placementY" : 759.38,
+ "placementWidth" : 523.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 523.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]",
+ "entityName" : "CvV2CompactMonoBody",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 20.0,
+ "computedY" : 303.62,
+ "placementX" : 20.0,
+ "placementY" : 303.62,
+ "placementWidth" : 555.276,
+ "placementHeight" : 432.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 432.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]",
+ "entityName" : "Rail",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 352.58,
+ "placementX" : 20.0,
+ "placementY" : 352.58,
+ "placementWidth" : 174.994,
+ "placementHeight" : 383.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 174.994,
+ "contentHeight" : 383.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 11.0,
+ "right" : 11.0,
+ "bottom" : 13.0,
+ "left" : 11.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]",
+ "entityName" : "CvV2CompactMonoSkills",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 31.0,
+ "computedY" : 575.82,
+ "placementX" : 31.0,
+ "placementY" : 575.82,
+ "placementWidth" : 152.994,
+ "placementHeight" : 149.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 152.994,
+ "contentHeight" : 149.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]/CvV2SectionHeaderTick[0]",
+ "entityName" : "CvV2SectionHeaderTick",
+ "entityKind" : "ShapeNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 723.18,
+ "placementX" : 31.0,
+ "placementY" : 723.18,
+ "placementWidth" : 22.0,
+ "placementHeight" : 2.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 22.0,
+ "contentHeight" : 2.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 709.78,
+ "placementX" : 31.0,
+ "placementY" : 709.78,
+ "placementWidth" : 28.8,
+ "placementHeight" : 10.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 28.8,
+ "contentHeight" : 10.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 697.72,
+ "placementX" : 31.0,
+ "placementY" : 697.72,
+ "placementWidth" : 140.39,
+ "placementHeight" : 9.06,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 140.39,
+ "contentHeight" : 9.06,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 673.74,
+ "placementX" : 31.0,
+ "placementY" : 673.74,
+ "placementWidth" : 132.586,
+ "placementHeight" : 18.98,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 132.586,
+ "contentHeight" : 18.98,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 649.76,
+ "placementX" : 31.0,
+ "placementY" : 649.76,
+ "placementWidth" : 149.302,
+ "placementHeight" : 18.98,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 149.302,
+ "contentHeight" : 18.98,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 625.78,
+ "placementX" : 31.0,
+ "placementY" : 625.78,
+ "placementWidth" : 149.995,
+ "placementHeight" : 18.98,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 149.995,
+ "contentHeight" : 18.98,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 601.8,
+ "placementX" : 31.0,
+ "placementY" : 601.8,
+ "placementWidth" : 147.953,
+ "placementHeight" : 18.98,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 147.953,
+ "contentHeight" : 18.98,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoSkills[0]",
+ "childIndex" : 7,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 577.82,
+ "placementX" : 31.0,
+ "placementY" : 577.82,
+ "placementWidth" : 152.994,
+ "placementHeight" : 18.98,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 152.994,
+ "contentHeight" : 18.98,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoEducation[1]",
+ "entityName" : "CvV2CompactMonoEducation",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 31.0,
+ "computedY" : 482.5,
+ "placementX" : 31.0,
+ "placementY" : 482.5,
+ "placementWidth" : 147.466,
+ "placementHeight" : 85.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 147.466,
+ "contentHeight" : 85.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoEducation[1]/CvV2SectionHeaderTick[0]",
+ "entityName" : "CvV2SectionHeaderTick",
+ "entityKind" : "ShapeNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoEducation[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 565.62,
+ "placementX" : 31.0,
+ "placementY" : 565.62,
+ "placementWidth" : 22.0,
+ "placementHeight" : 2.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 22.0,
+ "contentHeight" : 2.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoEducation[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoEducation[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 552.22,
+ "placementX" : 31.0,
+ "placementY" : 552.22,
+ "placementWidth" : 43.2,
+ "placementHeight" : 10.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 43.2,
+ "contentHeight" : 10.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoEducation[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoEducation[1]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 530.92,
+ "placementX" : 31.0,
+ "placementY" : 530.92,
+ "placementWidth" : 122.406,
+ "placementHeight" : 18.3,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 122.406,
+ "contentHeight" : 18.3,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoEducation[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoEducation[1]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 507.62,
+ "placementX" : 31.0,
+ "placementY" : 507.62,
+ "placementWidth" : 140.956,
+ "placementHeight" : 18.3,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 140.956,
+ "contentHeight" : 18.3,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoEducation[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoEducation[1]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 484.5,
+ "placementX" : 31.0,
+ "placementY" : 484.5,
+ "placementWidth" : 147.466,
+ "placementHeight" : 18.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 147.466,
+ "contentHeight" : 18.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoAdditional[2]",
+ "entityName" : "CvV2CompactMonoAdditional",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 31.0,
+ "computedY" : 365.58,
+ "placementX" : 31.0,
+ "placementY" : 365.58,
+ "placementWidth" : 150.07,
+ "placementHeight" : 108.92,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 150.07,
+ "contentHeight" : 108.92,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoAdditional[2]/CvV2SectionHeaderTick[0]",
+ "entityName" : "CvV2SectionHeaderTick",
+ "entityKind" : "ShapeNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoAdditional[2]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 472.3,
+ "placementX" : 31.0,
+ "placementY" : 472.3,
+ "placementWidth" : 22.0,
+ "placementHeight" : 2.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 22.0,
+ "contentHeight" : 2.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoAdditional[2]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoAdditional[2]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 458.9,
+ "placementX" : 31.0,
+ "placementY" : 458.9,
+ "placementWidth" : 48.0,
+ "placementHeight" : 10.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 48.0,
+ "contentHeight" : 10.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoAdditional[2]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoAdditional[2]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 437.57,
+ "placementX" : 31.0,
+ "placementY" : 437.57,
+ "placementWidth" : 114.552,
+ "placementHeight" : 18.33,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 114.552,
+ "contentHeight" : 18.33,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoAdditional[2]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoAdditional[2]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 414.24,
+ "placementX" : 31.0,
+ "placementY" : 414.24,
+ "placementWidth" : 147.298,
+ "placementHeight" : 18.33,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 147.298,
+ "contentHeight" : 18.33,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoAdditional[2]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoAdditional[2]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 390.91,
+ "placementX" : 31.0,
+ "placementY" : 390.91,
+ "placementWidth" : 141.134,
+ "placementHeight" : 18.33,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 141.134,
+ "contentHeight" : 18.33,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoAdditional[2]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Rail[0]/CvV2CompactMonoAdditional[2]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 31.0,
+ "computedY" : 367.58,
+ "placementX" : 31.0,
+ "placementY" : 367.58,
+ "placementWidth" : 150.07,
+ "placementHeight" : 18.33,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 150.07,
+ "contentHeight" : 18.33,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]",
+ "entityName" : "Main",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 209.915,
+ "computedY" : 303.62,
+ "placementX" : 209.915,
+ "placementY" : 303.62,
+ "placementWidth" : 364.337,
+ "placementHeight" : 432.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 364.337,
+ "contentHeight" : 432.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProfile[0]",
+ "entityName" : "CvV2CompactMonoProfile",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 209.915,
+ "computedY" : 656.6,
+ "placementX" : 209.915,
+ "placementY" : 656.6,
+ "placementWidth" : 357.442,
+ "placementHeight" : 79.78,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 357.442,
+ "contentHeight" : 79.78,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 9.0,
+ "right" : 10.0,
+ "bottom" : 10.0,
+ "left" : 11.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProfile[0]/CvV2SectionHeaderTick[0]",
+ "entityName" : "CvV2SectionHeaderTick",
+ "entityKind" : "ShapeNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProfile[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 725.18,
+ "placementX" : 220.915,
+ "placementY" : 725.18,
+ "placementWidth" : 24.0,
+ "placementHeight" : 2.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 24.0,
+ "contentHeight" : 2.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProfile[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProfile[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 711.78,
+ "placementX" : 220.915,
+ "placementY" : 711.78,
+ "placementWidth" : 33.6,
+ "placementHeight" : 10.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 33.6,
+ "contentHeight" : 10.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProfile[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProfile[0]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 666.6,
+ "placementX" : 220.915,
+ "placementY" : 666.6,
+ "placementWidth" : 336.442,
+ "placementHeight" : 42.18,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 336.442,
+ "contentHeight" : 42.18,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]",
+ "entityName" : "CvV2CompactMonoExperience",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 209.915,
+ "computedY" : 472.58,
+ "placementX" : 209.915,
+ "placementY" : 472.58,
+ "placementWidth" : 364.337,
+ "placementHeight" : 176.02,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 364.337,
+ "contentHeight" : 176.02,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 9.0,
+ "right" : 10.0,
+ "bottom" : 10.0,
+ "left" : 11.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]/CvV2SectionHeaderTick[0]",
+ "entityName" : "CvV2SectionHeaderTick",
+ "entityKind" : "ShapeNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 637.4,
+ "placementX" : 220.915,
+ "placementY" : 637.4,
+ "placementWidth" : 24.0,
+ "placementHeight" : 2.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 24.0,
+ "contentHeight" : 2.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 624.0,
+ "placementX" : 220.915,
+ "placementY" : 624.0,
+ "placementWidth" : 48.0,
+ "placementHeight" : 10.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 48.0,
+ "contentHeight" : 10.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 611.4,
+ "placementX" : 220.915,
+ "placementY" : 611.4,
+ "placementWidth" : 215.174,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 215.174,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.2,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 576.3,
+ "placementX" : 220.915,
+ "placementY" : 576.3,
+ "placementWidth" : 343.337,
+ "placementHeight" : 30.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 343.337,
+ "contentHeight" : 30.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 3.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 560.7,
+ "placementX" : 220.915,
+ "placementY" : 560.7,
+ "placementWidth" : 169.26,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 169.26,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.2,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 525.6,
+ "placementX" : 220.915,
+ "placementY" : 525.6,
+ "placementWidth" : 337.74,
+ "placementHeight" : 30.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 337.74,
+ "contentHeight" : 30.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 3.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 510.0,
+ "placementX" : 220.915,
+ "placementY" : 510.0,
+ "placementWidth" : 161.852,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 161.852,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.2,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoExperience[1]",
+ "childIndex" : 7,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 485.58,
+ "placementX" : 220.915,
+ "placementY" : 485.58,
+ "placementWidth" : 340.602,
+ "placementHeight" : 20.22,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 340.602,
+ "contentHeight" : 20.22,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 3.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProjects[2]",
+ "entityName" : "CvV2CompactMonoProjects",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 209.915,
+ "computedY" : 303.62,
+ "placementX" : 209.915,
+ "placementY" : 303.62,
+ "placementWidth" : 362.957,
+ "placementHeight" : 160.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 362.957,
+ "contentHeight" : 160.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 9.0,
+ "right" : 10.0,
+ "bottom" : 10.0,
+ "left" : 11.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProjects[2]/CvV2SectionHeaderTick[0]",
+ "entityName" : "CvV2SectionHeaderTick",
+ "entityKind" : "ShapeNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProjects[2]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 453.38,
+ "placementX" : 220.915,
+ "placementY" : 453.38,
+ "placementWidth" : 24.0,
+ "placementHeight" : 2.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 24.0,
+ "contentHeight" : 2.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProjects[2]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProjects[2]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 439.98,
+ "placementX" : 220.915,
+ "placementY" : 439.98,
+ "placementWidth" : 81.6,
+ "placementHeight" : 10.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 81.6,
+ "contentHeight" : 10.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProjects[2]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProjects[2]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 406.06,
+ "placementX" : 220.915,
+ "placementY" : 406.06,
+ "placementWidth" : 338.272,
+ "placementHeight" : 30.92,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 338.272,
+ "contentHeight" : 30.92,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 3.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProjects[2]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProjects[2]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 369.14,
+ "placementX" : 220.915,
+ "placementY" : 369.14,
+ "placementWidth" : 334.115,
+ "placementHeight" : 30.92,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 334.115,
+ "contentHeight" : 30.92,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 3.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProjects[2]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProjects[2]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 342.88,
+ "placementX" : 220.915,
+ "placementY" : 342.88,
+ "placementWidth" : 341.957,
+ "placementHeight" : 20.26,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 341.957,
+ "contentHeight" : 20.26,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 3.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProjects[2]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2CompactMonoRoot[0]/CvV2CompactMonoBody[1]/Main[1]/CvV2CompactMonoProjects[2]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 220.915,
+ "computedY" : 316.62,
+ "placementX" : 220.915,
+ "placementY" : 316.62,
+ "placementWidth" : 334.656,
+ "placementHeight" : 20.26,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 334.656,
+ "contentHeight" : 20.26,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 3.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/editorial_blue_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/editorial_blue_layout.json
new file mode 100644
index 000000000..d8b40f620
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/editorial_blue_layout.json
@@ -0,0 +1,2357 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 539.276,
+ "innerHeight" : 785.89,
+ "margin" : {
+ "top" : 28.0,
+ "right" : 28.0,
+ "bottom" : 28.0,
+ "left" : 28.0
+ }
+ },
+ "totalPages" : 2,
+ "nodes" : [ {
+ "path" : "CvV2EditorialBlueRoot[0]",
+ "entityName" : "CvV2EditorialBlueRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 28.0,
+ "computedY" : -107.63,
+ "placementX" : 28.0,
+ "placementY" : -107.63,
+ "placementWidth" : 539.276,
+ "placementHeight" : 921.52,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 921.52,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlueHeader[0]",
+ "entityName" : "CvV2EditorialBlueHeader",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 754.64,
+ "placementX" : 28.0,
+ "placementY" : 754.64,
+ "placementWidth" : 539.276,
+ "placementHeight" : 59.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 59.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlueHeader[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlueHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 791.54,
+ "placementX" : 28.0,
+ "placementY" : 791.54,
+ "placementWidth" : 539.276,
+ "placementHeight" : 20.35,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 20.35,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlueHeader[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlueHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 779.29,
+ "placementX" : 28.0,
+ "placementY" : 779.29,
+ "placementWidth" : 539.276,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlueHeader[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlueHeader[0]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 767.965,
+ "placementX" : 28.0,
+ "placementY" : 767.965,
+ "placementWidth" : 539.276,
+ "placementHeight" : 8.325,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 8.325,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlueHeader[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlueHeader[0]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 756.64,
+ "placementX" : 28.0,
+ "placementY" : 756.64,
+ "placementWidth" : 539.276,
+ "placementHeight" : 8.325,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 8.325,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_0_TitleRuleTop[1]",
+ "entityName" : "CvV2EditorialBlue_0_TitleRuleTop",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 745.64,
+ "placementX" : 28.0,
+ "placementY" : 745.64,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_0_Title[2]",
+ "entityName" : "CvV2EditorialBlue_0_Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 723.465,
+ "placementX" : 28.0,
+ "placementY" : 723.465,
+ "placementWidth" : 137.522,
+ "placementHeight" : 22.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 137.522,
+ "contentHeight" : 22.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 7.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_0_Title[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_0_Title[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 728.465,
+ "placementX" : 28.0,
+ "placementY" : 728.465,
+ "placementWidth" : 137.522,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 137.522,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_0_TitleRuleBottom[3]",
+ "entityName" : "CvV2EditorialBlue_0_TitleRuleBottom",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 3,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 722.465,
+ "placementX" : 28.0,
+ "placementY" : 722.465,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_0_Body[4]",
+ "entityName" : "CvV2EditorialBlue_0_Body",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 4,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 684.18,
+ "placementX" : 28.0,
+ "placementY" : 684.18,
+ "placementWidth" : 537.887,
+ "placementHeight" : 38.285,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 537.887,
+ "contentHeight" : 38.285,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_0_Body[4]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_0_Body[4]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 684.18,
+ "placementX" : 28.0,
+ "placementY" : 684.18,
+ "placementWidth" : 537.887,
+ "placementHeight" : 29.285,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 537.887,
+ "contentHeight" : 29.285,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_1_TitleRuleTop[5]",
+ "entityName" : "CvV2EditorialBlue_1_TitleRuleTop",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 5,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 675.18,
+ "placementX" : 28.0,
+ "placementY" : 675.18,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_1_Title[6]",
+ "entityName" : "CvV2EditorialBlue_1_Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 6,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 653.005,
+ "placementX" : 28.0,
+ "placementY" : 653.005,
+ "placementWidth" : 64.79,
+ "placementHeight" : 22.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 64.79,
+ "contentHeight" : 22.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 7.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_1_Title[6]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_1_Title[6]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 658.005,
+ "placementX" : 28.0,
+ "placementY" : 658.005,
+ "placementWidth" : 64.79,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 64.79,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_1_TitleRuleBottom[7]",
+ "entityName" : "CvV2EditorialBlue_1_TitleRuleBottom",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 7,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 652.005,
+ "placementX" : 28.0,
+ "placementY" : 652.005,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_1_Body[8]",
+ "entityName" : "CvV2EditorialBlue_1_Body",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 8,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 516.365,
+ "placementX" : 28.0,
+ "placementY" : 516.365,
+ "placementWidth" : 538.276,
+ "placementHeight" : 135.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 538.276,
+ "contentHeight" : 135.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_1_Body[8]/CvV2EditorialBlueSkillsTable[0]",
+ "entityName" : "CvV2EditorialBlueSkillsTable",
+ "entityKind" : "TableNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_1_Body[8]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 516.365,
+ "placementX" : 28.0,
+ "placementY" : 516.365,
+ "placementWidth" : 538.276,
+ "placementHeight" : 127.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 538.276,
+ "contentHeight" : 127.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_TitleRuleTop[9]",
+ "entityName" : "CvV2EditorialBlue_2_TitleRuleTop",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 9,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 507.365,
+ "placementX" : 28.0,
+ "placementY" : 507.365,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Title[10]",
+ "entityName" : "CvV2EditorialBlue_2_Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 10,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 485.19,
+ "placementX" : 28.0,
+ "placementY" : 485.19,
+ "placementWidth" : 65.384,
+ "placementHeight" : 22.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 65.384,
+ "contentHeight" : 22.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 7.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Title[10]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Title[10]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 490.19,
+ "placementX" : 28.0,
+ "placementY" : 490.19,
+ "placementWidth" : 65.384,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 65.384,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_TitleRuleBottom[11]",
+ "entityName" : "CvV2EditorialBlue_2_TitleRuleBottom",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 11,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 484.19,
+ "placementX" : 28.0,
+ "placementY" : 484.19,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]",
+ "entityName" : "CvV2EditorialBlue_2_Body",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 12,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 363.16,
+ "placementX" : 28.0,
+ "placementY" : 363.16,
+ "placementWidth" : 362.013,
+ "placementHeight" : 121.03,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 362.013,
+ "contentHeight" : 121.03,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 465.385,
+ "placementX" : 28.0,
+ "placementY" : 465.385,
+ "placementWidth" : 168.565,
+ "placementHeight" : 9.805,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 168.565,
+ "contentHeight" : 9.805,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 454.875,
+ "placementX" : 28.0,
+ "placementY" : 454.875,
+ "placementWidth" : 101.228,
+ "placementHeight" : 8.51,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 101.228,
+ "contentHeight" : 8.51,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 443.18,
+ "placementX" : 28.0,
+ "placementY" : 443.18,
+ "placementWidth" : 362.013,
+ "placementHeight" : 8.695,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 362.013,
+ "contentHeight" : 8.695,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 438.18,
+ "placementX" : 28.0,
+ "placementY" : 438.18,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 425.375,
+ "placementX" : 28.0,
+ "placementY" : 425.375,
+ "placementWidth" : 183.289,
+ "placementHeight" : 9.805,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 183.289,
+ "contentHeight" : 9.805,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 414.865,
+ "placementX" : 28.0,
+ "placementY" : 414.865,
+ "placementWidth" : 99.71,
+ "placementHeight" : 8.51,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 99.71,
+ "contentHeight" : 8.51,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 403.17,
+ "placementX" : 28.0,
+ "placementY" : 403.17,
+ "placementWidth" : 277.385,
+ "placementHeight" : 8.695,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 277.385,
+ "contentHeight" : 8.695,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]/SpacerNode[7]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 398.17,
+ "placementX" : 28.0,
+ "placementY" : 398.17,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]/ParagraphNode[8]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 385.365,
+ "placementX" : 28.0,
+ "placementY" : 385.365,
+ "placementWidth" : 175.063,
+ "placementHeight" : 9.805,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 175.063,
+ "contentHeight" : 9.805,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 374.855,
+ "placementX" : 28.0,
+ "placementY" : 374.855,
+ "placementWidth" : 73.112,
+ "placementHeight" : 8.51,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 73.112,
+ "contentHeight" : 8.51,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_2_Body[12]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 363.16,
+ "placementX" : 28.0,
+ "placementY" : 363.16,
+ "placementWidth" : 350.047,
+ "placementHeight" : 8.695,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 350.047,
+ "contentHeight" : 8.695,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_TitleRuleTop[13]",
+ "entityName" : "CvV2EditorialBlue_3_TitleRuleTop",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 13,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 354.16,
+ "placementX" : 28.0,
+ "placementY" : 354.16,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Title[14]",
+ "entityName" : "CvV2EditorialBlue_3_Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 14,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 331.985,
+ "placementX" : 28.0,
+ "placementY" : 331.985,
+ "placementWidth" : 59.29,
+ "placementHeight" : 22.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 59.29,
+ "contentHeight" : 22.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 7.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Title[14]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Title[14]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 336.985,
+ "placementX" : 28.0,
+ "placementY" : 336.985,
+ "placementWidth" : 59.29,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 59.29,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_TitleRuleBottom[15]",
+ "entityName" : "CvV2EditorialBlue_3_TitleRuleBottom",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 15,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 330.985,
+ "placementX" : 28.0,
+ "placementY" : 330.985,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]",
+ "entityName" : "CvV2EditorialBlue_3_Body",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 16,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 181.55,
+ "placementX" : 28.0,
+ "placementY" : 181.55,
+ "placementWidth" : 536.054,
+ "placementHeight" : 149.435,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 536.054,
+ "contentHeight" : 149.435,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 312.18,
+ "placementX" : 28.0,
+ "placementY" : 312.18,
+ "placementWidth" : 218.016,
+ "placementHeight" : 9.805,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 218.016,
+ "contentHeight" : 9.805,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 290.34,
+ "placementX" : 28.0,
+ "placementY" : 290.34,
+ "placementWidth" : 521.399,
+ "placementHeight" : 18.84,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 521.399,
+ "contentHeight" : 18.84,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]/SpacerNode[2]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 285.34,
+ "placementX" : 28.0,
+ "placementY" : 285.34,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 272.535,
+ "placementX" : 28.0,
+ "placementY" : 272.535,
+ "placementWidth" : 273.684,
+ "placementHeight" : 9.805,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 273.684,
+ "contentHeight" : 9.805,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 250.695,
+ "placementX" : 28.0,
+ "placementY" : 250.695,
+ "placementWidth" : 530.827,
+ "placementHeight" : 18.84,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 530.827,
+ "contentHeight" : 18.84,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]/SpacerNode[5]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 245.695,
+ "placementX" : 28.0,
+ "placementY" : 245.695,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 232.89,
+ "placementX" : 28.0,
+ "placementY" : 232.89,
+ "placementWidth" : 179.782,
+ "placementHeight" : 9.805,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 179.782,
+ "contentHeight" : 9.805,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 211.05,
+ "placementX" : 28.0,
+ "placementY" : 211.05,
+ "placementWidth" : 536.054,
+ "placementHeight" : 18.84,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 536.054,
+ "contentHeight" : 18.84,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]/SpacerNode[8]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 206.05,
+ "placementX" : 28.0,
+ "placementY" : 206.05,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 193.245,
+ "placementX" : 28.0,
+ "placementY" : 193.245,
+ "placementWidth" : 233.862,
+ "placementHeight" : 9.805,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 233.862,
+ "contentHeight" : 9.805,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_3_Body[16]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 181.55,
+ "placementX" : 28.0,
+ "placementY" : 181.55,
+ "placementWidth" : 527.631,
+ "placementHeight" : 8.695,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 527.631,
+ "contentHeight" : 8.695,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_TitleRuleTop[17]",
+ "entityName" : "CvV2EditorialBlue_4_TitleRuleTop",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 17,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 172.55,
+ "placementX" : 28.0,
+ "placementY" : 172.55,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Title[18]",
+ "entityName" : "CvV2EditorialBlue_4_Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 18,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 150.375,
+ "placementX" : 28.0,
+ "placementY" : 150.375,
+ "placementWidth" : 129.569,
+ "placementHeight" : 22.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 129.569,
+ "contentHeight" : 22.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 7.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Title[18]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Title[18]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 155.375,
+ "placementX" : 28.0,
+ "placementY" : 155.375,
+ "placementWidth" : 129.569,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 129.569,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_TitleRuleBottom[19]",
+ "entityName" : "CvV2EditorialBlue_4_TitleRuleBottom",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 19,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 149.375,
+ "placementX" : 28.0,
+ "placementY" : 149.375,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]",
+ "entityName" : "CvV2EditorialBlue_4_Body",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 20,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : -3.905,
+ "placementX" : 28.0,
+ "placementY" : -3.905,
+ "placementWidth" : 527.66,
+ "placementHeight" : 153.28,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 527.66,
+ "contentHeight" : 153.28,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 130.2,
+ "placementX" : 28.0,
+ "placementY" : 130.2,
+ "placementWidth" : 203.566,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 203.566,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 119.505,
+ "placementX" : 28.0,
+ "placementY" : 119.505,
+ "placementWidth" : 80.962,
+ "placementHeight" : 8.695,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 80.962,
+ "contentHeight" : 8.695,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 97.615,
+ "placementX" : 28.0,
+ "placementY" : 97.615,
+ "placementWidth" : 518.777,
+ "placementHeight" : 18.89,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 518.777,
+ "contentHeight" : 18.89,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 92.615,
+ "placementX" : 28.0,
+ "placementY" : 92.615,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 79.44,
+ "placementX" : 28.0,
+ "placementY" : 79.44,
+ "placementWidth" : 152.229,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 152.229,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 68.745,
+ "placementX" : 28.0,
+ "placementY" : 68.745,
+ "placementWidth" : 65.838,
+ "placementHeight" : 8.695,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 65.838,
+ "contentHeight" : 8.695,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 46.855,
+ "placementX" : 28.0,
+ "placementY" : 46.855,
+ "placementWidth" : 514.077,
+ "placementHeight" : 18.89,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 514.077,
+ "contentHeight" : 18.89,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]/SpacerNode[7]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 41.855,
+ "placementX" : 28.0,
+ "placementY" : 41.855,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]/ParagraphNode[8]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 28.68,
+ "placementX" : 28.0,
+ "placementY" : 28.68,
+ "placementWidth" : 151.624,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 151.624,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 803.195,
+ "placementX" : 28.0,
+ "placementY" : 803.195,
+ "placementWidth" : 57.453,
+ "placementHeight" : 8.695,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 57.453,
+ "contentHeight" : 8.695,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_4_Body[20]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 781.305,
+ "placementX" : 28.0,
+ "placementY" : 781.305,
+ "placementWidth" : 527.66,
+ "placementHeight" : 18.89,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 527.66,
+ "contentHeight" : 18.89,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_5_TitleRuleTop[21]",
+ "entityName" : "CvV2EditorialBlue_5_TitleRuleTop",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 21,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 772.305,
+ "placementX" : 28.0,
+ "placementY" : 772.305,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_5_Title[22]",
+ "entityName" : "CvV2EditorialBlue_5_Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 22,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 750.13,
+ "placementX" : 28.0,
+ "placementY" : 750.13,
+ "placementWidth" : 67.826,
+ "placementHeight" : 22.175,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 67.826,
+ "contentHeight" : 22.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 7.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_5_Title[22]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_5_Title[22]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 755.13,
+ "placementX" : 28.0,
+ "placementY" : 755.13,
+ "placementWidth" : 67.826,
+ "placementHeight" : 10.175,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 67.826,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_5_TitleRuleBottom[23]",
+ "entityName" : "CvV2EditorialBlue_5_TitleRuleBottom",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 23,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 749.13,
+ "placementX" : 28.0,
+ "placementY" : 749.13,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_5_Body[24]",
+ "entityName" : "CvV2EditorialBlue_5_Body",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 24,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 696.35,
+ "placementX" : 28.0,
+ "placementY" : 696.35,
+ "placementWidth" : 374.045,
+ "placementHeight" : 52.78,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 374.045,
+ "contentHeight" : 52.78,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_5_Body[24]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_5_Body[24]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 731.435,
+ "placementX" : 28.0,
+ "placementY" : 731.435,
+ "placementWidth" : 292.528,
+ "placementHeight" : 8.695,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 292.528,
+ "contentHeight" : 8.695,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_5_Body[24]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_5_Body[24]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 719.74,
+ "placementX" : 28.0,
+ "placementY" : 719.74,
+ "placementWidth" : 227.771,
+ "placementHeight" : 8.695,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 227.771,
+ "contentHeight" : 8.695,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_5_Body[24]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_5_Body[24]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 708.045,
+ "placementX" : 28.0,
+ "placementY" : 708.045,
+ "placementWidth" : 374.045,
+ "placementHeight" : 8.695,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 374.045,
+ "contentHeight" : 8.695,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_5_Body[24]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlue_5_Body[24]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 696.35,
+ "placementX" : 28.0,
+ "placementY" : 696.35,
+ "placementWidth" : 368.32,
+ "placementHeight" : 8.695,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 368.32,
+ "contentHeight" : 8.695,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlueFooterRule[25]",
+ "entityName" : "CvV2EditorialBlueFooterRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 25,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 689.35,
+ "placementX" : 28.0,
+ "placementY" : 689.35,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 6.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlueFooter[26]",
+ "entityName" : "CvV2EditorialBlueFooter",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]",
+ "childIndex" : 26,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 677.58,
+ "placementX" : 28.0,
+ "placementY" : 677.58,
+ "placementWidth" : 539.276,
+ "placementHeight" : 11.77,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 11.77,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlueFooter[26]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EditorialBlueRoot[0]/CvV2EditorialBlueFooter[26]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 677.58,
+ "placementX" : 28.0,
+ "placementY" : 677.58,
+ "placementWidth" : 539.276,
+ "placementHeight" : 7.77,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 7.77,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/engineering_resume_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/engineering_resume_layout.json
new file mode 100644
index 000000000..0237dc792
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/engineering_resume_layout.json
@@ -0,0 +1,1817 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 555.276,
+ "innerHeight" : 801.89,
+ "margin" : {
+ "top" : 20.0,
+ "right" : 20.0,
+ "bottom" : 20.0,
+ "left" : 20.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CvV2EngineeringResumeRoot[0]",
+ "entityName" : "CvV2EngineeringResumeRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 20.0,
+ "computedY" : 346.37,
+ "placementX" : 20.0,
+ "placementY" : 346.37,
+ "placementWidth" : 555.276,
+ "placementHeight" : 475.52,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 475.52,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]",
+ "entityName" : "CvV2EngineeringResumeHeader",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 20.0,
+ "computedY" : 744.69,
+ "placementX" : 20.0,
+ "placementY" : 744.69,
+ "placementWidth" : 555.276,
+ "placementHeight" : 77.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 77.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 13.0,
+ "right" : 15.0,
+ "bottom" : 13.0,
+ "left" : 15.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]",
+ "entityName" : "CvV2EngineeringResumeHeaderRow",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 35.0,
+ "computedY" : 757.69,
+ "placementX" : 35.0,
+ "placementY" : 757.69,
+ "placementWidth" : 525.276,
+ "placementHeight" : 51.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 525.276,
+ "contentHeight" : 51.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]/CvV2EngineeringResumeIdentity[0]",
+ "entityName" : "CvV2EngineeringResumeIdentity",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 35.0,
+ "computedY" : 767.37,
+ "placementX" : 35.0,
+ "placementY" : 767.37,
+ "placementWidth" : 179.83,
+ "placementHeight" : 41.52,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 179.83,
+ "contentHeight" : 41.52,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]/CvV2EngineeringResumeIdentity[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]/CvV2EngineeringResumeIdentity[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 35.0,
+ "computedY" : 779.49,
+ "placementX" : 35.0,
+ "placementY" : 779.49,
+ "placementWidth" : 179.83,
+ "placementHeight" : 29.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 179.83,
+ "contentHeight" : 29.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]/CvV2EngineeringResumeIdentity[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]/CvV2EngineeringResumeIdentity[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 35.0,
+ "computedY" : 767.37,
+ "placementX" : 35.0,
+ "placementY" : 767.37,
+ "placementWidth" : 80.347,
+ "placementHeight" : 9.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 80.347,
+ "contentHeight" : 9.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]/CvV2EngineeringResumeContact[1]",
+ "entityName" : "CvV2EngineeringResumeContact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 342.133,
+ "computedY" : 757.69,
+ "placementX" : 342.133,
+ "placementY" : 757.69,
+ "placementWidth" : 218.142,
+ "placementHeight" : 51.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 218.142,
+ "contentHeight" : 51.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]/CvV2EngineeringResumeContact[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]/CvV2EngineeringResumeContact[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 342.133,
+ "computedY" : 800.25,
+ "placementX" : 342.133,
+ "placementY" : 800.25,
+ "placementWidth" : 218.142,
+ "placementHeight" : 8.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 218.142,
+ "contentHeight" : 8.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]/CvV2EngineeringResumeContact[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]/CvV2EngineeringResumeContact[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 342.133,
+ "computedY" : 789.61,
+ "placementX" : 342.133,
+ "placementY" : 789.61,
+ "placementWidth" : 218.142,
+ "placementHeight" : 8.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 218.142,
+ "contentHeight" : 8.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]/CvV2EngineeringResumeContact[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]/CvV2EngineeringResumeContact[1]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 342.133,
+ "computedY" : 778.97,
+ "placementX" : 342.133,
+ "placementY" : 778.97,
+ "placementWidth" : 218.142,
+ "placementHeight" : 8.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 218.142,
+ "contentHeight" : 8.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]/CvV2EngineeringResumeContact[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]/CvV2EngineeringResumeContact[1]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 342.133,
+ "computedY" : 768.33,
+ "placementX" : 342.133,
+ "placementY" : 768.33,
+ "placementWidth" : 218.142,
+ "placementHeight" : 8.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 218.142,
+ "contentHeight" : 8.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]/CvV2EngineeringResumeContact[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeHeader[0]/CvV2EngineeringResumeHeaderRow[0]/CvV2EngineeringResumeContact[1]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 342.133,
+ "computedY" : 757.69,
+ "placementX" : 342.133,
+ "placementY" : 757.69,
+ "placementWidth" : 218.142,
+ "placementHeight" : 8.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 218.142,
+ "contentHeight" : 8.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]",
+ "entityName" : "CvV2EngineeringResumeBody",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 20.0,
+ "computedY" : 346.37,
+ "placementX" : 20.0,
+ "placementY" : 346.37,
+ "placementWidth" : 555.276,
+ "placementHeight" : 390.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 555.276,
+ "contentHeight" : 390.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]",
+ "entityName" : "CvV2EngineeringResumeRail",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 20.0,
+ "computedY" : 406.27,
+ "placementX" : 20.0,
+ "placementY" : 406.27,
+ "placementWidth" : 168.661,
+ "placementHeight" : 330.42,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 168.661,
+ "contentHeight" : 330.42,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 10.0,
+ "right" : 10.0,
+ "bottom" : 11.0,
+ "left" : 10.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]",
+ "entityName" : "CvV2EngineeringResumeSkills",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 30.0,
+ "computedY" : 548.91,
+ "placementX" : 30.0,
+ "placementY" : 548.91,
+ "placementWidth" : 148.661,
+ "placementHeight" : 177.78,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 148.661,
+ "contentHeight" : 177.78,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 717.81,
+ "placementX" : 30.0,
+ "placementY" : 717.81,
+ "placementWidth" : 42.269,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 42.269,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]/LineNode[1]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 713.81,
+ "placementX" : 30.0,
+ "placementY" : 713.81,
+ "placementWidth" : 82.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 82.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 700.47,
+ "placementX" : 30.0,
+ "placementY" : 700.47,
+ "placementWidth" : 148.661,
+ "placementHeight" : 8.34,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 148.661,
+ "contentHeight" : 8.34,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.8,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 668.65,
+ "placementX" : 30.0,
+ "placementY" : 668.65,
+ "placementWidth" : 132.272,
+ "placementHeight" : 27.02,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 132.272,
+ "contentHeight" : 27.02,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.8,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 636.83,
+ "placementX" : 30.0,
+ "placementY" : 636.83,
+ "placementWidth" : 145.575,
+ "placementHeight" : 27.02,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 145.575,
+ "contentHeight" : 27.02,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.8,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 614.35,
+ "placementX" : 30.0,
+ "placementY" : 614.35,
+ "placementWidth" : 140.89,
+ "placementHeight" : 17.68,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 140.89,
+ "contentHeight" : 17.68,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.8,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 582.53,
+ "placementX" : 30.0,
+ "placementY" : 582.53,
+ "placementWidth" : 139.577,
+ "placementHeight" : 27.02,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 139.577,
+ "contentHeight" : 27.02,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.8,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeSkills[0]",
+ "childIndex" : 7,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 550.71,
+ "placementX" : 30.0,
+ "placementY" : 550.71,
+ "placementWidth" : 144.087,
+ "placementHeight" : 27.02,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 144.087,
+ "contentHeight" : 27.02,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.8,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeEducation[1]",
+ "entityName" : "CvV2EngineeringResumeEducation",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 30.0,
+ "computedY" : 485.11,
+ "placementX" : 30.0,
+ "placementY" : 485.11,
+ "placementWidth" : 120.11,
+ "placementHeight" : 55.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 120.11,
+ "contentHeight" : 55.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeEducation[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeEducation[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 532.03,
+ "placementX" : 30.0,
+ "placementY" : 532.03,
+ "placementWidth" : 34.38,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 34.38,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeEducation[1]/LineNode[1]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeEducation[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 528.03,
+ "placementX" : 30.0,
+ "placementY" : 528.03,
+ "placementWidth" : 82.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 82.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeEducation[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeEducation[1]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 514.69,
+ "placementX" : 30.0,
+ "placementY" : 514.69,
+ "placementWidth" : 111.951,
+ "placementHeight" : 8.34,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 111.951,
+ "contentHeight" : 8.34,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.3,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeEducation[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeEducation[1]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 501.05,
+ "placementX" : 30.0,
+ "placementY" : 501.05,
+ "placementWidth" : 120.11,
+ "placementHeight" : 8.34,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 120.11,
+ "contentHeight" : 8.34,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.3,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeEducation[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeEducation[1]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 487.41,
+ "placementX" : 30.0,
+ "placementY" : 487.41,
+ "placementWidth" : 116.329,
+ "placementHeight" : 8.34,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 116.329,
+ "contentHeight" : 8.34,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.3,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeAdditional[2]",
+ "entityName" : "CvV2EngineeringResumeAdditional",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 30.0,
+ "computedY" : 417.27,
+ "placementX" : 30.0,
+ "placementY" : 417.27,
+ "placementWidth" : 140.974,
+ "placementHeight" : 59.84,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 140.974,
+ "contentHeight" : 59.84,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeAdditional[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeAdditional[2]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 468.23,
+ "placementX" : 30.0,
+ "placementY" : 468.23,
+ "placementWidth" : 28.771,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 28.771,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeAdditional[2]/LineNode[1]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeAdditional[2]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 464.23,
+ "placementX" : 30.0,
+ "placementY" : 464.23,
+ "placementWidth" : 82.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 82.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeAdditional[2]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeAdditional[2]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 441.55,
+ "placementX" : 30.0,
+ "placementY" : 441.55,
+ "placementWidth" : 110.039,
+ "placementHeight" : 17.68,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 110.039,
+ "contentHeight" : 17.68,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.8,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeAdditional[2]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeRail[0]/CvV2EngineeringResumeAdditional[2]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 419.07,
+ "placementX" : 30.0,
+ "placementY" : 419.07,
+ "placementWidth" : 140.974,
+ "placementHeight" : 17.68,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 140.974,
+ "contentHeight" : 17.68,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.8,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]",
+ "entityName" : "CvV2EngineeringResumeMain",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 205.404,
+ "computedY" : 346.37,
+ "placementX" : 205.404,
+ "placementY" : 346.37,
+ "placementWidth" : 369.235,
+ "placementHeight" : 390.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 369.235,
+ "contentHeight" : 390.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProfile[0]",
+ "entityName" : "CvV2EngineeringResumeProfile",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 205.404,
+ "computedY" : 676.79,
+ "placementX" : 205.404,
+ "placementY" : 676.79,
+ "placementWidth" : 368.68,
+ "placementHeight" : 59.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 368.68,
+ "contentHeight" : 59.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 10.0,
+ "bottom" : 8.0,
+ "left" : 10.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProfile[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProfile[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 215.404,
+ "computedY" : 719.09,
+ "placementX" : 215.404,
+ "placementY" : 719.09,
+ "placementWidth" : 80.976,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 80.976,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProfile[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProfile[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 215.404,
+ "computedY" : 684.79,
+ "placementX" : 215.404,
+ "placementY" : 684.79,
+ "placementWidth" : 348.68,
+ "placementHeight" : 30.3,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 348.68,
+ "contentHeight" : 30.3,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]",
+ "entityName" : "CvV2EngineeringResumeExperience",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 205.404,
+ "computedY" : 513.91,
+ "placementX" : 205.404,
+ "placementY" : 513.91,
+ "placementWidth" : 369.235,
+ "placementHeight" : 154.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 369.235,
+ "contentHeight" : 154.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 205.404,
+ "computedY" : 659.43,
+ "placementX" : 205.404,
+ "placementY" : 659.43,
+ "placementWidth" : 90.792,
+ "placementHeight" : 9.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 90.792,
+ "contentHeight" : 9.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]/LineNode[1]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 205.404,
+ "computedY" : 653.43,
+ "placementX" : 205.404,
+ "placementY" : 653.43,
+ "placementWidth" : 176.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 176.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]/CvV2EngineeringResumeRoleCard[2]",
+ "entityName" : "CvV2EngineeringResumeRoleCard",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 205.404,
+ "computedY" : 583.17,
+ "placementX" : 205.404,
+ "placementY" : 583.17,
+ "placementWidth" : 369.235,
+ "placementHeight" : 64.26,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 369.235,
+ "contentHeight" : 64.26,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 6.0,
+ "right" : 8.0,
+ "bottom" : 6.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]/CvV2EngineeringResumeRoleCard[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]/CvV2EngineeringResumeRoleCard[2]",
+ "childIndex" : 0,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 213.404,
+ "computedY" : 631.83,
+ "placementX" : 213.404,
+ "placementY" : 631.83,
+ "placementWidth" : 139.507,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 139.507,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]/CvV2EngineeringResumeRoleCard[2]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]/CvV2EngineeringResumeRoleCard[2]",
+ "childIndex" : 1,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 213.404,
+ "computedY" : 620.43,
+ "placementX" : 213.404,
+ "placementY" : 620.43,
+ "placementWidth" : 60.529,
+ "placementHeight" : 8.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 60.529,
+ "contentHeight" : 8.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]/CvV2EngineeringResumeRoleCard[2]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]/CvV2EngineeringResumeRoleCard[2]",
+ "childIndex" : 2,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 213.404,
+ "computedY" : 589.17,
+ "placementX" : 213.404,
+ "placementY" : 589.17,
+ "placementWidth" : 353.235,
+ "placementHeight" : 28.26,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 353.235,
+ "contentHeight" : 28.26,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]/CvV2EngineeringResumeRoleCard[3]",
+ "entityName" : "CvV2EngineeringResumeRoleCard",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 205.404,
+ "computedY" : 513.91,
+ "placementX" : 205.404,
+ "placementY" : 513.91,
+ "placementWidth" : 360.179,
+ "placementHeight" : 64.26,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 360.179,
+ "contentHeight" : 64.26,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 6.0,
+ "right" : 8.0,
+ "bottom" : 6.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]/CvV2EngineeringResumeRoleCard[3]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]/CvV2EngineeringResumeRoleCard[3]",
+ "childIndex" : 0,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 213.404,
+ "computedY" : 562.57,
+ "placementX" : 213.404,
+ "placementY" : 562.57,
+ "placementWidth" : 108.288,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 108.288,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]/CvV2EngineeringResumeRoleCard[3]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]/CvV2EngineeringResumeRoleCard[3]",
+ "childIndex" : 1,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 213.404,
+ "computedY" : 551.17,
+ "placementX" : 213.404,
+ "placementY" : 551.17,
+ "placementWidth" : 47.866,
+ "placementHeight" : 8.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 47.866,
+ "contentHeight" : 8.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]/CvV2EngineeringResumeRoleCard[3]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeExperience[1]/CvV2EngineeringResumeRoleCard[3]",
+ "childIndex" : 2,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 213.404,
+ "computedY" : 519.91,
+ "placementX" : 213.404,
+ "placementY" : 519.91,
+ "placementWidth" : 344.179,
+ "placementHeight" : 28.26,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 344.179,
+ "contentHeight" : 28.26,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]",
+ "entityName" : "CvV2EngineeringResumeProjects",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 205.404,
+ "computedY" : 346.37,
+ "placementX" : 205.404,
+ "placementY" : 346.37,
+ "placementWidth" : 366.597,
+ "placementHeight" : 159.54,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 366.597,
+ "contentHeight" : 159.54,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 205.404,
+ "computedY" : 496.55,
+ "placementX" : 205.404,
+ "placementY" : 496.55,
+ "placementWidth" : 77.314,
+ "placementHeight" : 9.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 77.314,
+ "contentHeight" : 9.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]/LineNode[1]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 205.404,
+ "computedY" : 490.55,
+ "placementX" : 205.404,
+ "placementY" : 490.55,
+ "placementWidth" : 176.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 176.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]/CvV2EngineeringResumeProjectCard[2]",
+ "entityName" : "CvV2EngineeringResumeProjectCard",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 205.404,
+ "computedY" : 446.57,
+ "placementX" : 205.404,
+ "placementY" : 446.57,
+ "placementWidth" : 364.603,
+ "placementHeight" : 37.98,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 364.603,
+ "contentHeight" : 37.98,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 5.0,
+ "right" : 8.0,
+ "bottom" : 5.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]/CvV2EngineeringResumeProjectCard[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]/CvV2EngineeringResumeProjectCard[2]",
+ "childIndex" : 0,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 213.404,
+ "computedY" : 451.57,
+ "placementX" : 213.404,
+ "placementY" : 451.57,
+ "placementWidth" : 348.603,
+ "placementHeight" : 27.98,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 348.603,
+ "contentHeight" : 27.98,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]/CvV2EngineeringResumeProjectCard[3]",
+ "entityName" : "CvV2EngineeringResumeProjectCard",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 205.404,
+ "computedY" : 413.17,
+ "placementX" : 205.404,
+ "placementY" : 413.17,
+ "placementWidth" : 354.258,
+ "placementHeight" : 28.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 354.258,
+ "contentHeight" : 28.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 5.0,
+ "right" : 8.0,
+ "bottom" : 5.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]/CvV2EngineeringResumeProjectCard[3]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]/CvV2EngineeringResumeProjectCard[3]",
+ "childIndex" : 0,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 213.404,
+ "computedY" : 418.17,
+ "placementX" : 213.404,
+ "placementY" : 418.17,
+ "placementWidth" : 338.258,
+ "placementHeight" : 18.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 338.258,
+ "contentHeight" : 18.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]/CvV2EngineeringResumeProjectCard[4]",
+ "entityName" : "CvV2EngineeringResumeProjectCard",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 205.404,
+ "computedY" : 379.77,
+ "placementX" : 205.404,
+ "placementY" : 379.77,
+ "placementWidth" : 366.597,
+ "placementHeight" : 28.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 366.597,
+ "contentHeight" : 28.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 5.0,
+ "right" : 8.0,
+ "bottom" : 5.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]/CvV2EngineeringResumeProjectCard[4]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]/CvV2EngineeringResumeProjectCard[4]",
+ "childIndex" : 0,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 213.404,
+ "computedY" : 384.77,
+ "placementX" : 213.404,
+ "placementY" : 384.77,
+ "placementWidth" : 350.597,
+ "placementHeight" : 18.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 350.597,
+ "contentHeight" : 18.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]/CvV2EngineeringResumeProjectCard[5]",
+ "entityName" : "CvV2EngineeringResumeProjectCard",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 205.404,
+ "computedY" : 346.37,
+ "placementX" : 205.404,
+ "placementY" : 346.37,
+ "placementWidth" : 321.028,
+ "placementHeight" : 28.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 321.028,
+ "contentHeight" : 28.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 5.0,
+ "right" : 8.0,
+ "bottom" : 5.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]/CvV2EngineeringResumeProjectCard[5]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2EngineeringResumeRoot[0]/CvV2EngineeringResumeBody[1]/CvV2EngineeringResumeMain[1]/CvV2EngineeringResumeProjects[2]/CvV2EngineeringResumeProjectCard[5]",
+ "childIndex" : 0,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 213.404,
+ "computedY" : 351.37,
+ "placementX" : 213.404,
+ "placementY" : 351.37,
+ "placementWidth" : 305.028,
+ "placementHeight" : 18.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 305.028,
+ "contentHeight" : 18.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/executive_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/executive_layout.json
new file mode 100644
index 000000000..9478f7a87
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/executive_layout.json
@@ -0,0 +1,2657 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 539.276,
+ "innerHeight" : 785.89,
+ "margin" : {
+ "top" : 28.0,
+ "right" : 28.0,
+ "bottom" : 28.0,
+ "left" : 28.0
+ }
+ },
+ "totalPages" : 2,
+ "nodes" : [ {
+ "path" : "CvV2ExecutiveRoot[0]",
+ "entityName" : "CvV2ExecutiveRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 28.0,
+ "computedY" : -200.25,
+ "placementX" : 28.0,
+ "placementY" : -200.25,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1014.14,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1014.14,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveHeader[0]",
+ "entityName" : "CvV2ExecutiveHeader",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 742.87,
+ "placementX" : 28.0,
+ "placementY" : 742.87,
+ "placementWidth" : 539.276,
+ "placementHeight" : 71.02,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 71.02,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveHeader[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 780.29,
+ "placementX" : 28.0,
+ "placementY" : 780.29,
+ "placementWidth" : 193.224,
+ "placementHeight" : 33.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 193.224,
+ "contentHeight" : 33.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveHeader[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 765.37,
+ "placementX" : 28.0,
+ "placementY" : 765.37,
+ "placementWidth" : 129.921,
+ "placementHeight" : 10.92,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 129.921,
+ "contentHeight" : 10.92,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveHeader[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveHeader[0]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 750.97,
+ "placementX" : 28.0,
+ "placementY" : 750.97,
+ "placementWidth" : 195.957,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 195.957,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveHeader[0]/CvV2ExecutiveHeaderRule[3]",
+ "entityName" : "CvV2ExecutiveHeaderRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveHeader[0]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 742.87,
+ "placementX" : 28.0,
+ "placementY" : 742.87,
+ "placementWidth" : 539.276,
+ "placementHeight" : 1.1,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 1.1,
+ "margin" : {
+ "top" : 5.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_0[1]",
+ "entityName" : "CvV2ExecutiveTitle_0",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 709.75,
+ "placementX" : 28.0,
+ "placementY" : 709.75,
+ "placementWidth" : 138.834,
+ "placementHeight" : 25.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 138.834,
+ "contentHeight" : 25.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_0[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_0[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 711.75,
+ "placementX" : 28.0,
+ "placementY" : 711.75,
+ "placementWidth" : 138.834,
+ "placementHeight" : 15.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 138.834,
+ "contentHeight" : 15.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_0[2]",
+ "entityName" : "CvV2ExecutiveBody_0",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 663.05,
+ "placementX" : 28.0,
+ "placementY" : 663.05,
+ "placementWidth" : 522.358,
+ "placementHeight" : 38.7,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 522.358,
+ "contentHeight" : 38.7,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_0[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_0[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 663.05,
+ "placementX" : 28.0,
+ "placementY" : 663.05,
+ "placementWidth" : 522.358,
+ "placementHeight" : 36.7,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 522.358,
+ "contentHeight" : 36.7,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_1[3]",
+ "entityName" : "CvV2ExecutiveTitle_1",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]",
+ "childIndex" : 3,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 629.93,
+ "placementX" : 28.0,
+ "placementY" : 629.93,
+ "placementWidth" : 97.589,
+ "placementHeight" : 25.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 97.589,
+ "contentHeight" : 25.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_1[3]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_1[3]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 631.93,
+ "placementX" : 28.0,
+ "placementY" : 631.93,
+ "placementWidth" : 97.589,
+ "placementHeight" : 15.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 97.589,
+ "contentHeight" : 15.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_1[4]",
+ "entityName" : "CvV2ExecutiveBody_1",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]",
+ "childIndex" : 4,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 526.53,
+ "placementX" : 28.0,
+ "placementY" : 526.53,
+ "placementWidth" : 450.386,
+ "placementHeight" : 95.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 450.386,
+ "contentHeight" : 95.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_1[4]/ListNode[0]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_1[4]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 608.53,
+ "placementX" : 28.0,
+ "placementY" : 608.53,
+ "placementWidth" : 211.09,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 211.09,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_1[4]/ListNode[1]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_1[4]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 592.13,
+ "placementX" : 28.0,
+ "placementY" : 592.13,
+ "placementWidth" : 450.386,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 450.386,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_1[4]/ListNode[2]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_1[4]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 575.73,
+ "placementX" : 28.0,
+ "placementY" : 575.73,
+ "placementWidth" : 446.89,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 446.89,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_1[4]/ListNode[3]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_1[4]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 559.33,
+ "placementX" : 28.0,
+ "placementY" : 559.33,
+ "placementWidth" : 389.453,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 389.453,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_1[4]/ListNode[4]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_1[4]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 542.93,
+ "placementX" : 28.0,
+ "placementY" : 542.93,
+ "placementWidth" : 422.0,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 422.0,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_1[4]/ListNode[5]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_1[4]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 526.53,
+ "placementX" : 28.0,
+ "placementY" : 526.53,
+ "placementWidth" : 420.888,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 420.888,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_2[5]",
+ "entityName" : "CvV2ExecutiveTitle_2",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]",
+ "childIndex" : 5,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 493.41,
+ "placementX" : 28.0,
+ "placementY" : 493.41,
+ "placementWidth" : 165.661,
+ "placementHeight" : 25.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 165.661,
+ "contentHeight" : 25.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_2[5]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_2[5]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 495.41,
+ "placementX" : 28.0,
+ "placementY" : 495.41,
+ "placementWidth" : 165.661,
+ "placementHeight" : 15.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 165.661,
+ "contentHeight" : 15.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]",
+ "entityName" : "CvV2ExecutiveBody_2",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]",
+ "childIndex" : 6,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 342.61,
+ "placementX" : 28.0,
+ "placementY" : 342.61,
+ "placementWidth" : 539.276,
+ "placementHeight" : 142.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 142.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[0]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 474.01,
+ "placementX" : 28.0,
+ "placementY" : 474.01,
+ "placementWidth" : 539.276,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[0]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 474.01,
+ "placementX" : 28.0,
+ "placementY" : 474.01,
+ "placementWidth" : 98.296,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.296,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[0]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[0]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 474.01,
+ "placementX" : 28.0,
+ "placementY" : 474.01,
+ "placementWidth" : 98.296,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.296,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[0]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 402.397,
+ "computedY" : 474.01,
+ "placementX" : 402.397,
+ "placementY" : 474.01,
+ "placementWidth" : 164.879,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[0]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[0]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 402.397,
+ "computedY" : 474.01,
+ "placementX" : 402.397,
+ "placementY" : 474.01,
+ "placementWidth" : 164.879,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 460.21,
+ "placementX" : 28.0,
+ "placementY" : 460.21,
+ "placementWidth" : 94.158,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 94.158,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 443.81,
+ "placementX" : 28.0,
+ "placementY" : 443.81,
+ "placementWidth" : 348.935,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 348.935,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 437.81,
+ "placementX" : 28.0,
+ "placementY" : 437.81,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[4]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 423.41,
+ "placementX" : 28.0,
+ "placementY" : 423.41,
+ "placementWidth" : 539.276,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[4]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[4]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 423.41,
+ "placementX" : 28.0,
+ "placementY" : 423.41,
+ "placementWidth" : 109.45,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 109.45,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[4]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[4]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 423.41,
+ "placementX" : 28.0,
+ "placementY" : 423.41,
+ "placementWidth" : 109.45,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 109.45,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[4]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[4]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 402.397,
+ "computedY" : 423.41,
+ "placementX" : 402.397,
+ "placementY" : 423.41,
+ "placementWidth" : 164.879,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[4]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[4]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 402.397,
+ "computedY" : 423.41,
+ "placementX" : 402.397,
+ "placementY" : 423.41,
+ "placementWidth" : 164.879,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 409.61,
+ "placementX" : 28.0,
+ "placementY" : 409.61,
+ "placementWidth" : 89.793,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 89.793,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 393.21,
+ "placementX" : 28.0,
+ "placementY" : 393.21,
+ "placementWidth" : 272.422,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 272.422,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/SpacerNode[7]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 387.21,
+ "placementX" : 28.0,
+ "placementY" : 387.21,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[8]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 372.81,
+ "placementX" : 28.0,
+ "placementY" : 372.81,
+ "placementWidth" : 539.276,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[8]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[8]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 372.81,
+ "placementX" : 28.0,
+ "placementY" : 372.81,
+ "placementWidth" : 104.282,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 104.282,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[8]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[8]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 372.81,
+ "placementX" : 28.0,
+ "placementY" : 372.81,
+ "placementWidth" : 104.282,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 104.282,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[8]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[8]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 402.397,
+ "computedY" : 372.81,
+ "placementX" : 402.397,
+ "placementY" : 372.81,
+ "placementWidth" : 164.879,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[8]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/CvV2EntryHeader[8]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 402.397,
+ "computedY" : 372.81,
+ "placementX" : 402.397,
+ "placementY" : 372.81,
+ "placementWidth" : 164.879,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 359.01,
+ "placementX" : 28.0,
+ "placementY" : 359.01,
+ "placementWidth" : 66.681,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 66.681,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_2[6]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 342.61,
+ "placementX" : 28.0,
+ "placementY" : 342.61,
+ "placementWidth" : 349.334,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 349.334,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_3[7]",
+ "entityName" : "CvV2ExecutiveTitle_3",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]",
+ "childIndex" : 7,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 309.49,
+ "placementX" : 28.0,
+ "placementY" : 309.49,
+ "placementWidth" : 55.609,
+ "placementHeight" : 25.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 55.609,
+ "contentHeight" : 25.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_3[7]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_3[7]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 311.49,
+ "placementX" : 28.0,
+ "placementY" : 311.49,
+ "placementWidth" : 55.609,
+ "placementHeight" : 15.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 55.609,
+ "contentHeight" : 15.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_3[8]",
+ "entityName" : "CvV2ExecutiveBody_3",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]",
+ "childIndex" : 8,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 125.34,
+ "placementX" : 28.0,
+ "placementY" : 125.34,
+ "placementWidth" : 538.014,
+ "placementHeight" : 176.15,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 538.014,
+ "contentHeight" : 176.15,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_3[8]/ListNode[0]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_3[8]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 261.04,
+ "placementX" : 28.0,
+ "placementY" : 261.04,
+ "placementWidth" : 527.488,
+ "placementHeight" : 38.45,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 527.488,
+ "contentHeight" : 38.45,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_3[8]/SpacerNode[1]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_3[8]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 255.04,
+ "placementX" : 28.0,
+ "placementY" : 255.04,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_3[8]/ListNode[2]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_3[8]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 211.59,
+ "placementX" : 28.0,
+ "placementY" : 211.59,
+ "placementWidth" : 537.786,
+ "placementHeight" : 38.45,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 537.786,
+ "contentHeight" : 38.45,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_3[8]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_3[8]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 205.59,
+ "placementX" : 28.0,
+ "placementY" : 205.59,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_3[8]/ListNode[4]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_3[8]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 162.14,
+ "placementX" : 28.0,
+ "placementY" : 162.14,
+ "placementWidth" : 534.204,
+ "placementHeight" : 38.45,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 534.204,
+ "contentHeight" : 38.45,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_3[8]/SpacerNode[5]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_3[8]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 156.14,
+ "placementX" : 28.0,
+ "placementY" : 156.14,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_3[8]/ListNode[6]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_3[8]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 125.34,
+ "placementX" : 28.0,
+ "placementY" : 125.34,
+ "placementWidth" : 538.014,
+ "placementHeight" : 25.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 538.014,
+ "contentHeight" : 25.8,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_4[9]",
+ "entityName" : "CvV2ExecutiveTitle_4",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]",
+ "childIndex" : 9,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 92.22,
+ "placementX" : 28.0,
+ "placementY" : 92.22,
+ "placementWidth" : 146.912,
+ "placementHeight" : 25.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 146.912,
+ "contentHeight" : 25.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_4[9]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_4[9]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 94.22,
+ "placementX" : 28.0,
+ "placementY" : 94.22,
+ "placementWidth" : 146.912,
+ "placementHeight" : 15.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 146.912,
+ "contentHeight" : 15.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]",
+ "entityName" : "CvV2ExecutiveBody_4",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]",
+ "childIndex" : 10,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : -96.53,
+ "placementX" : 28.0,
+ "placementY" : -96.53,
+ "placementWidth" : 539.276,
+ "placementHeight" : 180.75,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 180.75,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[0]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 72.82,
+ "placementX" : 28.0,
+ "placementY" : 72.82,
+ "placementWidth" : 539.276,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[0]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 72.82,
+ "placementX" : 28.0,
+ "placementY" : 72.82,
+ "placementWidth" : 105.963,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 105.963,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[0]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[0]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 72.82,
+ "placementX" : 28.0,
+ "placementY" : 72.82,
+ "placementWidth" : 105.963,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 105.963,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[0]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 402.397,
+ "computedY" : 72.82,
+ "placementX" : 402.397,
+ "placementY" : 72.82,
+ "placementWidth" : 164.879,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[0]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[0]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 402.397,
+ "computedY" : 72.82,
+ "placementX" : 402.397,
+ "placementY" : 72.82,
+ "placementWidth" : 164.879,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.879,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 59.02,
+ "placementX" : 28.0,
+ "placementY" : 59.02,
+ "placementWidth" : 72.999,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 72.999,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 29.97,
+ "placementX" : 28.0,
+ "placementY" : 29.97,
+ "placementWidth" : 514.881,
+ "placementHeight" : 24.05,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 514.881,
+ "contentHeight" : 24.05,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 807.89,
+ "placementX" : 28.0,
+ "placementY" : 807.89,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[4]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 793.49,
+ "placementX" : 28.0,
+ "placementY" : 793.49,
+ "placementWidth" : 539.276,
+ "placementHeight" : 11.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[4]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[4]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 793.49,
+ "placementX" : 28.0,
+ "placementY" : 793.49,
+ "placementWidth" : 78.299,
+ "placementHeight" : 11.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 78.299,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[4]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[4]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 793.49,
+ "placementX" : 28.0,
+ "placementY" : 793.49,
+ "placementWidth" : 78.299,
+ "placementHeight" : 11.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 78.299,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[4]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[4]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 402.397,
+ "computedY" : 793.49,
+ "placementX" : 402.397,
+ "placementY" : 793.49,
+ "placementWidth" : 164.879,
+ "placementHeight" : 11.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 164.879,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[4]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[4]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 402.397,
+ "computedY" : 793.49,
+ "placementX" : 402.397,
+ "placementY" : 793.49,
+ "placementWidth" : 164.879,
+ "placementHeight" : 11.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 164.879,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 779.69,
+ "placementX" : 28.0,
+ "placementY" : 779.69,
+ "placementWidth" : 58.32,
+ "placementHeight" : 10.8,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 58.32,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 750.64,
+ "placementX" : 28.0,
+ "placementY" : 750.64,
+ "placementWidth" : 538.745,
+ "placementHeight" : 24.05,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 538.745,
+ "contentHeight" : 24.05,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/SpacerNode[7]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 744.64,
+ "placementX" : 28.0,
+ "placementY" : 744.64,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[8]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 730.24,
+ "placementX" : 28.0,
+ "placementY" : 730.24,
+ "placementWidth" : 539.276,
+ "placementHeight" : 11.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 539.276,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[8]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[8]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 730.24,
+ "placementX" : 28.0,
+ "placementY" : 730.24,
+ "placementWidth" : 76.181,
+ "placementHeight" : 11.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 76.181,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[8]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[8]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 730.24,
+ "placementX" : 28.0,
+ "placementY" : 730.24,
+ "placementWidth" : 76.181,
+ "placementHeight" : 11.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 76.181,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[8]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[8]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 402.397,
+ "computedY" : 730.24,
+ "placementX" : 402.397,
+ "placementY" : 730.24,
+ "placementWidth" : 164.879,
+ "placementHeight" : 11.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 164.879,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[8]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/CvV2EntryHeader[8]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 402.397,
+ "computedY" : 730.24,
+ "placementX" : 402.397,
+ "placementY" : 730.24,
+ "placementWidth" : 164.879,
+ "placementHeight" : 11.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 164.879,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 716.44,
+ "placementX" : 28.0,
+ "placementY" : 716.44,
+ "placementWidth" : 51.651,
+ "placementHeight" : 10.8,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 51.651,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_4[10]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 687.39,
+ "placementX" : 28.0,
+ "placementY" : 687.39,
+ "placementWidth" : 530.689,
+ "placementHeight" : 24.05,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 530.689,
+ "contentHeight" : 24.05,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_5[11]",
+ "entityName" : "CvV2ExecutiveTitle_5",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]",
+ "childIndex" : 11,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 654.27,
+ "placementX" : 28.0,
+ "placementY" : 654.27,
+ "placementWidth" : 145.228,
+ "placementHeight" : 25.12,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 145.228,
+ "contentHeight" : 25.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_5[11]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveTitle_5[11]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 656.27,
+ "placementX" : 28.0,
+ "placementY" : 656.27,
+ "placementWidth" : 145.228,
+ "placementHeight" : 15.12,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 145.228,
+ "contentHeight" : 15.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_5[12]",
+ "entityName" : "CvV2ExecutiveBody_5",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]",
+ "childIndex" : 12,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 583.67,
+ "placementX" : 28.0,
+ "placementY" : 583.67,
+ "placementWidth" : 369.968,
+ "placementHeight" : 62.6,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 369.968,
+ "contentHeight" : 62.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_5[12]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_5[12]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 632.87,
+ "placementX" : 28.0,
+ "placementY" : 632.87,
+ "placementWidth" : 278.179,
+ "placementHeight" : 11.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 278.179,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_5[12]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_5[12]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 616.47,
+ "placementX" : 28.0,
+ "placementY" : 616.47,
+ "placementWidth" : 225.425,
+ "placementHeight" : 11.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 225.425,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_5[12]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_5[12]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 600.07,
+ "placementX" : 28.0,
+ "placementY" : 600.07,
+ "placementWidth" : 369.968,
+ "placementHeight" : 11.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 369.968,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_5[12]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ExecutiveRoot[0]/CvV2ExecutiveBody_5[12]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 583.67,
+ "placementX" : 28.0,
+ "placementY" : 583.67,
+ "placementWidth" : 366.177,
+ "placementHeight" : 11.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 366.177,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/minimal_underlined_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/minimal_underlined_layout.json
new file mode 100644
index 000000000..c3aac5236
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/minimal_underlined_layout.json
@@ -0,0 +1,2627 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 531.276,
+ "innerHeight" : 777.89,
+ "margin" : {
+ "top" : 32.0,
+ "right" : 32.0,
+ "bottom" : 32.0,
+ "left" : 32.0
+ }
+ },
+ "totalPages" : 2,
+ "nodes" : [ {
+ "path" : "CvV2MinimalRoot[0]",
+ "entityName" : "CvV2MinimalRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 32.0,
+ "computedY" : -232.155,
+ "placementX" : 32.0,
+ "placementY" : -232.155,
+ "placementWidth" : 531.276,
+ "placementHeight" : 1042.045,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 531.276,
+ "contentHeight" : 1042.045,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Headline[0]",
+ "entityName" : "Headline",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 32.0,
+ "computedY" : 777.402,
+ "placementX" : 32.0,
+ "placementY" : 777.402,
+ "placementWidth" : 531.276,
+ "placementHeight" : 32.488,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.276,
+ "contentHeight" : 32.488,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 4.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Headline[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Headline[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 781.402,
+ "placementX" : 32.0,
+ "placementY" : 781.402,
+ "placementWidth" : 531.276,
+ "placementHeight" : 28.488,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.276,
+ "contentHeight" : 28.488,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Contact[1]",
+ "entityName" : "Contact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 32.0,
+ "computedY" : 751.14,
+ "placementX" : 32.0,
+ "placementY" : 751.14,
+ "placementWidth" : 531.276,
+ "placementHeight" : 19.263,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.276,
+ "contentHeight" : 19.263,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 4.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Contact[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Contact[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 755.14,
+ "placementX" : 32.0,
+ "placementY" : 755.14,
+ "placementWidth" : 531.276,
+ "placementHeight" : 11.263,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.276,
+ "contentHeight" : 11.263,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Title_0[2]",
+ "entityName" : "Title_0",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 32.0,
+ "computedY" : 721.95,
+ "placementX" : 32.0,
+ "placementY" : 721.95,
+ "placementWidth" : 153.803,
+ "placementHeight" : 22.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 153.803,
+ "contentHeight" : 22.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Title_0[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Title_0[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 723.95,
+ "placementX" : 32.0,
+ "placementY" : 723.95,
+ "placementWidth" : 153.803,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 153.803,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_0[3]",
+ "entityName" : "Body_0",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]",
+ "childIndex" : 3,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 32.0,
+ "computedY" : 671.965,
+ "placementX" : 32.0,
+ "placementY" : 671.965,
+ "placementWidth" : 528.197,
+ "placementHeight" : 42.985,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 528.197,
+ "contentHeight" : 42.985,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 4.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_0[3]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_0[3]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 671.965,
+ "placementX" : 36.0,
+ "placementY" : 671.965,
+ "placementWidth" : 520.197,
+ "placementHeight" : 36.985,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 520.197,
+ "contentHeight" : 36.985,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Title_1[4]",
+ "entityName" : "Title_1",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]",
+ "childIndex" : 4,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 32.0,
+ "computedY" : 642.775,
+ "placementX" : 32.0,
+ "placementY" : 642.775,
+ "placementWidth" : 113.224,
+ "placementHeight" : 22.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 113.224,
+ "contentHeight" : 22.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Title_1[4]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Title_1[4]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 644.775,
+ "placementX" : 32.0,
+ "placementY" : 644.775,
+ "placementWidth" : 113.224,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 113.224,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_1[5]",
+ "entityName" : "Body_1",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]",
+ "childIndex" : 5,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 32.0,
+ "computedY" : 531.405,
+ "placementX" : 32.0,
+ "placementY" : 531.405,
+ "placementWidth" : 426.244,
+ "placementHeight" : 104.37,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 426.244,
+ "contentHeight" : 104.37,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 4.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_1[5]/ListNode[0]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_1[5]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 618.38,
+ "placementX" : 36.0,
+ "placementY" : 618.38,
+ "placementWidth" : 194.609,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 194.609,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_1[5]/ListNode[1]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_1[5]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 600.985,
+ "placementX" : 36.0,
+ "placementY" : 600.985,
+ "placementWidth" : 418.244,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 418.244,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_1[5]/ListNode[2]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_1[5]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 583.59,
+ "placementX" : 36.0,
+ "placementY" : 583.59,
+ "placementWidth" : 417.014,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 417.014,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_1[5]/ListNode[3]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_1[5]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 566.195,
+ "placementX" : 36.0,
+ "placementY" : 566.195,
+ "placementWidth" : 362.542,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 362.542,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_1[5]/ListNode[4]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_1[5]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 548.8,
+ "placementX" : 36.0,
+ "placementY" : 548.8,
+ "placementWidth" : 389.012,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 389.012,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_1[5]/ListNode[5]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_1[5]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 531.405,
+ "placementX" : 36.0,
+ "placementY" : 531.405,
+ "placementWidth" : 390.913,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 390.913,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Title_2[6]",
+ "entityName" : "Title_2",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]",
+ "childIndex" : 6,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 32.0,
+ "computedY" : 502.215,
+ "placementX" : 32.0,
+ "placementY" : 502.215,
+ "placementWidth" : 188.998,
+ "placementHeight" : 22.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 188.998,
+ "contentHeight" : 22.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Title_2[6]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Title_2[6]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 504.215,
+ "placementX" : 32.0,
+ "placementY" : 504.215,
+ "placementWidth" : 188.998,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 188.998,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]",
+ "entityName" : "Body_2",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]",
+ "childIndex" : 7,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 32.0,
+ "computedY" : 335.07,
+ "placementX" : 32.0,
+ "placementY" : 335.07,
+ "placementWidth" : 531.276,
+ "placementHeight" : 160.145,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.276,
+ "contentHeight" : 160.145,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 4.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[0]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 479.025,
+ "placementX" : 36.0,
+ "placementY" : 479.025,
+ "placementWidth" : 523.276,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 523.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[0]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 36.0,
+ "computedY" : 479.025,
+ "placementX" : 36.0,
+ "placementY" : 479.025,
+ "placementWidth" : 99.875,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 99.875,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[0]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[0]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 36.0,
+ "computedY" : 479.025,
+ "placementX" : 36.0,
+ "placementY" : 479.025,
+ "placementWidth" : 99.875,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 99.875,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[0]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 399.363,
+ "computedY" : 479.555,
+ "placementX" : 399.363,
+ "placementY" : 479.555,
+ "placementWidth" : 159.913,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 159.913,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[0]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[0]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 399.363,
+ "computedY" : 479.555,
+ "placementX" : 399.363,
+ "placementY" : 479.555,
+ "placementWidth" : 159.913,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 159.913,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 463.895,
+ "placementX" : 36.0,
+ "placementY" : 463.895,
+ "placementWidth" : 88.393,
+ "placementHeight" : 11.13,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 88.393,
+ "contentHeight" : 11.13,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 446.5,
+ "placementX" : 36.0,
+ "placementY" : 446.5,
+ "placementWidth" : 324.512,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 324.512,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 439.5,
+ "placementX" : 36.0,
+ "placementY" : 439.5,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[4]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 423.31,
+ "placementX" : 36.0,
+ "placementY" : 423.31,
+ "placementWidth" : 523.276,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 523.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[4]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[4]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 36.0,
+ "computedY" : 423.31,
+ "placementX" : 36.0,
+ "placementY" : 423.31,
+ "placementWidth" : 113.123,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 113.123,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[4]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[4]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 36.0,
+ "computedY" : 423.31,
+ "placementX" : 36.0,
+ "placementY" : 423.31,
+ "placementWidth" : 113.123,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 113.123,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[4]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[4]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 399.363,
+ "computedY" : 423.84,
+ "placementX" : 399.363,
+ "placementY" : 423.84,
+ "placementWidth" : 159.913,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 159.913,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[4]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[4]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 399.363,
+ "computedY" : 423.84,
+ "placementX" : 399.363,
+ "placementY" : 423.84,
+ "placementWidth" : 159.913,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 159.913,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 408.18,
+ "placementX" : 36.0,
+ "placementY" : 408.18,
+ "placementWidth" : 87.268,
+ "placementHeight" : 11.13,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 87.268,
+ "contentHeight" : 11.13,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 390.785,
+ "placementX" : 36.0,
+ "placementY" : 390.785,
+ "placementWidth" : 255.523,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 255.523,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/SpacerNode[7]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 383.785,
+ "placementX" : 36.0,
+ "placementY" : 383.785,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[8]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 367.595,
+ "placementX" : 36.0,
+ "placementY" : 367.595,
+ "placementWidth" : 523.276,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 523.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[8]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[8]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 36.0,
+ "computedY" : 367.595,
+ "placementX" : 36.0,
+ "placementY" : 367.595,
+ "placementWidth" : 107.806,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 107.806,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[8]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[8]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 36.0,
+ "computedY" : 367.595,
+ "placementX" : 36.0,
+ "placementY" : 367.595,
+ "placementWidth" : 107.806,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 107.806,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[8]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[8]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 399.363,
+ "computedY" : 368.125,
+ "placementX" : 399.363,
+ "placementY" : 368.125,
+ "placementWidth" : 159.913,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 159.913,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[8]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]/CvV2EntryHeader[8]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 399.363,
+ "computedY" : 368.125,
+ "placementX" : 399.363,
+ "placementY" : 368.125,
+ "placementWidth" : 159.913,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 159.913,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 352.465,
+ "placementX" : 36.0,
+ "placementY" : 352.465,
+ "placementWidth" : 64.05,
+ "placementHeight" : 11.13,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 64.05,
+ "contentHeight" : 11.13,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_2[7]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_2[7]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 335.07,
+ "placementX" : 36.0,
+ "placementY" : 335.07,
+ "placementWidth" : 321.262,
+ "placementHeight" : 11.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 321.262,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Title_3[8]",
+ "entityName" : "Title_3",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]",
+ "childIndex" : 8,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 32.0,
+ "computedY" : 305.88,
+ "placementX" : 32.0,
+ "placementY" : 305.88,
+ "placementWidth" : 58.7,
+ "placementHeight" : 22.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 58.7,
+ "contentHeight" : 22.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Title_3[8]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Title_3[8]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 307.88,
+ "placementX" : 32.0,
+ "placementY" : 307.88,
+ "placementWidth" : 58.7,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 58.7,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_3[9]",
+ "entityName" : "Body_3",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]",
+ "childIndex" : 9,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 32.0,
+ "computedY" : 108.335,
+ "placementX" : 32.0,
+ "placementY" : 108.335,
+ "placementWidth" : 523.235,
+ "placementHeight" : 190.545,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 523.235,
+ "contentHeight" : 190.545,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 4.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_3[9]/ListNode[0]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_3[9]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 253.295,
+ "placementX" : 36.0,
+ "placementY" : 253.295,
+ "placementWidth" : 515.235,
+ "placementHeight" : 39.585,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 515.235,
+ "contentHeight" : 39.585,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_3[9]/SpacerNode[1]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_3[9]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 246.295,
+ "placementX" : 36.0,
+ "placementY" : 246.295,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_3[9]/ListNode[2]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_3[9]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 200.71,
+ "placementX" : 36.0,
+ "placementY" : 200.71,
+ "placementWidth" : 495.394,
+ "placementHeight" : 39.585,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 495.394,
+ "contentHeight" : 39.585,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_3[9]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_3[9]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 193.71,
+ "placementX" : 36.0,
+ "placementY" : 193.71,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_3[9]/ListNode[4]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_3[9]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 148.125,
+ "placementX" : 36.0,
+ "placementY" : 148.125,
+ "placementWidth" : 501.088,
+ "placementHeight" : 39.585,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 501.088,
+ "contentHeight" : 39.585,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_3[9]/SpacerNode[5]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_3[9]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 141.125,
+ "placementX" : 36.0,
+ "placementY" : 141.125,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_3[9]/ListNode[6]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_3[9]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 108.335,
+ "placementX" : 36.0,
+ "placementY" : 108.335,
+ "placementWidth" : 500.718,
+ "placementHeight" : 26.79,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 500.718,
+ "contentHeight" : 26.79,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Title_4[10]",
+ "entityName" : "Title_4",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]",
+ "childIndex" : 10,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 32.0,
+ "computedY" : 79.145,
+ "placementX" : 32.0,
+ "placementY" : 79.145,
+ "placementWidth" : 168.038,
+ "placementHeight" : 22.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 168.038,
+ "contentHeight" : 22.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Title_4[10]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Title_4[10]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 81.145,
+ "placementX" : 32.0,
+ "placementY" : 81.145,
+ "placementWidth" : 168.038,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 168.038,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]",
+ "entityName" : "Body_4",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]",
+ "childIndex" : 11,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 32.0,
+ "computedY" : -126.385,
+ "placementX" : 32.0,
+ "placementY" : -126.385,
+ "placementWidth" : 531.276,
+ "placementHeight" : 198.53,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 531.276,
+ "contentHeight" : 198.53,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 4.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[0]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 55.955,
+ "placementX" : 36.0,
+ "placementY" : 55.955,
+ "placementWidth" : 523.276,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 523.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[0]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 36.0,
+ "computedY" : 55.955,
+ "placementX" : 36.0,
+ "placementY" : 55.955,
+ "placementWidth" : 112.038,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 112.038,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[0]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[0]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 36.0,
+ "computedY" : 55.955,
+ "placementX" : 36.0,
+ "placementY" : 55.955,
+ "placementWidth" : 112.038,
+ "placementHeight" : 12.19,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 112.038,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[0]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 399.363,
+ "computedY" : 56.485,
+ "placementX" : 399.363,
+ "placementY" : 56.485,
+ "placementWidth" : 159.913,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 159.913,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[0]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[0]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 399.363,
+ "computedY" : 56.485,
+ "placementX" : 399.363,
+ "placementY" : 56.485,
+ "placementWidth" : 159.913,
+ "placementHeight" : 11.66,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 159.913,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 40.825,
+ "placementX" : 36.0,
+ "placementY" : 40.825,
+ "placementWidth" : 68.88,
+ "placementHeight" : 11.13,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 68.88,
+ "contentHeight" : 11.13,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 783.7,
+ "placementX" : 36.0,
+ "placementY" : 783.7,
+ "placementWidth" : 515.579,
+ "placementHeight" : 24.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 515.579,
+ "contentHeight" : 24.19,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 776.7,
+ "placementX" : 36.0,
+ "placementY" : 776.7,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[4]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 760.51,
+ "placementX" : 36.0,
+ "placementY" : 760.51,
+ "placementWidth" : 523.276,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 523.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[4]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[4]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 36.0,
+ "computedY" : 760.51,
+ "placementX" : 36.0,
+ "placementY" : 760.51,
+ "placementWidth" : 80.914,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 80.914,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[4]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[4]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 36.0,
+ "computedY" : 760.51,
+ "placementX" : 36.0,
+ "placementY" : 760.51,
+ "placementWidth" : 80.914,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 80.914,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[4]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[4]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 399.363,
+ "computedY" : 761.04,
+ "placementX" : 399.363,
+ "placementY" : 761.04,
+ "placementWidth" : 159.913,
+ "placementHeight" : 11.66,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 159.913,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[4]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[4]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 399.363,
+ "computedY" : 761.04,
+ "placementX" : 399.363,
+ "placementY" : 761.04,
+ "placementWidth" : 159.913,
+ "placementHeight" : 11.66,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 159.913,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 745.38,
+ "placementX" : 36.0,
+ "placementY" : 745.38,
+ "placementWidth" : 56.448,
+ "placementHeight" : 11.13,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 56.448,
+ "contentHeight" : 11.13,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 715.19,
+ "placementX" : 36.0,
+ "placementY" : 715.19,
+ "placementWidth" : 521.108,
+ "placementHeight" : 24.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 521.108,
+ "contentHeight" : 24.19,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/SpacerNode[7]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 708.19,
+ "placementX" : 36.0,
+ "placementY" : 708.19,
+ "placementWidth" : 0.0,
+ "placementHeight" : 3.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 0.0,
+ "contentHeight" : 3.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[8]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 692.0,
+ "placementX" : 36.0,
+ "placementY" : 692.0,
+ "placementWidth" : 523.276,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 523.276,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[8]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[8]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 36.0,
+ "computedY" : 692.0,
+ "placementX" : 36.0,
+ "placementY" : 692.0,
+ "placementWidth" : 79.267,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 79.267,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[8]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[8]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 36.0,
+ "computedY" : 692.0,
+ "placementX" : 36.0,
+ "placementY" : 692.0,
+ "placementWidth" : 79.267,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 79.267,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[8]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[8]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 399.363,
+ "computedY" : 692.53,
+ "placementX" : 399.363,
+ "placementY" : 692.53,
+ "placementWidth" : 159.913,
+ "placementHeight" : 11.66,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 159.913,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[8]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]/CvV2EntryHeader[8]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 399.363,
+ "computedY" : 692.53,
+ "placementX" : 399.363,
+ "placementY" : 692.53,
+ "placementWidth" : 159.913,
+ "placementHeight" : 11.66,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 159.913,
+ "contentHeight" : 11.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 676.87,
+ "placementX" : 36.0,
+ "placementY" : 676.87,
+ "placementWidth" : 49.955,
+ "placementHeight" : 11.13,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 49.955,
+ "contentHeight" : 11.13,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_4[11]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_4[11]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 646.68,
+ "placementX" : 36.0,
+ "placementY" : 646.68,
+ "placementWidth" : 522.897,
+ "placementHeight" : 24.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 522.897,
+ "contentHeight" : 24.19,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Title_5[12]",
+ "entityName" : "Title_5",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]",
+ "childIndex" : 12,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 32.0,
+ "computedY" : 617.49,
+ "placementX" : 32.0,
+ "placementY" : 617.49,
+ "placementWidth" : 165.982,
+ "placementHeight" : 22.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 165.982,
+ "contentHeight" : 22.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Title_5[12]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Title_5[12]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 32.0,
+ "computedY" : 619.49,
+ "placementX" : 32.0,
+ "placementY" : 619.49,
+ "placementWidth" : 165.982,
+ "placementHeight" : 12.19,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 165.982,
+ "contentHeight" : 12.19,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_5[13]",
+ "entityName" : "Body_5",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MinimalRoot[0]",
+ "childIndex" : 13,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 32.0,
+ "computedY" : 540.91,
+ "placementX" : 32.0,
+ "placementY" : 540.91,
+ "placementWidth" : 348.663,
+ "placementHeight" : 69.58,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 348.663,
+ "contentHeight" : 69.58,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 4.0,
+ "right" : 4.0,
+ "bottom" : 0.0,
+ "left" : 4.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_5[13]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_5[13]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 593.095,
+ "placementX" : 36.0,
+ "placementY" : 593.095,
+ "placementWidth" : 265.74,
+ "placementHeight" : 11.395,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 265.74,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_5[13]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_5[13]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 575.7,
+ "placementX" : 36.0,
+ "placementY" : 575.7,
+ "placementWidth" : 211.766,
+ "placementHeight" : 11.395,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 211.766,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_5[13]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_5[13]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 558.305,
+ "placementX" : 36.0,
+ "placementY" : 558.305,
+ "placementWidth" : 340.663,
+ "placementHeight" : 11.395,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 340.663,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MinimalRoot[0]/Body_5[13]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MinimalRoot[0]/Body_5[13]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 540.91,
+ "placementX" : 36.0,
+ "placementY" : 540.91,
+ "placementWidth" : 333.456,
+ "placementHeight" : 11.395,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 333.456,
+ "contentHeight" : 11.395,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/mint_editorial_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/mint_editorial_layout.json
new file mode 100644
index 000000000..5a859f9d3
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/mint_editorial_layout.json
@@ -0,0 +1,2447 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 499.276,
+ "innerHeight" : 745.89,
+ "margin" : {
+ "top" : 48.0,
+ "right" : 48.0,
+ "bottom" : 48.0,
+ "left" : 48.0
+ }
+ },
+ "totalPages" : 2,
+ "nodes" : [ {
+ "path" : "CvV2MintEditorialRoot[0]",
+ "entityName" : "CvV2MintEditorialRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 48.0,
+ "computedY" : -420.73,
+ "placementX" : 48.0,
+ "placementY" : -420.73,
+ "placementWidth" : 499.276,
+ "placementHeight" : 1214.62,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 499.276,
+ "contentHeight" : 1214.62,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialHeader[0]",
+ "entityName" : "CvV2MintEditorialHeader",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 744.13,
+ "placementX" : 48.0,
+ "placementY" : 744.13,
+ "placementWidth" : 499.276,
+ "placementHeight" : 49.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 49.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialHeader[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 757.49,
+ "placementX" : 48.0,
+ "placementY" : 757.49,
+ "placementWidth" : 499.276,
+ "placementHeight" : 36.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 36.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialHeader[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 744.13,
+ "placementX" : 48.0,
+ "placementY" : 744.13,
+ "placementWidth" : 499.276,
+ "placementHeight" : 10.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 10.36,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialHeaderRule[1]",
+ "entityName" : "CvV2MintEditorialHeaderRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 0.0,
+ "computedY" : 712.13,
+ "placementX" : 0.0,
+ "placementY" : 712.13,
+ "placementWidth" : 595.276,
+ "placementHeight" : 6.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 595.276,
+ "contentHeight" : 6.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : -48.0,
+ "bottom" : 14.0,
+ "left" : -48.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]",
+ "entityName" : "CvV2MintEditorialPageOne",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 247.77,
+ "placementX" : 48.0,
+ "placementY" : 247.77,
+ "placementWidth" : 499.276,
+ "placementHeight" : 432.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 499.276,
+ "contentHeight" : 432.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]",
+ "entityName" : "CvV2MintEditorialPageOneSidebar",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 247.77,
+ "placementX" : 48.0,
+ "placementY" : 247.77,
+ "placementWidth" : 129.328,
+ "placementHeight" : 432.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 129.328,
+ "contentHeight" : 432.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialContact[0]",
+ "entityName" : "CvV2MintEditorialContact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 48.0,
+ "computedY" : 526.73,
+ "placementX" : 48.0,
+ "placementY" : 526.73,
+ "placementWidth" : 121.704,
+ "placementHeight" : 153.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 121.704,
+ "contentHeight" : 153.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialContact[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialContact[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 664.73,
+ "placementX" : 48.0,
+ "placementY" : 664.73,
+ "placementWidth" : 68.651,
+ "placementHeight" : 15.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 68.651,
+ "contentHeight" : 15.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 18.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialContact[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialContact[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 635.73,
+ "placementX" : 48.0,
+ "placementY" : 635.73,
+ "placementWidth" : 81.019,
+ "placementHeight" : 11.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 81.019,
+ "contentHeight" : 11.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 13.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialContact[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialContact[0]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 611.73,
+ "placementX" : 48.0,
+ "placementY" : 611.73,
+ "placementWidth" : 121.704,
+ "placementHeight" : 11.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 121.704,
+ "contentHeight" : 11.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 13.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialContact[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialContact[0]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 587.73,
+ "placementX" : 48.0,
+ "placementY" : 587.73,
+ "placementWidth" : 56.939,
+ "placementHeight" : 11.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 56.939,
+ "contentHeight" : 11.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 13.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialContact[0]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialContact[0]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 563.73,
+ "placementX" : 48.0,
+ "placementY" : 563.73,
+ "placementWidth" : 46.638,
+ "placementHeight" : 11.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 46.638,
+ "contentHeight" : 11.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 13.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialContact[0]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialContact[0]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 539.73,
+ "placementX" : 48.0,
+ "placementY" : 539.73,
+ "placementWidth" : 42.058,
+ "placementHeight" : 11.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 42.058,
+ "contentHeight" : 11.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 13.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]",
+ "entityName" : "CvV2MintEditorialEducation",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 48.0,
+ "computedY" : 247.77,
+ "placementX" : 48.0,
+ "placementY" : 247.77,
+ "placementWidth" : 129.328,
+ "placementHeight" : 256.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 129.328,
+ "contentHeight" : 256.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 473.93,
+ "placementX" : 48.0,
+ "placementY" : 473.93,
+ "placementWidth" : 118.151,
+ "placementHeight" : 30.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 118.151,
+ "contentHeight" : 30.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 18.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 444.73,
+ "placementX" : 48.0,
+ "placementY" : 444.73,
+ "placementWidth" : 129.328,
+ "placementHeight" : 11.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 129.328,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 429.37,
+ "placementX" : 48.0,
+ "placementY" : 429.37,
+ "placementWidth" : 90.546,
+ "placementHeight" : 10.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 90.546,
+ "contentHeight" : 10.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 414.01,
+ "placementX" : 48.0,
+ "placementY" : 414.01,
+ "placementWidth" : 35.535,
+ "placementHeight" : 10.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 35.535,
+ "contentHeight" : 10.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 20.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 371.61,
+ "placementX" : 48.0,
+ "placementY" : 371.61,
+ "placementWidth" : 79.432,
+ "placementHeight" : 22.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 79.432,
+ "contentHeight" : 22.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 356.25,
+ "placementX" : 48.0,
+ "placementY" : 356.25,
+ "placementWidth" : 89.799,
+ "placementHeight" : 10.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 89.799,
+ "contentHeight" : 10.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 340.89,
+ "placementX" : 48.0,
+ "placementY" : 340.89,
+ "placementWidth" : 35.927,
+ "placementHeight" : 10.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 35.927,
+ "contentHeight" : 10.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 20.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]",
+ "childIndex" : 7,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 298.49,
+ "placementX" : 48.0,
+ "placementY" : 298.49,
+ "placementWidth" : 79.568,
+ "placementHeight" : 22.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 79.568,
+ "contentHeight" : 22.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]/ParagraphNode[8]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]",
+ "childIndex" : 8,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 283.13,
+ "placementX" : 48.0,
+ "placementY" : 283.13,
+ "placementWidth" : 65.379,
+ "placementHeight" : 10.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 65.379,
+ "contentHeight" : 10.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneSidebar[0]/CvV2MintEditorialEducation[1]",
+ "childIndex" : 9,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 267.77,
+ "placementX" : 48.0,
+ "placementY" : 267.77,
+ "placementWidth" : 39.405,
+ "placementHeight" : 10.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 39.405,
+ "contentHeight" : 10.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 20.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]",
+ "entityName" : "CvV2MintEditorialPageOneMain",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 230.375,
+ "computedY" : 340.61,
+ "placementX" : 230.375,
+ "placementY" : 340.61,
+ "placementWidth" : 315.632,
+ "placementHeight" : 339.52,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 315.632,
+ "contentHeight" : 339.52,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialProfile[0]",
+ "entityName" : "CvV2MintEditorialProfile",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 230.375,
+ "computedY" : 586.03,
+ "placementX" : 230.375,
+ "placementY" : 586.03,
+ "placementWidth" : 314.16,
+ "placementHeight" : 94.1,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 314.16,
+ "contentHeight" : 94.1,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialProfile[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialProfile[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 230.375,
+ "computedY" : 664.73,
+ "placementX" : 230.375,
+ "placementY" : 664.73,
+ "placementWidth" : 57.002,
+ "placementHeight" : 15.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 57.002,
+ "contentHeight" : 15.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 18.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialProfile[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialProfile[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 230.375,
+ "computedY" : 598.03,
+ "placementX" : 230.375,
+ "placementY" : 598.03,
+ "placementWidth" : 314.16,
+ "placementHeight" : 48.7,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 314.16,
+ "contentHeight" : 48.7,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 12.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialExperience[1]",
+ "entityName" : "CvV2MintEditorialExperience",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 230.375,
+ "computedY" : 340.61,
+ "placementX" : 230.375,
+ "placementY" : 340.61,
+ "placementWidth" : 315.632,
+ "placementHeight" : 223.42,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 315.632,
+ "contentHeight" : 223.42,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialExperience[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialExperience[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 230.375,
+ "computedY" : 548.63,
+ "placementX" : 230.375,
+ "placementY" : 548.63,
+ "placementWidth" : 85.404,
+ "placementHeight" : 15.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 85.404,
+ "contentHeight" : 15.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 18.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialExperience[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialExperience[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 230.375,
+ "computedY" : 519.43,
+ "placementX" : 230.375,
+ "placementY" : 519.43,
+ "placementWidth" : 148.424,
+ "placementHeight" : 11.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 148.424,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialExperience[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialExperience[1]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 230.375,
+ "computedY" : 504.07,
+ "placementX" : 230.375,
+ "placementY" : 504.07,
+ "placementWidth" : 126.377,
+ "placementHeight" : 10.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 126.377,
+ "contentHeight" : 10.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialExperience[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialExperience[1]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 230.375,
+ "computedY" : 459.87,
+ "placementX" : 230.375,
+ "placementY" : 459.87,
+ "placementWidth" : 313.152,
+ "placementHeight" : 36.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 313.152,
+ "contentHeight" : 36.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 18.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialExperience[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialExperience[1]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 230.375,
+ "computedY" : 430.67,
+ "placementX" : 230.375,
+ "placementY" : 430.67,
+ "placementWidth" : 109.032,
+ "placementHeight" : 11.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 109.032,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialExperience[1]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialExperience[1]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 230.375,
+ "computedY" : 415.31,
+ "placementX" : 230.375,
+ "placementY" : 415.31,
+ "placementWidth" : 99.33,
+ "placementHeight" : 10.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 99.33,
+ "contentHeight" : 10.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialExperience[1]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageOne[2]/CvV2MintEditorialPageOneMain[1]/CvV2MintEditorialExperience[1]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 230.375,
+ "computedY" : 358.61,
+ "placementX" : 230.375,
+ "placementY" : 358.61,
+ "placementWidth" : 315.632,
+ "placementHeight" : 48.7,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 315.632,
+ "contentHeight" : 48.7,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 18.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]",
+ "entityName" : "CvV2MintEditorialPageTwo",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]",
+ "childIndex" : 3,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 48.0,
+ "computedY" : 143.39,
+ "placementX" : 48.0,
+ "placementY" : 143.39,
+ "placementWidth" : 499.276,
+ "placementHeight" : 650.5,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 499.276,
+ "contentHeight" : 650.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]",
+ "entityName" : "CvV2MintEditorialPageTwoSidebar",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 48.0,
+ "computedY" : 143.39,
+ "placementX" : 48.0,
+ "placementY" : 143.39,
+ "placementWidth" : 142.375,
+ "placementHeight" : 650.5,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 142.375,
+ "contentHeight" : 650.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]",
+ "entityName" : "CvV2MintEditorialExpertise",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 48.0,
+ "computedY" : 519.29,
+ "placementX" : 48.0,
+ "placementY" : 519.29,
+ "placementWidth" : 134.736,
+ "placementHeight" : 274.6,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 134.736,
+ "contentHeight" : 274.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 778.49,
+ "placementX" : 48.0,
+ "placementY" : 778.49,
+ "placementWidth" : 74.085,
+ "placementHeight" : 15.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 74.085,
+ "contentHeight" : 15.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 18.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]/CvV2MintEditorialExpertiseBadge[1]",
+ "entityName" : "CvV2MintEditorialExpertiseBadge",
+ "entityKind" : "LayerStackNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 688.49,
+ "placementX" : 48.0,
+ "placementY" : 688.49,
+ "placementWidth" : 72.0,
+ "placementHeight" : 72.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 72.0,
+ "contentHeight" : 72.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 18.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]/CvV2MintEditorialExpertiseBadge[1]/SvgIcon[0]",
+ "entityName" : "SvgIcon",
+ "entityKind" : "LayerStackNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]/CvV2MintEditorialExpertiseBadge[1]",
+ "childIndex" : 0,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 48.0,
+ "computedY" : 688.49,
+ "placementX" : 48.0,
+ "placementY" : 688.49,
+ "placementWidth" : 72.0,
+ "placementHeight" : 72.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 72.0,
+ "contentHeight" : 72.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]/CvV2MintEditorialExpertiseBadge[1]/SvgIcon[0]/SvgLayer0[0]",
+ "entityName" : "SvgLayer0",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]/CvV2MintEditorialExpertiseBadge[1]/SvgIcon[0]",
+ "childIndex" : 0,
+ "depth" : 7,
+ "layer" : 7,
+ "computedX" : 48.0,
+ "computedY" : 688.49,
+ "placementX" : 48.0,
+ "placementY" : 688.49,
+ "placementWidth" : 72.0,
+ "placementHeight" : 72.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 72.0,
+ "contentHeight" : 72.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]/CvV2MintEditorialExpertiseBadge[1]/SvgIcon[0]/SvgLayer1[1]",
+ "entityName" : "SvgLayer1",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]/CvV2MintEditorialExpertiseBadge[1]/SvgIcon[0]",
+ "childIndex" : 1,
+ "depth" : 7,
+ "layer" : 7,
+ "computedX" : 48.0,
+ "computedY" : 688.49,
+ "placementX" : 48.0,
+ "placementY" : 688.49,
+ "placementWidth" : 72.0,
+ "placementHeight" : 72.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 72.0,
+ "contentHeight" : 72.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 659.29,
+ "placementX" : 48.0,
+ "placementY" : 659.29,
+ "placementWidth" : 61.664,
+ "placementHeight" : 11.2,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 61.664,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 14.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 634.09,
+ "placementX" : 48.0,
+ "placementY" : 634.09,
+ "placementWidth" : 102.384,
+ "placementHeight" : 11.2,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 102.384,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 14.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 608.89,
+ "placementX" : 48.0,
+ "placementY" : 608.89,
+ "placementWidth" : 87.656,
+ "placementHeight" : 11.2,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 87.656,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 14.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 583.69,
+ "placementX" : 48.0,
+ "placementY" : 583.69,
+ "placementWidth" : 134.736,
+ "placementHeight" : 11.2,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 134.736,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 14.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 558.49,
+ "placementX" : 48.0,
+ "placementY" : 558.49,
+ "placementWidth" : 43.256,
+ "placementHeight" : 11.2,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 43.256,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 14.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialExpertise[0]",
+ "childIndex" : 7,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 533.29,
+ "placementX" : 48.0,
+ "placementY" : 533.29,
+ "placementWidth" : 72.984,
+ "placementHeight" : 11.2,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 72.984,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 14.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "entityName" : "CvV2MintEditorialSkills",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 48.0,
+ "computedY" : 248.79,
+ "placementX" : 48.0,
+ "placementY" : 248.79,
+ "placementWidth" : 142.375,
+ "placementHeight" : 248.5,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 142.375,
+ "contentHeight" : 248.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 481.89,
+ "placementX" : 48.0,
+ "placementY" : 481.89,
+ "placementWidth" : 46.816,
+ "placementHeight" : 15.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 46.816,
+ "contentHeight" : 15.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 18.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 452.69,
+ "placementX" : 48.0,
+ "placementY" : 452.69,
+ "placementWidth" : 41.608,
+ "placementHeight" : 11.2,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 41.608,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/LineNode[2]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 443.69,
+ "placementX" : 48.0,
+ "placementY" : 443.69,
+ "placementWidth" : 142.375,
+ "placementHeight" : 1.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 142.375,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/LineNode[3]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 183.257,
+ "computedY" : 440.04,
+ "placementX" : 183.257,
+ "placementY" : 440.04,
+ "placementWidth" : 1.2,
+ "placementHeight" : 8.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 1.2,
+ "contentHeight" : 8.0,
+ "margin" : {
+ "top" : -4.35,
+ "right" : 0.0,
+ "bottom" : 12.0,
+ "left" : 135.257
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 416.84,
+ "placementX" : 48.0,
+ "placementY" : 416.84,
+ "placementWidth" : 37.424,
+ "placementHeight" : 11.2,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 37.424,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/LineNode[5]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 407.84,
+ "placementX" : 48.0,
+ "placementY" : 407.84,
+ "placementWidth" : 142.375,
+ "placementHeight" : 1.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 142.375,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/LineNode[6]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 169.019,
+ "computedY" : 404.19,
+ "placementX" : 169.019,
+ "placementY" : 404.19,
+ "placementWidth" : 1.2,
+ "placementHeight" : 8.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 1.2,
+ "contentHeight" : 8.0,
+ "margin" : {
+ "top" : -4.35,
+ "right" : 0.0,
+ "bottom" : 12.0,
+ "left" : 121.019
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 7,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 380.99,
+ "placementX" : 48.0,
+ "placementY" : 380.99,
+ "placementWidth" : 43.736,
+ "placementHeight" : 11.2,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 43.736,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/LineNode[8]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 8,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 371.99,
+ "placementX" : 48.0,
+ "placementY" : 371.99,
+ "placementWidth" : 142.375,
+ "placementHeight" : 1.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 142.375,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/LineNode[9]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 9,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 147.663,
+ "computedY" : 368.34,
+ "placementX" : 147.663,
+ "placementY" : 368.34,
+ "placementWidth" : 1.2,
+ "placementHeight" : 8.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 1.2,
+ "contentHeight" : 8.0,
+ "margin" : {
+ "top" : -4.35,
+ "right" : 0.0,
+ "bottom" : 12.0,
+ "left" : 99.663
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 10,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 345.14,
+ "placementX" : 48.0,
+ "placementY" : 345.14,
+ "placementWidth" : 41.88,
+ "placementHeight" : 11.2,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 41.88,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/LineNode[11]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 11,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 336.14,
+ "placementX" : 48.0,
+ "placementY" : 336.14,
+ "placementWidth" : 142.375,
+ "placementHeight" : 1.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 142.375,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/LineNode[12]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 12,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 154.782,
+ "computedY" : 332.49,
+ "placementX" : 154.782,
+ "placementY" : 332.49,
+ "placementWidth" : 1.2,
+ "placementHeight" : 8.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 1.2,
+ "contentHeight" : 8.0,
+ "margin" : {
+ "top" : -4.35,
+ "right" : 0.0,
+ "bottom" : 12.0,
+ "left" : 106.782
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/ParagraphNode[13]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 13,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 309.29,
+ "placementX" : 48.0,
+ "placementY" : 309.29,
+ "placementWidth" : 19.36,
+ "placementHeight" : 11.2,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 19.36,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/LineNode[14]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 14,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 300.29,
+ "placementX" : 48.0,
+ "placementY" : 300.29,
+ "placementWidth" : 142.375,
+ "placementHeight" : 1.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 142.375,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/LineNode[15]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 15,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 161.9,
+ "computedY" : 296.64,
+ "placementX" : 161.9,
+ "placementY" : 296.64,
+ "placementWidth" : 1.2,
+ "placementHeight" : 8.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 1.2,
+ "contentHeight" : 8.0,
+ "margin" : {
+ "top" : -4.35,
+ "right" : 0.0,
+ "bottom" : 12.0,
+ "left" : 113.9
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/ParagraphNode[16]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 16,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 273.44,
+ "placementX" : 48.0,
+ "placementY" : 273.44,
+ "placementWidth" : 41.104,
+ "placementHeight" : 11.2,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 41.104,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/LineNode[17]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 17,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 264.44,
+ "placementX" : 48.0,
+ "placementY" : 264.44,
+ "placementWidth" : 142.375,
+ "placementHeight" : 1.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 142.375,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]/LineNode[18]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSkills[1]",
+ "childIndex" : 18,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 176.138,
+ "computedY" : 260.79,
+ "placementX" : 176.138,
+ "placementY" : 260.79,
+ "placementWidth" : 1.2,
+ "placementHeight" : 8.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 1.2,
+ "contentHeight" : 8.0,
+ "margin" : {
+ "top" : -4.35,
+ "right" : 0.0,
+ "bottom" : 12.0,
+ "left" : 128.138
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSocial[2]",
+ "entityName" : "CvV2MintEditorialSocial",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 48.0,
+ "computedY" : 143.39,
+ "placementX" : 48.0,
+ "placementY" : 143.39,
+ "placementWidth" : 53.712,
+ "placementHeight" : 83.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 53.712,
+ "contentHeight" : 83.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSocial[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSocial[2]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 211.39,
+ "placementX" : 48.0,
+ "placementY" : 211.39,
+ "placementWidth" : 52.272,
+ "placementHeight" : 15.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 52.272,
+ "contentHeight" : 15.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 18.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSocial[2]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSocial[2]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 179.39,
+ "placementX" : 48.0,
+ "placementY" : 179.39,
+ "placementWidth" : 53.712,
+ "placementHeight" : 14.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 53.712,
+ "contentHeight" : 14.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 11.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSocial[2]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoSidebar[0]/CvV2MintEditorialSocial[2]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 48.0,
+ "computedY" : 154.39,
+ "placementX" : 48.0,
+ "placementY" : 154.39,
+ "placementWidth" : 47.464,
+ "placementHeight" : 14.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 47.464,
+ "contentHeight" : 14.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 11.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoMain[1]",
+ "entityName" : "CvV2MintEditorialPageTwoMain",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 230.375,
+ "computedY" : 684.23,
+ "placementX" : 230.375,
+ "placementY" : 684.23,
+ "placementWidth" : 295.72,
+ "placementHeight" : 109.66,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 295.72,
+ "contentHeight" : 109.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoMain[1]/CvV2MintEditorialExperience[0]",
+ "entityName" : "CvV2MintEditorialExperience",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoMain[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 230.375,
+ "computedY" : 684.23,
+ "placementX" : 230.375,
+ "placementY" : 684.23,
+ "placementWidth" : 295.72,
+ "placementHeight" : 109.66,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 295.72,
+ "contentHeight" : 109.66,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoMain[1]/CvV2MintEditorialExperience[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoMain[1]/CvV2MintEditorialExperience[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 230.375,
+ "computedY" : 778.49,
+ "placementX" : 230.375,
+ "placementY" : 778.49,
+ "placementWidth" : 85.404,
+ "placementHeight" : 15.4,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 85.404,
+ "contentHeight" : 15.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 18.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoMain[1]/CvV2MintEditorialExperience[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoMain[1]/CvV2MintEditorialExperience[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 230.375,
+ "computedY" : 749.29,
+ "placementX" : 230.375,
+ "placementY" : 749.29,
+ "placementWidth" : 102.424,
+ "placementHeight" : 11.2,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 102.424,
+ "contentHeight" : 11.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoMain[1]/CvV2MintEditorialExperience[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoMain[1]/CvV2MintEditorialExperience[0]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 230.375,
+ "computedY" : 733.93,
+ "placementX" : 230.375,
+ "placementY" : 733.93,
+ "placementWidth" : 89.229,
+ "placementHeight" : 10.36,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 89.229,
+ "contentHeight" : 10.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 8.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoMain[1]/CvV2MintEditorialExperience[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MintEditorialRoot[0]/CvV2MintEditorialPageTwo[3]/CvV2MintEditorialPageTwoMain[1]/CvV2MintEditorialExperience[0]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 230.375,
+ "computedY" : 702.23,
+ "placementX" : 230.375,
+ "placementY" : 702.23,
+ "placementWidth" : 295.72,
+ "placementHeight" : 23.7,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 295.72,
+ "contentHeight" : 23.7,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 18.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/modern_professional_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/modern_professional_layout.json
new file mode 100644
index 000000000..2c598d48b
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/modern_professional_layout.json
@@ -0,0 +1,2657 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 559.276,
+ "innerHeight" : 805.89,
+ "margin" : {
+ "top" : 18.0,
+ "right" : 18.0,
+ "bottom" : 18.0,
+ "left" : 18.0
+ }
+ },
+ "totalPages" : 2,
+ "nodes" : [ {
+ "path" : "CvV2ModernRoot[0]",
+ "entityName" : "CvV2ModernRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 18.0,
+ "computedY" : -56.38,
+ "placementX" : 18.0,
+ "placementY" : -56.38,
+ "placementWidth" : 559.276,
+ "placementHeight" : 880.27,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 559.276,
+ "contentHeight" : 880.27,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Header[0]",
+ "entityName" : "Header",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 797.99,
+ "placementX" : 18.0,
+ "placementY" : 797.99,
+ "placementWidth" : 559.276,
+ "placementHeight" : 25.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 559.276,
+ "contentHeight" : 25.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Header[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Header[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 18.0,
+ "computedY" : 797.99,
+ "placementX" : 18.0,
+ "placementY" : 797.99,
+ "placementWidth" : 559.276,
+ "placementHeight" : 25.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 559.276,
+ "contentHeight" : 25.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Contact[1]",
+ "entityName" : "Contact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 771.34,
+ "placementX" : 18.0,
+ "placementY" : 771.34,
+ "placementWidth" : 559.276,
+ "placementHeight" : 22.65,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 559.276,
+ "contentHeight" : 22.65,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 6.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Contact[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Contact[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 18.0,
+ "computedY" : 785.665,
+ "placementX" : 18.0,
+ "placementY" : 785.665,
+ "placementWidth" : 559.276,
+ "placementHeight" : 8.325,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 559.276,
+ "contentHeight" : 8.325,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Contact[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Contact[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 18.0,
+ "computedY" : 777.34,
+ "placementX" : 18.0,
+ "placementY" : 777.34,
+ "placementWidth" : 559.276,
+ "placementHeight" : 8.325,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 559.276,
+ "contentHeight" : 8.325,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Title_0[2]",
+ "entityName" : "Title_0",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 741.245,
+ "placementX" : 18.0,
+ "placementY" : 741.245,
+ "placementWidth" : 188.564,
+ "placementHeight" : 26.095,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 188.564,
+ "contentHeight" : 26.095,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Title_0[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Title_0[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 18.0,
+ "computedY" : 743.245,
+ "placementX" : 18.0,
+ "placementY" : 743.245,
+ "placementWidth" : 188.564,
+ "placementHeight" : 16.095,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 188.564,
+ "contentHeight" : 16.095,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_0[3]",
+ "entityName" : "Body_0",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]",
+ "childIndex" : 3,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 702.795,
+ "placementX" : 18.0,
+ "placementY" : 702.795,
+ "placementWidth" : 543.09,
+ "placementHeight" : 34.45,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 543.09,
+ "contentHeight" : 34.45,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 12.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_0[3]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_0[3]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 702.795,
+ "placementX" : 30.0,
+ "placementY" : 702.795,
+ "placementWidth" : 531.09,
+ "placementHeight" : 30.45,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 531.09,
+ "contentHeight" : 30.45,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Title_1[4]",
+ "entityName" : "Title_1",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]",
+ "childIndex" : 4,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 672.7,
+ "placementX" : 18.0,
+ "placementY" : 672.7,
+ "placementWidth" : 130.57,
+ "placementHeight" : 26.095,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 130.57,
+ "contentHeight" : 26.095,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Title_1[4]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Title_1[4]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 18.0,
+ "computedY" : 674.7,
+ "placementX" : 18.0,
+ "placementY" : 674.7,
+ "placementWidth" : 130.57,
+ "placementHeight" : 16.095,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 130.57,
+ "contentHeight" : 16.095,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_1[5]",
+ "entityName" : "Body_1",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]",
+ "childIndex" : 5,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 584.2,
+ "placementX" : 18.0,
+ "placementY" : 584.2,
+ "placementWidth" : 497.08,
+ "placementHeight" : 84.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 497.08,
+ "contentHeight" : 84.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 12.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_1[5]/ListNode[0]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_1[5]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 655.45,
+ "placementX" : 30.0,
+ "placementY" : 655.45,
+ "placementWidth" : 230.54,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 230.54,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_1[5]/ListNode[1]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_1[5]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 641.2,
+ "placementX" : 30.0,
+ "placementY" : 641.2,
+ "placementWidth" : 483.35,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 483.35,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_1[5]/ListNode[2]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_1[5]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 626.95,
+ "placementX" : 30.0,
+ "placementY" : 626.95,
+ "placementWidth" : 485.08,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 485.08,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_1[5]/ListNode[3]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_1[5]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 612.7,
+ "placementX" : 30.0,
+ "placementY" : 612.7,
+ "placementWidth" : 419.44,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 419.44,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_1[5]/ListNode[4]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_1[5]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 598.45,
+ "placementX" : 30.0,
+ "placementY" : 598.45,
+ "placementWidth" : 451.72,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 451.72,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_1[5]/ListNode[5]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_1[5]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 584.2,
+ "placementX" : 30.0,
+ "placementY" : 584.2,
+ "placementWidth" : 457.25,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 457.25,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Title_2[6]",
+ "entityName" : "Title_2",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]",
+ "childIndex" : 6,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 554.105,
+ "placementX" : 18.0,
+ "placementY" : 554.105,
+ "placementWidth" : 217.535,
+ "placementHeight" : 26.095,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 217.535,
+ "contentHeight" : 26.095,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Title_2[6]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Title_2[6]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 18.0,
+ "computedY" : 556.105,
+ "placementX" : 18.0,
+ "placementY" : 556.105,
+ "placementWidth" : 217.535,
+ "placementHeight" : 16.095,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 217.535,
+ "contentHeight" : 16.095,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]",
+ "entityName" : "Body_2",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]",
+ "childIndex" : 7,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 423.855,
+ "placementX" : 18.0,
+ "placementY" : 423.855,
+ "placementWidth" : 559.276,
+ "placementHeight" : 126.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 559.276,
+ "contentHeight" : 126.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 12.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[0]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 538.392,
+ "placementX" : 30.0,
+ "placementY" : 538.392,
+ "placementWidth" : 547.276,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 547.276,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[0]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 30.0,
+ "computedY" : 538.392,
+ "placementX" : 30.0,
+ "placementY" : 538.392,
+ "placementWidth" : 116.697,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 116.697,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[0]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[0]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 538.392,
+ "placementX" : 30.0,
+ "placementY" : 538.392,
+ "placementWidth" : 116.697,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 116.697,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[0]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 410.535,
+ "computedY" : 538.855,
+ "placementX" : 410.535,
+ "placementY" : 538.855,
+ "placementWidth" : 166.741,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 166.741,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[0]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[0]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 410.535,
+ "computedY" : 538.855,
+ "placementX" : 410.535,
+ "placementY" : 538.855,
+ "placementWidth" : 166.741,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 166.741,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 526.605,
+ "placementX" : 30.0,
+ "placementY" : 526.605,
+ "placementWidth" : 104.529,
+ "placementHeight" : 8.787,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 104.529,
+ "contentHeight" : 8.787,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 512.355,
+ "placementX" : 30.0,
+ "placementY" : 512.355,
+ "placementWidth" : 385.12,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 385.12,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 506.855,
+ "placementX" : 30.0,
+ "placementY" : 506.855,
+ "placementWidth" : 0.0,
+ "placementHeight" : 2.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 2.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[4]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 494.142,
+ "placementX" : 30.0,
+ "placementY" : 494.142,
+ "placementWidth" : 547.276,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 547.276,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[4]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[4]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 30.0,
+ "computedY" : 494.142,
+ "placementX" : 30.0,
+ "placementY" : 494.142,
+ "placementWidth" : 131.282,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 131.282,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[4]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[4]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 494.142,
+ "placementX" : 30.0,
+ "placementY" : 494.142,
+ "placementWidth" : 131.282,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 131.282,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[4]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[4]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 410.535,
+ "computedY" : 494.605,
+ "placementX" : 410.535,
+ "placementY" : 494.605,
+ "placementWidth" : 166.741,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 166.741,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[4]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[4]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 410.535,
+ "computedY" : 494.605,
+ "placementX" : 410.535,
+ "placementY" : 494.605,
+ "placementWidth" : 166.741,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 166.741,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 482.355,
+ "placementX" : 30.0,
+ "placementY" : 482.355,
+ "placementWidth" : 102.961,
+ "placementHeight" : 8.787,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 102.961,
+ "contentHeight" : 8.787,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 468.105,
+ "placementX" : 30.0,
+ "placementY" : 468.105,
+ "placementWidth" : 295.09,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 295.09,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/SpacerNode[7]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 462.605,
+ "placementX" : 30.0,
+ "placementY" : 462.605,
+ "placementWidth" : 0.0,
+ "placementHeight" : 2.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 2.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[8]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 449.892,
+ "placementX" : 30.0,
+ "placementY" : 449.892,
+ "placementWidth" : 547.276,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 547.276,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[8]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[8]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 30.0,
+ "computedY" : 449.892,
+ "placementX" : 30.0,
+ "placementY" : 449.892,
+ "placementWidth" : 123.134,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 123.134,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[8]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[8]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 449.892,
+ "placementX" : 30.0,
+ "placementY" : 449.892,
+ "placementWidth" : 123.134,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 123.134,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[8]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[8]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 410.535,
+ "computedY" : 450.355,
+ "placementX" : 410.535,
+ "placementY" : 450.355,
+ "placementWidth" : 166.741,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 166.741,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[8]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]/CvV2EntryHeader[8]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 410.535,
+ "computedY" : 450.355,
+ "placementX" : 410.535,
+ "placementY" : 450.355,
+ "placementWidth" : 166.741,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 166.741,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 438.105,
+ "placementX" : 30.0,
+ "placementY" : 438.105,
+ "placementWidth" : 75.497,
+ "placementHeight" : 8.787,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 75.497,
+ "contentHeight" : 8.787,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_2[7]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_2[7]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 423.855,
+ "placementX" : 30.0,
+ "placementY" : 423.855,
+ "placementWidth" : 372.39,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 372.39,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Title_3[8]",
+ "entityName" : "Title_3",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]",
+ "childIndex" : 8,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 393.76,
+ "placementX" : 18.0,
+ "placementY" : 393.76,
+ "placementWidth" : 68.66,
+ "placementHeight" : 26.095,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 68.66,
+ "contentHeight" : 26.095,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Title_3[8]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Title_3[8]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 18.0,
+ "computedY" : 395.76,
+ "placementX" : 18.0,
+ "placementY" : 395.76,
+ "placementWidth" : 68.66,
+ "placementHeight" : 16.095,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 68.66,
+ "contentHeight" : 16.095,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_3[9]",
+ "entityName" : "Body_3",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]",
+ "childIndex" : 9,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 225.86,
+ "placementX" : 18.0,
+ "placementY" : 225.86,
+ "placementWidth" : 556.03,
+ "placementHeight" : 163.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 556.03,
+ "contentHeight" : 163.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 12.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_3[9]/ListNode[0]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_3[9]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 353.66,
+ "placementX" : 30.0,
+ "placementY" : 353.66,
+ "placementWidth" : 521.22,
+ "placementHeight" : 32.1,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 521.22,
+ "contentHeight" : 32.1,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_3[9]/SpacerNode[1]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_3[9]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 348.16,
+ "placementX" : 30.0,
+ "placementY" : 348.16,
+ "placementWidth" : 0.0,
+ "placementHeight" : 2.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 2.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_3[9]/ListNode[2]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_3[9]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 311.06,
+ "placementX" : 30.0,
+ "placementY" : 311.06,
+ "placementWidth" : 530.69,
+ "placementHeight" : 32.1,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 530.69,
+ "contentHeight" : 32.1,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_3[9]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_3[9]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 305.56,
+ "placementX" : 30.0,
+ "placementY" : 305.56,
+ "placementWidth" : 0.0,
+ "placementHeight" : 2.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 2.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_3[9]/ListNode[4]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_3[9]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 268.46,
+ "placementX" : 30.0,
+ "placementY" : 268.46,
+ "placementWidth" : 544.03,
+ "placementHeight" : 32.1,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 544.03,
+ "contentHeight" : 32.1,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_3[9]/SpacerNode[5]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_3[9]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 262.96,
+ "placementX" : 30.0,
+ "placementY" : 262.96,
+ "placementWidth" : 0.0,
+ "placementHeight" : 2.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 2.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_3[9]/ListNode[6]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_3[9]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 225.86,
+ "placementX" : 30.0,
+ "placementY" : 225.86,
+ "placementWidth" : 527.85,
+ "placementHeight" : 32.1,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 527.85,
+ "contentHeight" : 32.1,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Title_4[10]",
+ "entityName" : "Title_4",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]",
+ "childIndex" : 10,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 195.765,
+ "placementX" : 18.0,
+ "placementY" : 195.765,
+ "placementWidth" : 202.118,
+ "placementHeight" : 26.095,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 202.118,
+ "contentHeight" : 26.095,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Title_4[10]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Title_4[10]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 18.0,
+ "computedY" : 197.765,
+ "placementX" : 18.0,
+ "placementY" : 197.765,
+ "placementWidth" : 202.118,
+ "placementHeight" : 16.095,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 202.118,
+ "contentHeight" : 16.095,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]",
+ "entityName" : "Body_4",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]",
+ "childIndex" : 11,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 33.715,
+ "placementX" : 18.0,
+ "placementY" : 33.715,
+ "placementWidth" : 559.276,
+ "placementHeight" : 158.05,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 559.276,
+ "contentHeight" : 158.05,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 12.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[0]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 180.052,
+ "placementX" : 30.0,
+ "placementY" : 180.052,
+ "placementWidth" : 547.276,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 547.276,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[0]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 30.0,
+ "computedY" : 180.052,
+ "placementX" : 30.0,
+ "placementY" : 180.052,
+ "placementWidth" : 126.032,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 126.032,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[0]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[0]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 180.052,
+ "placementX" : 30.0,
+ "placementY" : 180.052,
+ "placementWidth" : 126.032,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 126.032,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[0]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 410.535,
+ "computedY" : 180.515,
+ "placementX" : 410.535,
+ "placementY" : 180.515,
+ "placementWidth" : 166.741,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 166.741,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[0]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[0]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 410.535,
+ "computedY" : 180.515,
+ "placementX" : 410.535,
+ "placementY" : 180.515,
+ "placementWidth" : 166.741,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 166.741,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 168.265,
+ "placementX" : 30.0,
+ "placementY" : 168.265,
+ "placementWidth" : 81.824,
+ "placementHeight" : 8.787,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 81.824,
+ "contentHeight" : 8.787,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 143.415,
+ "placementX" : 30.0,
+ "placementY" : 143.415,
+ "placementWidth" : 509.09,
+ "placementHeight" : 19.85,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 509.09,
+ "contentHeight" : 19.85,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 137.915,
+ "placementX" : 30.0,
+ "placementY" : 137.915,
+ "placementWidth" : 0.0,
+ "placementHeight" : 2.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 2.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[4]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 125.202,
+ "placementX" : 30.0,
+ "placementY" : 125.202,
+ "placementWidth" : 547.276,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 547.276,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[4]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[4]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 30.0,
+ "computedY" : 125.202,
+ "placementX" : 30.0,
+ "placementY" : 125.202,
+ "placementWidth" : 92.19,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 92.19,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[4]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[4]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 125.202,
+ "placementX" : 30.0,
+ "placementY" : 125.202,
+ "placementWidth" : 92.19,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 92.19,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[4]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[4]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 410.535,
+ "computedY" : 125.665,
+ "placementX" : 410.535,
+ "placementY" : 125.665,
+ "placementWidth" : 166.741,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 166.741,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[4]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[4]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 410.535,
+ "computedY" : 125.665,
+ "placementX" : 410.535,
+ "placementY" : 125.665,
+ "placementWidth" : 166.741,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 166.741,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]",
+ "childIndex" : 5,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 113.415,
+ "placementX" : 30.0,
+ "placementY" : 113.415,
+ "placementWidth" : 66.538,
+ "placementHeight" : 8.787,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 66.538,
+ "contentHeight" : 8.787,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]",
+ "childIndex" : 6,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 88.565,
+ "placementX" : 30.0,
+ "placementY" : 88.565,
+ "placementWidth" : 546.89,
+ "placementHeight" : 19.85,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 546.89,
+ "contentHeight" : 19.85,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/SpacerNode[7]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]",
+ "childIndex" : 7,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 83.065,
+ "placementX" : 30.0,
+ "placementY" : 83.065,
+ "placementWidth" : 0.0,
+ "placementHeight" : 2.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 2.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[8]",
+ "entityName" : "CvV2EntryHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]",
+ "childIndex" : 8,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 70.352,
+ "placementX" : 30.0,
+ "placementY" : 70.352,
+ "placementWidth" : 547.276,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 547.276,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[8]/Title[0]",
+ "entityName" : "Title",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[8]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 30.0,
+ "computedY" : 70.352,
+ "placementX" : 30.0,
+ "placementY" : 70.352,
+ "placementWidth" : 91.613,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 91.613,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[8]/Title[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[8]/Title[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 30.0,
+ "computedY" : 70.352,
+ "placementX" : 30.0,
+ "placementY" : 70.352,
+ "placementWidth" : 91.613,
+ "placementHeight" : 9.712,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 91.613,
+ "contentHeight" : 9.712,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[8]/Date[1]",
+ "entityName" : "Date",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[8]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 410.535,
+ "computedY" : 70.815,
+ "placementX" : 410.535,
+ "placementY" : 70.815,
+ "placementWidth" : 166.741,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 166.741,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[8]/Date[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]/CvV2EntryHeader[8]/Date[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 410.535,
+ "computedY" : 70.815,
+ "placementX" : 410.535,
+ "placementY" : 70.815,
+ "placementWidth" : 166.741,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 166.741,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]",
+ "childIndex" : 9,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 58.565,
+ "placementX" : 30.0,
+ "placementY" : 58.565,
+ "placementWidth" : 58.064,
+ "placementHeight" : 8.787,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 58.064,
+ "contentHeight" : 8.787,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_4[11]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_4[11]",
+ "childIndex" : 10,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 33.715,
+ "placementX" : 30.0,
+ "placementY" : 33.715,
+ "placementWidth" : 534.11,
+ "placementHeight" : 19.85,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 534.11,
+ "contentHeight" : 19.85,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Title_5[12]",
+ "entityName" : "Title_5",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]",
+ "childIndex" : 12,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 797.795,
+ "placementX" : 18.0,
+ "placementY" : 797.795,
+ "placementWidth" : 185.606,
+ "placementHeight" : 26.095,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 185.606,
+ "contentHeight" : 26.095,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Title_5[12]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Title_5[12]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 18.0,
+ "computedY" : 799.795,
+ "placementX" : 18.0,
+ "placementY" : 799.795,
+ "placementWidth" : 185.606,
+ "placementHeight" : 16.095,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 185.606,
+ "contentHeight" : 16.095,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_5[13]",
+ "entityName" : "Body_5",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2ModernRoot[0]",
+ "childIndex" : 13,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 737.795,
+ "placementX" : 18.0,
+ "placementY" : 737.795,
+ "placementWidth" : 409.92,
+ "placementHeight" : 56.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 409.92,
+ "contentHeight" : 56.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 12.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_5[13]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_5[13]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 780.545,
+ "placementX" : 30.0,
+ "placementY" : 780.545,
+ "placementWidth" : 311.2,
+ "placementHeight" : 9.25,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 311.2,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_5[13]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_5[13]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 766.295,
+ "placementX" : 30.0,
+ "placementY" : 766.295,
+ "placementWidth" : 242.31,
+ "placementHeight" : 9.25,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 242.31,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_5[13]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_5[13]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 752.045,
+ "placementX" : 30.0,
+ "placementY" : 752.045,
+ "placementWidth" : 397.92,
+ "placementHeight" : 9.25,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 397.92,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2ModernRoot[0]/Body_5[13]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2ModernRoot[0]/Body_5[13]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 30.0,
+ "computedY" : 737.795,
+ "placementX" : 30.0,
+ "placementY" : 737.795,
+ "placementWidth" : 391.83,
+ "placementHeight" : 9.25,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 391.83,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/monogram_sidebar_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/monogram_sidebar_layout.json
new file mode 100644
index 000000000..a84293917
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/monogram_sidebar_layout.json
@@ -0,0 +1,1937 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 595.276,
+ "innerHeight" : 841.89,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CvV2MonogramSidebarRoot[0]",
+ "entityName" : "CvV2MonogramSidebarRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 0.0,
+ "computedY" : 42.25,
+ "placementX" : 0.0,
+ "placementY" : 42.25,
+ "placementWidth" : 595.276,
+ "placementHeight" : 799.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 595.276,
+ "contentHeight" : 799.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]",
+ "entityName" : "CvV2MonogramSidebarFrame",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 0.0,
+ "computedY" : 42.25,
+ "placementX" : 0.0,
+ "placementY" : 42.25,
+ "placementWidth" : 595.276,
+ "placementHeight" : 799.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 595.276,
+ "contentHeight" : 799.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "entityName" : "CvV2MonogramSidebarSidebar",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 0.0,
+ "computedY" : 42.25,
+ "placementX" : 0.0,
+ "placementY" : 42.25,
+ "placementWidth" : 196.441,
+ "placementHeight" : 799.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 196.441,
+ "contentHeight" : 799.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 36.0,
+ "right" : 13.0,
+ "bottom" : 0.0,
+ "left" : 13.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/CvV2MonogramSidebarFrame[0]",
+ "entityName" : "CvV2MonogramSidebarFrame",
+ "entityKind" : "LayerStackNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 683.89,
+ "placementX" : 13.0,
+ "placementY" : 683.89,
+ "placementWidth" : 170.441,
+ "placementHeight" : 122.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 122.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 42.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSpace[0]",
+ "entityName" : "CvV2MonogramSidebarSpace",
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/CvV2MonogramSidebarFrame[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 13.0,
+ "computedY" : 683.89,
+ "placementX" : 13.0,
+ "placementY" : 683.89,
+ "placementWidth" : 170.441,
+ "placementHeight" : 122.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 122.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarBadge[1]",
+ "entityName" : "CvV2MonogramSidebarBadge",
+ "entityKind" : "LayerStackNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/CvV2MonogramSidebarFrame[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 37.22,
+ "computedY" : 683.89,
+ "placementX" : 37.22,
+ "placementY" : 683.89,
+ "placementWidth" : 122.0,
+ "placementHeight" : 122.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 122.0,
+ "contentHeight" : 122.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarBadge[1]/CvV2MonogramSidebarRing[0]",
+ "entityName" : "CvV2MonogramSidebarRing",
+ "entityKind" : "EllipseNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarBadge[1]",
+ "childIndex" : 0,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 37.22,
+ "computedY" : 683.89,
+ "placementX" : 37.22,
+ "placementY" : 683.89,
+ "placementWidth" : 122.0,
+ "placementHeight" : 122.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 122.0,
+ "contentHeight" : 122.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarBadge[1]/CvV2MonogramSidebarInitials[1]",
+ "entityName" : "CvV2MonogramSidebarInitials",
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarBadge[1]",
+ "childIndex" : 1,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 74.856,
+ "computedY" : 715.74,
+ "placementX" : 74.856,
+ "placementY" : 715.74,
+ "placementWidth" : 46.728,
+ "placementHeight" : 58.3,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 46.728,
+ "contentHeight" : 58.3,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 618.29,
+ "placementX" : 13.0,
+ "placementY" : 618.29,
+ "placementWidth" : 170.441,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 6.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/LineNode[2]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 39.22,
+ "computedY" : 608.29,
+ "placementX" : 39.22,
+ "placementY" : 608.29,
+ "placementWidth" : 118.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 118.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 26.22,
+ "bottom" : 2.0,
+ "left" : 26.22
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 3,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 572.29,
+ "placementX" : 13.0,
+ "placementY" : 572.29,
+ "placementWidth" : 170.441,
+ "placementHeight" : 22.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 22.0,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 4,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 555.41,
+ "placementX" : 13.0,
+ "placementY" : 555.41,
+ "placementWidth" : 170.441,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 5,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 521.41,
+ "placementX" : 13.0,
+ "placementY" : 521.41,
+ "placementWidth" : 170.441,
+ "placementHeight" : 22.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 22.0,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 6,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 504.53,
+ "placementX" : 13.0,
+ "placementY" : 504.53,
+ "placementWidth" : 170.441,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 7,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 470.53,
+ "placementX" : 13.0,
+ "placementY" : 470.53,
+ "placementWidth" : 170.441,
+ "placementHeight" : 22.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 22.0,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[8]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 8,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 453.65,
+ "placementX" : 13.0,
+ "placementY" : 453.65,
+ "placementWidth" : 170.441,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 9,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 419.65,
+ "placementX" : 13.0,
+ "placementY" : 419.65,
+ "placementWidth" : 170.441,
+ "placementHeight" : 22.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 22.0,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 10,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 402.77,
+ "placementX" : 13.0,
+ "placementY" : 402.77,
+ "placementWidth" : 170.441,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[11]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 11,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 368.77,
+ "placementX" : 13.0,
+ "placementY" : 368.77,
+ "placementWidth" : 170.441,
+ "placementHeight" : 22.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 22.0,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[12]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 12,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 351.89,
+ "placementX" : 13.0,
+ "placementY" : 351.89,
+ "placementWidth" : 170.441,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[13]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 13,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 328.29,
+ "placementX" : 13.0,
+ "placementY" : 328.29,
+ "placementWidth" : 170.441,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 6.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/LineNode[14]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 14,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 39.22,
+ "computedY" : 318.29,
+ "placementX" : 39.22,
+ "placementY" : 318.29,
+ "placementWidth" : 118.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 118.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 26.22,
+ "bottom" : 2.0,
+ "left" : 26.22
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[15]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 15,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 293.17,
+ "placementX" : 13.0,
+ "placementY" : 293.17,
+ "placementWidth" : 170.441,
+ "placementHeight" : 9.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 9.12,
+ "margin" : {
+ "top" : 6.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[16]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 16,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 276.29,
+ "placementX" : 13.0,
+ "placementY" : 276.29,
+ "placementWidth" : 170.441,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[17]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 17,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 259.65,
+ "placementX" : 13.0,
+ "placementY" : 259.65,
+ "placementWidth" : 170.441,
+ "placementHeight" : 8.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 8.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[18]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 18,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 236.53,
+ "placementX" : 13.0,
+ "placementY" : 236.53,
+ "placementWidth" : 170.441,
+ "placementHeight" : 9.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 9.12,
+ "margin" : {
+ "top" : 6.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[19]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 19,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 219.65,
+ "placementX" : 13.0,
+ "placementY" : 219.65,
+ "placementWidth" : 170.441,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[20]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 20,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 203.01,
+ "placementX" : 13.0,
+ "placementY" : 203.01,
+ "placementWidth" : 170.441,
+ "placementHeight" : 8.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 8.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[21]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 21,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 179.41,
+ "placementX" : 13.0,
+ "placementY" : 179.41,
+ "placementWidth" : 170.441,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 6.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/LineNode[22]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 22,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 39.22,
+ "computedY" : 169.41,
+ "placementX" : 39.22,
+ "placementY" : 169.41,
+ "placementWidth" : 118.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 118.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 26.22,
+ "bottom" : 2.0,
+ "left" : 26.22
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[23]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 23,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 149.53,
+ "placementX" : 13.0,
+ "placementY" : 149.53,
+ "placementWidth" : 170.441,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[24]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 24,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 131.65,
+ "placementX" : 13.0,
+ "placementY" : 131.65,
+ "placementWidth" : 170.441,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[25]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 25,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 113.77,
+ "placementX" : 13.0,
+ "placementY" : 113.77,
+ "placementWidth" : 170.441,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[26]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 26,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 95.89,
+ "placementX" : 13.0,
+ "placementY" : 95.89,
+ "placementWidth" : 170.441,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[27]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 27,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 78.01,
+ "placementX" : 13.0,
+ "placementY" : 78.01,
+ "placementWidth" : 170.441,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[28]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 28,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 60.13,
+ "placementX" : 13.0,
+ "placementY" : 60.13,
+ "placementWidth" : 170.441,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]/ParagraphNode[29]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarSidebar[0]",
+ "childIndex" : 29,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 13.0,
+ "computedY" : 42.25,
+ "placementX" : 13.0,
+ "placementY" : 42.25,
+ "placementWidth" : 170.441,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 170.441,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "entityName" : "CvV2MonogramSidebarMain",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 196.441,
+ "computedY" : 146.921,
+ "placementX" : 196.441,
+ "placementY" : 146.921,
+ "placementWidth" : 398.835,
+ "placementHeight" : 694.968,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 398.835,
+ "contentHeight" : 694.968,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 38.0,
+ "right" : 20.0,
+ "bottom" : 24.0,
+ "left" : 18.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 764.896,
+ "placementX" : 214.441,
+ "placementY" : 764.896,
+ "placementWidth" : 360.835,
+ "placementHeight" : 38.994,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 360.835,
+ "contentHeight" : 38.994,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 6.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 714.901,
+ "placementX" : 214.441,
+ "placementY" : 714.901,
+ "placementWidth" : 360.835,
+ "placementHeight" : 38.994,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 360.835,
+ "contentHeight" : 38.994,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 689.021,
+ "placementX" : 214.441,
+ "placementY" : 689.021,
+ "placementWidth" : 360.835,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 360.835,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 12.0,
+ "right" : 0.0,
+ "bottom" : 22.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 3,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 645.221,
+ "placementX" : 214.441,
+ "placementY" : 645.221,
+ "placementWidth" : 147.699,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 147.699,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 6.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/LineNode[4]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 4,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 638.221,
+ "placementX" : 214.441,
+ "placementY" : 638.221,
+ "placementWidth" : 355.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 355.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 4.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 5,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 595.521,
+ "placementX" : 214.441,
+ "placementY" : 595.521,
+ "placementWidth" : 355.935,
+ "placementHeight" : 29.7,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 355.935,
+ "contentHeight" : 29.7,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 12.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 6,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 561.721,
+ "placementX" : 214.441,
+ "placementY" : 561.721,
+ "placementWidth" : 159.714,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 159.714,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 6.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/LineNode[7]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 7,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 554.721,
+ "placementX" : 214.441,
+ "placementY" : 554.721,
+ "placementWidth" : 355.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 355.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 4.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[8]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 8,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 531.361,
+ "placementX" : 214.441,
+ "placementY" : 531.361,
+ "placementWidth" : 112.772,
+ "placementHeight" : 9.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 112.772,
+ "contentHeight" : 9.36,
+ "margin" : {
+ "top" : 5.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 9,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 517.481,
+ "placementX" : 214.441,
+ "placementY" : 517.481,
+ "placementWidth" : 60.021,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 60.021,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 10,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 503.601,
+ "placementX" : 214.441,
+ "placementY" : 503.601,
+ "placementWidth" : 67.945,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 67.945,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[11]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 11,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 467.901,
+ "placementX" : 214.441,
+ "placementY" : 467.901,
+ "placementWidth" : 351.99,
+ "placementHeight" : 29.7,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 351.99,
+ "contentHeight" : 29.7,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[12]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 12,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 448.541,
+ "placementX" : 214.441,
+ "placementY" : 448.541,
+ "placementWidth" : 83.171,
+ "placementHeight" : 9.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 83.171,
+ "contentHeight" : 9.36,
+ "margin" : {
+ "top" : 5.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[13]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 13,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 434.661,
+ "placementX" : 214.441,
+ "placementY" : 434.661,
+ "placementWidth" : 47.952,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 47.952,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[14]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 14,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 420.781,
+ "placementX" : 214.441,
+ "placementY" : 420.781,
+ "placementWidth" : 49.066,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 49.066,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[15]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 15,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 385.081,
+ "placementX" : 214.441,
+ "placementY" : 385.081,
+ "placementWidth" : 356.948,
+ "placementHeight" : 29.7,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 356.948,
+ "contentHeight" : 29.7,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[16]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 16,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 363.281,
+ "placementX" : 214.441,
+ "placementY" : 363.281,
+ "placementWidth" : 56.934,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 56.934,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 6.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/LineNode[17]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 17,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 356.281,
+ "placementX" : 214.441,
+ "placementY" : 356.281,
+ "placementWidth" : 355.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 355.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 4.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[18]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 18,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 313.221,
+ "placementX" : 214.441,
+ "placementY" : 313.221,
+ "placementWidth" : 352.057,
+ "placementHeight" : 30.06,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 352.057,
+ "contentHeight" : 30.06,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[19]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 19,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 284.511,
+ "placementX" : 214.441,
+ "placementY" : 284.511,
+ "placementWidth" : 348.807,
+ "placementHeight" : 19.71,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 348.807,
+ "contentHeight" : 19.71,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[20]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 20,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 255.801,
+ "placementX" : 214.441,
+ "placementY" : 255.801,
+ "placementWidth" : 353.991,
+ "placementHeight" : 19.71,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 353.991,
+ "contentHeight" : 19.71,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[21]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 21,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 234.001,
+ "placementX" : 214.441,
+ "placementY" : 234.001,
+ "placementWidth" : 158.481,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 158.481,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 6.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/LineNode[22]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 22,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 227.001,
+ "placementX" : 214.441,
+ "placementY" : 227.001,
+ "placementWidth" : 355.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 355.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 4.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[23]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 23,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 205.641,
+ "placementX" : 214.441,
+ "placementY" : 205.641,
+ "placementWidth" : 221.101,
+ "placementHeight" : 9.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 221.101,
+ "contentHeight" : 9.36,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[24]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 24,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 188.281,
+ "placementX" : 214.441,
+ "placementY" : 188.281,
+ "placementWidth" : 180.103,
+ "placementHeight" : 9.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 180.103,
+ "contentHeight" : 9.36,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]/ParagraphNode[25]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2MonogramSidebarRoot[0]/CvV2MonogramSidebarFrame[0]/CvV2MonogramSidebarMain[1]",
+ "childIndex" : 25,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 214.441,
+ "computedY" : 170.921,
+ "placementX" : 214.441,
+ "placementY" : 170.921,
+ "placementWidth" : 293.896,
+ "placementHeight" : 9.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 293.896,
+ "contentHeight" : 9.36,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/nordic_clean_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/nordic_clean_layout.json
new file mode 100644
index 000000000..1e312c72d
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/nordic_clean_layout.json
@@ -0,0 +1,1787 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 559.276,
+ "innerHeight" : 805.89,
+ "margin" : {
+ "top" : 18.0,
+ "right" : 18.0,
+ "bottom" : 18.0,
+ "left" : 18.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CvV2NordicCleanRoot[0]",
+ "entityName" : "CvV2NordicCleanRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 18.0,
+ "computedY" : 342.38,
+ "placementX" : 18.0,
+ "placementY" : 342.38,
+ "placementWidth" : 559.276,
+ "placementHeight" : 481.51,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 559.276,
+ "contentHeight" : 481.51,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]",
+ "entityName" : "CvV2NordicCleanHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 770.49,
+ "placementX" : 18.0,
+ "placementY" : 770.49,
+ "placementWidth" : 559.276,
+ "placementHeight" : 53.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 559.276,
+ "contentHeight" : 53.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Identity[0]",
+ "entityName" : "Identity",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 18.0,
+ "computedY" : 772.65,
+ "placementX" : 18.0,
+ "placementY" : 772.65,
+ "placementWidth" : 198.18,
+ "placementHeight" : 51.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 198.18,
+ "contentHeight" : 51.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Identity[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Identity[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 18.0,
+ "computedY" : 790.49,
+ "placementX" : 18.0,
+ "placementY" : 790.49,
+ "placementWidth" : 198.18,
+ "placementHeight" : 32.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 198.18,
+ "contentHeight" : 32.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Identity[0]/CvV2NordicCleanNameAccent[1]",
+ "entityName" : "CvV2NordicCleanNameAccent",
+ "entityKind" : "ShapeNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Identity[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 18.0,
+ "computedY" : 785.89,
+ "placementX" : 18.0,
+ "placementY" : 785.89,
+ "placementWidth" : 64.0,
+ "placementHeight" : 2.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 64.0,
+ "contentHeight" : 2.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Identity[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Identity[0]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 18.0,
+ "computedY" : 774.65,
+ "placementX" : 18.0,
+ "placementY" : 774.65,
+ "placementWidth" : 81.404,
+ "placementHeight" : 9.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 81.404,
+ "contentHeight" : 9.24,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Contact[1]",
+ "entityName" : "Contact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 359.165,
+ "computedY" : 770.49,
+ "placementX" : 359.165,
+ "placementY" : 770.49,
+ "placementWidth" : 218.11,
+ "placementHeight" : 53.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 218.11,
+ "contentHeight" : 53.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 3.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Contact[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Contact[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 359.165,
+ "computedY" : 812.01,
+ "placementX" : 359.165,
+ "placementY" : 812.01,
+ "placementWidth" : 218.11,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 218.11,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Contact[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Contact[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 359.165,
+ "computedY" : 801.63,
+ "placementX" : 359.165,
+ "placementY" : 801.63,
+ "placementWidth" : 218.11,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 218.11,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Contact[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Contact[1]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 359.165,
+ "computedY" : 791.25,
+ "placementX" : 359.165,
+ "placementY" : 791.25,
+ "placementWidth" : 218.11,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 218.11,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Contact[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Contact[1]",
+ "childIndex" : 3,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 359.165,
+ "computedY" : 780.87,
+ "placementX" : 359.165,
+ "placementY" : 780.87,
+ "placementWidth" : 218.11,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 218.11,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Contact[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanHeader[0]/Contact[1]",
+ "childIndex" : 4,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 359.165,
+ "computedY" : 770.49,
+ "placementX" : 359.165,
+ "placementY" : 770.49,
+ "placementWidth" : 218.11,
+ "placementHeight" : 8.88,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 218.11,
+ "contentHeight" : 8.88,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanProfile[1]",
+ "entityName" : "CvV2NordicCleanProfile",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 714.28,
+ "placementX" : 18.0,
+ "placementY" : 714.28,
+ "placementWidth" : 545.958,
+ "placementHeight" : 49.21,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 545.958,
+ "contentHeight" : 49.21,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 10.0,
+ "bottom" : 8.0,
+ "left" : 10.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanProfile[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanProfile[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 746.37,
+ "placementX" : 28.0,
+ "placementY" : 746.37,
+ "placementWidth" : 28.964,
+ "placementHeight" : 9.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 28.964,
+ "contentHeight" : 9.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanProfile[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanProfile[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 722.28,
+ "placementX" : 28.0,
+ "placementY" : 722.28,
+ "placementWidth" : 525.958,
+ "placementHeight" : 20.09,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 525.958,
+ "contentHeight" : 20.09,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]",
+ "entityName" : "CvV2NordicCleanBody",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 342.38,
+ "placementX" : 18.0,
+ "placementY" : 342.38,
+ "placementWidth" : 559.276,
+ "placementHeight" : 364.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 559.276,
+ "contentHeight" : 364.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]",
+ "entityName" : "Rail",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 18.0,
+ "computedY" : 342.38,
+ "placementX" : 18.0,
+ "placementY" : 342.38,
+ "placementWidth" : 192.079,
+ "placementHeight" : 364.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 192.079,
+ "contentHeight" : 364.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 9.0,
+ "right" : 10.0,
+ "bottom" : 9.0,
+ "left" : 10.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]",
+ "entityName" : "CvV2NordicCleanSkills",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 546.8,
+ "placementX" : 28.0,
+ "placementY" : 546.8,
+ "placementWidth" : 172.079,
+ "placementHeight" : 151.48,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 172.079,
+ "contentHeight" : 151.48,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 689.16,
+ "placementX" : 28.0,
+ "placementY" : 689.16,
+ "placementWidth" : 24.495,
+ "placementHeight" : 9.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 24.495,
+ "contentHeight" : 9.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]/LineNode[1]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 685.06,
+ "placementX" : 28.0,
+ "placementY" : 685.06,
+ "placementWidth" : 82.0,
+ "placementHeight" : 1.1,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 82.0,
+ "contentHeight" : 1.1,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 671.48,
+ "placementX" : 28.0,
+ "placementY" : 671.48,
+ "placementWidth" : 152.938,
+ "placementHeight" : 8.58,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 152.938,
+ "contentHeight" : 8.58,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.5,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 639.14,
+ "placementX" : 28.0,
+ "placementY" : 639.14,
+ "placementWidth" : 162.984,
+ "placementHeight" : 27.84,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 162.984,
+ "contentHeight" : 27.84,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.5,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 616.43,
+ "placementX" : 28.0,
+ "placementY" : 616.43,
+ "placementWidth" : 165.93,
+ "placementHeight" : 18.21,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 165.93,
+ "contentHeight" : 18.21,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.5,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 593.72,
+ "placementX" : 28.0,
+ "placementY" : 593.72,
+ "placementWidth" : 172.079,
+ "placementHeight" : 18.21,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 172.079,
+ "contentHeight" : 18.21,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.5,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 571.01,
+ "placementX" : 28.0,
+ "placementY" : 571.01,
+ "placementWidth" : 157.786,
+ "placementHeight" : 18.21,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 157.786,
+ "contentHeight" : 18.21,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.5,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanSkills[0]",
+ "childIndex" : 7,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 548.3,
+ "placementX" : 28.0,
+ "placementY" : 548.3,
+ "placementWidth" : 164.815,
+ "placementHeight" : 18.21,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.815,
+ "contentHeight" : 18.21,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.5,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanEducation[1]",
+ "entityName" : "CvV2NordicCleanEducation",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 455.39,
+ "placementX" : 28.0,
+ "placementY" : 455.39,
+ "placementWidth" : 167.937,
+ "placementHeight" : 83.41,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 167.937,
+ "contentHeight" : 83.41,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanEducation[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanEducation[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 529.68,
+ "placementX" : 28.0,
+ "placementY" : 529.68,
+ "placementWidth" : 39.854,
+ "placementHeight" : 9.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 39.854,
+ "contentHeight" : 9.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanEducation[1]/LineNode[1]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanEducation[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 525.58,
+ "placementX" : 28.0,
+ "placementY" : 525.58,
+ "placementWidth" : 82.0,
+ "placementHeight" : 1.1,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 82.0,
+ "contentHeight" : 1.1,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanEducation[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanEducation[1]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 502.85,
+ "placementX" : 28.0,
+ "placementY" : 502.85,
+ "placementWidth" : 163.214,
+ "placementHeight" : 17.73,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 163.214,
+ "contentHeight" : 17.73,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanEducation[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanEducation[1]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 480.12,
+ "placementX" : 28.0,
+ "placementY" : 480.12,
+ "placementWidth" : 167.937,
+ "placementHeight" : 17.73,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 167.937,
+ "contentHeight" : 17.73,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanEducation[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanEducation[1]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 457.39,
+ "placementX" : 28.0,
+ "placementY" : 457.39,
+ "placementWidth" : 144.285,
+ "placementHeight" : 17.73,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 144.285,
+ "contentHeight" : 17.73,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanAdditional[2]",
+ "entityName" : "CvV2NordicCleanAdditional",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 351.38,
+ "placementX" : 28.0,
+ "placementY" : 351.38,
+ "placementWidth" : 171.77,
+ "placementHeight" : 96.01,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 171.77,
+ "contentHeight" : 96.01,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanAdditional[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanAdditional[2]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 438.27,
+ "placementX" : 28.0,
+ "placementY" : 438.27,
+ "placementWidth" : 42.157,
+ "placementHeight" : 9.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 42.157,
+ "contentHeight" : 9.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanAdditional[2]/LineNode[1]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanAdditional[2]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 434.17,
+ "placementX" : 28.0,
+ "placementY" : 434.17,
+ "placementWidth" : 82.0,
+ "placementHeight" : 1.1,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 82.0,
+ "contentHeight" : 1.1,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanAdditional[2]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanAdditional[2]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 411.08,
+ "placementX" : 28.0,
+ "placementY" : 411.08,
+ "placementWidth" : 160.112,
+ "placementHeight" : 18.09,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 160.112,
+ "contentHeight" : 18.09,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.5,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanAdditional[2]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanAdditional[2]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 398.06,
+ "placementX" : 28.0,
+ "placementY" : 398.06,
+ "placementWidth" : 168.476,
+ "placementHeight" : 8.52,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 168.476,
+ "contentHeight" : 8.52,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.5,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanAdditional[2]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanAdditional[2]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 375.47,
+ "placementX" : 28.0,
+ "placementY" : 375.47,
+ "placementWidth" : 164.635,
+ "placementHeight" : 18.09,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 164.635,
+ "contentHeight" : 18.09,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.5,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanAdditional[2]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Rail[0]/CvV2NordicCleanAdditional[2]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 28.0,
+ "computedY" : 352.88,
+ "placementX" : 28.0,
+ "placementY" : 352.88,
+ "placementWidth" : 171.77,
+ "placementHeight" : 18.09,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 171.77,
+ "contentHeight" : 18.09,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 1.5,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]",
+ "entityName" : "Main",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 228.939,
+ "computedY" : 386.12,
+ "placementX" : 228.939,
+ "placementY" : 386.12,
+ "placementWidth" : 344.659,
+ "placementHeight" : 321.16,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 344.659,
+ "contentHeight" : 321.16,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]",
+ "entityName" : "CvV2NordicCleanExperience",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 228.939,
+ "computedY" : 518.22,
+ "placementX" : 228.939,
+ "placementY" : 518.22,
+ "placementWidth" : 344.659,
+ "placementHeight" : 189.06,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 344.659,
+ "contentHeight" : 189.06,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 698.16,
+ "placementX" : 228.939,
+ "placementY" : 698.16,
+ "placementWidth" : 43.426,
+ "placementHeight" : 9.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 43.426,
+ "contentHeight" : 9.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]/LineNode[1]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 694.06,
+ "placementX" : 228.939,
+ "placementY" : 694.06,
+ "placementWidth" : 130.0,
+ "placementHeight" : 1.1,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 130.0,
+ "contentHeight" : 1.1,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 679.46,
+ "placementX" : 228.939,
+ "placementY" : 679.46,
+ "placementWidth" : 141.896,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 141.896,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 667.82,
+ "placementX" : 228.939,
+ "placementY" : 667.82,
+ "placementWidth" : 58.399,
+ "placementHeight" : 8.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 58.399,
+ "contentHeight" : 8.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 635.76,
+ "placementX" : 228.939,
+ "placementY" : 635.76,
+ "placementWidth" : 344.659,
+ "placementHeight" : 29.06,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 344.659,
+ "contentHeight" : 29.06,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 618.16,
+ "placementX" : 228.939,
+ "placementY" : 618.16,
+ "placementWidth" : 110.398,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 110.398,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 606.52,
+ "placementX" : 228.939,
+ "placementY" : 606.52,
+ "placementWidth" : 46.656,
+ "placementHeight" : 8.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 46.656,
+ "contentHeight" : 8.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]",
+ "childIndex" : 7,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 574.46,
+ "placementX" : 228.939,
+ "placementY" : 574.46,
+ "placementWidth" : 335.354,
+ "placementHeight" : 29.06,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 335.354,
+ "contentHeight" : 29.06,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]/ParagraphNode[8]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]",
+ "childIndex" : 8,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 556.86,
+ "placementX" : 228.939,
+ "placementY" : 556.86,
+ "placementWidth" : 108.614,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 108.614,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]",
+ "childIndex" : 9,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 545.22,
+ "placementX" : 228.939,
+ "placementY" : 545.22,
+ "placementWidth" : 41.321,
+ "placementHeight" : 8.64,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 41.321,
+ "contentHeight" : 8.64,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanExperience[0]",
+ "childIndex" : 10,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 523.22,
+ "placementX" : 228.939,
+ "placementY" : 523.22,
+ "placementWidth" : 333.596,
+ "placementHeight" : 19.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 333.596,
+ "contentHeight" : 19.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 5.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanProjects[1]",
+ "entityName" : "CvV2NordicCleanProjects",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 228.939,
+ "computedY" : 386.12,
+ "placementX" : 228.939,
+ "placementY" : 386.12,
+ "placementWidth" : 342.335,
+ "placementHeight" : 123.1,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 342.335,
+ "contentHeight" : 123.1,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanProjects[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanProjects[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 500.1,
+ "placementX" : 228.939,
+ "placementY" : 500.1,
+ "placementWidth" : 73.849,
+ "placementHeight" : 9.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 73.849,
+ "contentHeight" : 9.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanProjects[1]/LineNode[1]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanProjects[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 496.0,
+ "placementX" : 228.939,
+ "placementY" : 496.0,
+ "placementWidth" : 130.0,
+ "placementHeight" : 1.1,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 130.0,
+ "contentHeight" : 1.1,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 2.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanProjects[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanProjects[1]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 462.74,
+ "placementX" : 228.939,
+ "placementY" : 462.74,
+ "placementWidth" : 337.975,
+ "placementHeight" : 28.26,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 337.975,
+ "contentHeight" : 28.26,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 3.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanProjects[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanProjects[1]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 438.2,
+ "placementX" : 228.939,
+ "placementY" : 438.2,
+ "placementWidth" : 342.335,
+ "placementHeight" : 18.54,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 342.335,
+ "contentHeight" : 18.54,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 3.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanProjects[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanProjects[1]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 413.66,
+ "placementX" : 228.939,
+ "placementY" : 413.66,
+ "placementWidth" : 336.127,
+ "placementHeight" : 18.54,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 336.127,
+ "contentHeight" : 18.54,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 3.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanProjects[1]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2NordicCleanRoot[0]/CvV2NordicCleanBody[2]/Main[1]/CvV2NordicCleanProjects[1]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 228.939,
+ "computedY" : 389.12,
+ "placementX" : 228.939,
+ "placementY" : 389.12,
+ "placementWidth" : 308.75,
+ "placementHeight" : 18.54,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 308.75,
+ "contentHeight" : 18.54,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 3.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/panel_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/panel_layout.json
new file mode 100644
index 000000000..c394b789c
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/panel_layout.json
@@ -0,0 +1,2417 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 559.276,
+ "innerHeight" : 805.89,
+ "margin" : {
+ "top" : 18.0,
+ "right" : 18.0,
+ "bottom" : 18.0,
+ "left" : 18.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CvV2PanelRoot[0]",
+ "entityName" : "CvV2PanelRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 18.0,
+ "computedY" : 43.49,
+ "placementX" : 18.0,
+ "placementY" : 43.49,
+ "placementWidth" : 559.276,
+ "placementHeight" : 780.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 559.276,
+ "contentHeight" : 780.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelHeader[0]",
+ "entityName" : "CvV2PanelHeader",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2PanelRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 728.45,
+ "placementX" : 18.0,
+ "placementY" : 728.45,
+ "placementWidth" : 559.276,
+ "placementHeight" : 95.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 559.276,
+ "contentHeight" : 95.44,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 8.0,
+ "bottom" : 8.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelHeader[0]/SpacerNode[0]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 26.0,
+ "computedY" : 815.89,
+ "placementX" : 26.0,
+ "placementY" : 815.89,
+ "placementWidth" : 543.276,
+ "placementHeight" : 0.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 543.276,
+ "contentHeight" : 0.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelHeader[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 26.0,
+ "computedY" : 781.09,
+ "placementX" : 26.0,
+ "placementY" : 781.09,
+ "placementWidth" : 543.276,
+ "placementHeight" : 30.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 543.276,
+ "contentHeight" : 30.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelHeader[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelHeader[0]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 26.0,
+ "computedY" : 765.81,
+ "placementX" : 26.0,
+ "placementY" : 765.81,
+ "placementWidth" : 543.276,
+ "placementHeight" : 11.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 543.276,
+ "contentHeight" : 11.28,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelHeader[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelHeader[0]",
+ "childIndex" : 3,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 26.0,
+ "computedY" : 751.13,
+ "placementX" : 26.0,
+ "placementY" : 751.13,
+ "placementWidth" : 543.276,
+ "placementHeight" : 10.68,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 543.276,
+ "contentHeight" : 10.68,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelHeader[0]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelHeader[0]",
+ "childIndex" : 4,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 26.0,
+ "computedY" : 736.45,
+ "placementX" : 26.0,
+ "placementY" : 736.45,
+ "placementWidth" : 543.276,
+ "placementHeight" : 10.68,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 543.276,
+ "contentHeight" : 10.68,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelProfileCard[1]",
+ "entityName" : "CvV2PanelProfileCard",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2PanelRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 643.45,
+ "placementX" : 18.0,
+ "placementY" : 643.45,
+ "placementWidth" : 559.276,
+ "placementHeight" : 79.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 559.276,
+ "contentHeight" : 79.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 8.0,
+ "bottom" : 8.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelProfileCard[1]/SpacerNode[0]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelProfileCard[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 26.0,
+ "computedY" : 714.45,
+ "placementX" : 26.0,
+ "placementY" : 714.45,
+ "placementWidth" : 543.276,
+ "placementHeight" : 0.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 543.276,
+ "contentHeight" : 0.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelProfileCard[1]/Header[1]",
+ "entityName" : "Header",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelProfileCard[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 26.0,
+ "computedY" : 691.69,
+ "placementX" : 26.0,
+ "placementY" : 691.69,
+ "placementWidth" : 54.0,
+ "placementHeight" : 19.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 54.0,
+ "contentHeight" : 19.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelProfileCard[1]/Header[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelProfileCard[1]/Header[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 696.89,
+ "placementX" : 26.0,
+ "placementY" : 696.89,
+ "placementWidth" : 40.789,
+ "placementHeight" : 14.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 40.789,
+ "contentHeight" : 14.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelProfileCard[1]/Header[1]/CvV2PanelAccent_profile[1]",
+ "entityName" : "CvV2PanelAccent_profile",
+ "entityKind" : "ShapeNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelProfileCard[1]/Header[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 691.69,
+ "placementX" : 26.0,
+ "placementY" : 691.69,
+ "placementWidth" : 54.0,
+ "placementHeight" : 2.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 54.0,
+ "contentHeight" : 2.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelProfileCard[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelProfileCard[1]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 26.0,
+ "computedY" : 651.45,
+ "placementX" : 26.0,
+ "placementY" : 651.45,
+ "placementWidth" : 534.202,
+ "placementHeight" : 36.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 534.202,
+ "contentHeight" : 36.24,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]",
+ "entityName" : "CvV2PanelStacked",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2PanelRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 18.0,
+ "computedY" : 43.49,
+ "placementX" : 18.0,
+ "placementY" : 43.49,
+ "placementWidth" : 559.276,
+ "placementHeight" : 593.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 559.276,
+ "contentHeight" : 593.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]",
+ "entityName" : "CvV2PanelStackedLeft",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 18.0,
+ "computedY" : 79.01,
+ "placementX" : 18.0,
+ "placementY" : 79.01,
+ "placementWidth" : 276.638,
+ "placementHeight" : 558.44,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 276.638,
+ "contentHeight" : 558.44,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]",
+ "entityName" : "CvV2PanelSkillsCard",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 18.0,
+ "computedY" : 444.61,
+ "placementX" : 18.0,
+ "placementY" : 444.61,
+ "placementWidth" : 276.638,
+ "placementHeight" : 192.84,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 276.638,
+ "contentHeight" : 192.84,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 8.0,
+ "bottom" : 8.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]/SpacerNode[0]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 629.45,
+ "placementX" : 26.0,
+ "placementY" : 629.45,
+ "placementWidth" : 260.638,
+ "placementHeight" : 0.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 260.638,
+ "contentHeight" : 0.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]/Header[1]",
+ "entityName" : "Header",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 606.69,
+ "placementX" : 26.0,
+ "placementY" : 606.69,
+ "placementWidth" : 54.0,
+ "placementHeight" : 19.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 54.0,
+ "contentHeight" : 19.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]/Header[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]/Header[1]",
+ "childIndex" : 0,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 26.0,
+ "computedY" : 611.89,
+ "placementX" : 26.0,
+ "placementY" : 611.89,
+ "placementWidth" : 33.03,
+ "placementHeight" : 14.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 33.03,
+ "contentHeight" : 14.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]/Header[1]/CvV2PanelAccent_skills[1]",
+ "entityName" : "CvV2PanelAccent_skills",
+ "entityKind" : "ShapeNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]/Header[1]",
+ "childIndex" : 1,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 26.0,
+ "computedY" : 606.69,
+ "placementX" : 26.0,
+ "placementY" : 606.69,
+ "placementWidth" : 54.0,
+ "placementHeight" : 2.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 54.0,
+ "contentHeight" : 2.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]/ListNode[2]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 591.41,
+ "placementX" : 26.0,
+ "placementY" : 591.41,
+ "placementWidth" : 208.868,
+ "placementHeight" : 11.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 208.868,
+ "contentHeight" : 11.28,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]/ListNode[3]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 563.65,
+ "placementX" : 26.0,
+ "placementY" : 563.65,
+ "placementWidth" : 239.597,
+ "placementHeight" : 23.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 239.597,
+ "contentHeight" : 23.76,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]/ListNode[4]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 535.89,
+ "placementX" : 26.0,
+ "placementY" : 535.89,
+ "placementWidth" : 251.281,
+ "placementHeight" : 23.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 251.281,
+ "contentHeight" : 23.76,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]/ListNode[5]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 508.13,
+ "placementX" : 26.0,
+ "placementY" : 508.13,
+ "placementWidth" : 234.032,
+ "placementHeight" : 23.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 234.032,
+ "contentHeight" : 23.76,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]/ListNode[6]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 480.37,
+ "placementX" : 26.0,
+ "placementY" : 480.37,
+ "placementWidth" : 215.241,
+ "placementHeight" : 23.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 215.241,
+ "contentHeight" : 23.76,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]/ListNode[7]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelSkillsCard[0]",
+ "childIndex" : 7,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 452.61,
+ "placementX" : 26.0,
+ "placementY" : 452.61,
+ "placementWidth" : 257.87,
+ "placementHeight" : 23.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 257.87,
+ "contentHeight" : 23.76,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]",
+ "entityName" : "CvV2PanelEducationCard",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 18.0,
+ "computedY" : 222.33,
+ "placementX" : 18.0,
+ "placementY" : 222.33,
+ "placementWidth" : 276.638,
+ "placementHeight" : 216.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 276.638,
+ "contentHeight" : 216.28,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 8.0,
+ "bottom" : 8.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/SpacerNode[0]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 430.61,
+ "placementX" : 26.0,
+ "placementY" : 430.61,
+ "placementWidth" : 260.638,
+ "placementHeight" : 0.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 260.638,
+ "contentHeight" : 0.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/Header[1]",
+ "entityName" : "Header",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 407.85,
+ "placementX" : 26.0,
+ "placementY" : 407.85,
+ "placementWidth" : 61.318,
+ "placementHeight" : 19.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 61.318,
+ "contentHeight" : 19.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/Header[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/Header[1]",
+ "childIndex" : 0,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 26.0,
+ "computedY" : 413.05,
+ "placementX" : 26.0,
+ "placementY" : 413.05,
+ "placementWidth" : 61.318,
+ "placementHeight" : 14.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 61.318,
+ "contentHeight" : 14.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/Header[1]/CvV2PanelAccent_education[1]",
+ "entityName" : "CvV2PanelAccent_education",
+ "entityKind" : "ShapeNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/Header[1]",
+ "childIndex" : 1,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 26.0,
+ "computedY" : 407.85,
+ "placementX" : 26.0,
+ "placementY" : 407.85,
+ "placementWidth" : 54.0,
+ "placementHeight" : 2.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 54.0,
+ "contentHeight" : 2.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 393.57,
+ "placementX" : 26.0,
+ "placementY" : 393.57,
+ "placementWidth" : 152.449,
+ "placementHeight" : 11.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 152.449,
+ "contentHeight" : 11.28,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 379.77,
+ "placementX" : 26.0,
+ "placementY" : 379.77,
+ "placementWidth" : 94.158,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 94.158,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 352.01,
+ "placementX" : 26.0,
+ "placementY" : 352.01,
+ "placementWidth" : 209.263,
+ "placementHeight" : 23.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 209.263,
+ "contentHeight" : 23.76,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/SpacerNode[5]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 347.01,
+ "placementX" : 26.0,
+ "placementY" : 347.01,
+ "placementWidth" : 0.0,
+ "placementHeight" : 2.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 2.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 332.73,
+ "placementX" : 26.0,
+ "placementY" : 332.73,
+ "placementWidth" : 163.485,
+ "placementHeight" : 11.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 163.485,
+ "contentHeight" : 11.28,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]",
+ "childIndex" : 7,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 318.93,
+ "placementX" : 26.0,
+ "placementY" : 318.93,
+ "placementWidth" : 89.793,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 89.793,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/ParagraphNode[8]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]",
+ "childIndex" : 8,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 291.17,
+ "placementX" : 26.0,
+ "placementY" : 291.17,
+ "placementWidth" : 232.876,
+ "placementHeight" : 23.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 232.876,
+ "contentHeight" : 23.76,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/SpacerNode[9]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]",
+ "childIndex" : 9,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 286.17,
+ "placementX" : 26.0,
+ "placementY" : 286.17,
+ "placementWidth" : 0.0,
+ "placementHeight" : 2.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 2.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]",
+ "childIndex" : 10,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 271.89,
+ "placementX" : 26.0,
+ "placementY" : 271.89,
+ "placementWidth" : 158.371,
+ "placementHeight" : 11.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 158.371,
+ "contentHeight" : 11.28,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/ParagraphNode[11]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]",
+ "childIndex" : 11,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 258.09,
+ "placementX" : 26.0,
+ "placementY" : 258.09,
+ "placementWidth" : 66.681,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 66.681,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]/ParagraphNode[12]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelEducationCard[1]",
+ "childIndex" : 12,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 230.33,
+ "placementX" : 26.0,
+ "placementY" : 230.33,
+ "placementWidth" : 239.127,
+ "placementHeight" : 23.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 239.127,
+ "contentHeight" : 23.76,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]",
+ "entityName" : "CvV2PanelAdditionalCard",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 18.0,
+ "computedY" : 79.01,
+ "placementX" : 18.0,
+ "placementY" : 79.01,
+ "placementWidth" : 276.638,
+ "placementHeight" : 137.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 276.638,
+ "contentHeight" : 137.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 8.0,
+ "bottom" : 8.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]/SpacerNode[0]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 208.33,
+ "placementX" : 26.0,
+ "placementY" : 208.33,
+ "placementWidth" : 260.638,
+ "placementHeight" : 0.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 260.638,
+ "contentHeight" : 0.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]/Header[1]",
+ "entityName" : "Header",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 185.57,
+ "placementX" : 26.0,
+ "placementY" : 185.57,
+ "placementWidth" : 63.69,
+ "placementHeight" : 19.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 63.69,
+ "contentHeight" : 19.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]/Header[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]/Header[1]",
+ "childIndex" : 0,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 26.0,
+ "computedY" : 190.77,
+ "placementX" : 26.0,
+ "placementY" : 190.77,
+ "placementWidth" : 63.69,
+ "placementHeight" : 14.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 63.69,
+ "contentHeight" : 14.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]/Header[1]/CvV2PanelAccent_additional[1]",
+ "entityName" : "CvV2PanelAccent_additional",
+ "entityKind" : "ShapeNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]/Header[1]",
+ "childIndex" : 1,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 26.0,
+ "computedY" : 185.57,
+ "placementX" : 26.0,
+ "placementY" : 185.57,
+ "placementWidth" : 54.0,
+ "placementHeight" : 2.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 54.0,
+ "contentHeight" : 2.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 157.81,
+ "placementX" : 26.0,
+ "placementY" : 157.81,
+ "placementWidth" : 246.252,
+ "placementHeight" : 23.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 246.252,
+ "contentHeight" : 23.76,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 142.53,
+ "placementX" : 26.0,
+ "placementY" : 142.53,
+ "placementWidth" : 223.053,
+ "placementHeight" : 11.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 223.053,
+ "contentHeight" : 11.28,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 114.77,
+ "placementX" : 26.0,
+ "placementY" : 114.77,
+ "placementWidth" : 217.967,
+ "placementHeight" : 23.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 217.967,
+ "contentHeight" : 23.76,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedLeft[0]/CvV2PanelAdditionalCard[2]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 26.0,
+ "computedY" : 87.01,
+ "placementX" : 26.0,
+ "placementY" : 87.01,
+ "placementWidth" : 240.396,
+ "placementHeight" : 23.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 240.396,
+ "contentHeight" : 23.76,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]",
+ "entityName" : "CvV2PanelStackedRight",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 300.638,
+ "computedY" : 43.49,
+ "placementX" : 300.638,
+ "placementY" : 43.49,
+ "placementWidth" : 276.638,
+ "placementHeight" : 593.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 276.638,
+ "contentHeight" : 593.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]",
+ "entityName" : "CvV2PanelExperienceCard",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 300.638,
+ "computedY" : 346.29,
+ "placementX" : 300.638,
+ "placementY" : 346.29,
+ "placementWidth" : 276.638,
+ "placementHeight" : 291.16,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 276.638,
+ "contentHeight" : 291.16,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 8.0,
+ "bottom" : 8.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/SpacerNode[0]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 629.45,
+ "placementX" : 308.638,
+ "placementY" : 629.45,
+ "placementWidth" : 260.638,
+ "placementHeight" : 0.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 260.638,
+ "contentHeight" : 0.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/Header[1]",
+ "entityName" : "Header",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 606.69,
+ "placementX" : 308.638,
+ "placementY" : 606.69,
+ "placementWidth" : 62.026,
+ "placementHeight" : 19.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 62.026,
+ "contentHeight" : 19.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/Header[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/Header[1]",
+ "childIndex" : 0,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 308.638,
+ "computedY" : 611.89,
+ "placementX" : 308.638,
+ "placementY" : 611.89,
+ "placementWidth" : 62.026,
+ "placementHeight" : 14.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 62.026,
+ "contentHeight" : 14.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/Header[1]/CvV2PanelAccent_experience[1]",
+ "entityName" : "CvV2PanelAccent_experience",
+ "entityKind" : "ShapeNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/Header[1]",
+ "childIndex" : 1,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 308.638,
+ "computedY" : 606.69,
+ "placementX" : 308.638,
+ "placementY" : 606.69,
+ "placementWidth" : 54.0,
+ "placementHeight" : 2.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 54.0,
+ "contentHeight" : 2.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 592.41,
+ "placementX" : 308.638,
+ "placementY" : 592.41,
+ "placementWidth" : 169.914,
+ "placementHeight" : 11.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 169.914,
+ "contentHeight" : 11.28,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 578.61,
+ "placementX" : 308.638,
+ "placementY" : 578.61,
+ "placementWidth" : 72.999,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 72.999,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 525.89,
+ "placementX" : 308.638,
+ "placementY" : 525.89,
+ "placementWidth" : 258.904,
+ "placementHeight" : 48.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 258.904,
+ "contentHeight" : 48.72,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/SpacerNode[5]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 520.89,
+ "placementX" : 308.638,
+ "placementY" : 520.89,
+ "placementWidth" : 0.0,
+ "placementHeight" : 2.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 2.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 506.61,
+ "placementX" : 308.638,
+ "placementY" : 506.61,
+ "placementWidth" : 132.662,
+ "placementHeight" : 11.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 132.662,
+ "contentHeight" : 11.28,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]",
+ "childIndex" : 7,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 492.81,
+ "placementX" : 308.638,
+ "placementY" : 492.81,
+ "placementWidth" : 58.32,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 58.32,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/ParagraphNode[8]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]",
+ "childIndex" : 8,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 427.61,
+ "placementX" : 308.638,
+ "placementY" : 427.61,
+ "placementWidth" : 245.97,
+ "placementHeight" : 61.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 245.97,
+ "contentHeight" : 61.2,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/SpacerNode[9]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]",
+ "childIndex" : 9,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 422.61,
+ "placementX" : 308.638,
+ "placementY" : 422.61,
+ "placementWidth" : 0.0,
+ "placementHeight" : 2.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 2.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]",
+ "childIndex" : 10,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 408.33,
+ "placementX" : 308.638,
+ "placementY" : 408.33,
+ "placementWidth" : 130.566,
+ "placementHeight" : 11.28,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 130.566,
+ "contentHeight" : 11.28,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/ParagraphNode[11]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]",
+ "childIndex" : 11,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 394.53,
+ "placementX" : 308.638,
+ "placementY" : 394.53,
+ "placementWidth" : 51.651,
+ "placementHeight" : 10.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 51.651,
+ "contentHeight" : 10.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]/ParagraphNode[12]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelExperienceCard[0]",
+ "childIndex" : 12,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 354.29,
+ "placementX" : 308.638,
+ "placementY" : 354.29,
+ "placementWidth" : 240.8,
+ "placementHeight" : 36.24,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 240.8,
+ "contentHeight" : 36.24,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]",
+ "entityName" : "CvV2PanelProjectsCard",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 300.638,
+ "computedY" : 43.49,
+ "placementX" : 300.638,
+ "placementY" : 43.49,
+ "placementWidth" : 276.638,
+ "placementHeight" : 296.8,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 276.638,
+ "contentHeight" : 296.8,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 8.0,
+ "right" : 8.0,
+ "bottom" : 8.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]/SpacerNode[0]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 332.29,
+ "placementX" : 308.638,
+ "placementY" : 332.29,
+ "placementWidth" : 260.638,
+ "placementHeight" : 0.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 260.638,
+ "contentHeight" : 0.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]/Header[1]",
+ "entityName" : "Header",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 309.53,
+ "placementX" : 308.638,
+ "placementY" : 309.53,
+ "placementWidth" : 54.0,
+ "placementHeight" : 19.76,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 54.0,
+ "contentHeight" : 19.76,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]/Header[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]/Header[1]",
+ "childIndex" : 0,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 308.638,
+ "computedY" : 314.73,
+ "placementX" : 308.638,
+ "placementY" : 314.73,
+ "placementWidth" : 53.55,
+ "placementHeight" : 14.56,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 53.55,
+ "contentHeight" : 14.56,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]/Header[1]/CvV2PanelAccent_projects[1]",
+ "entityName" : "CvV2PanelAccent_projects",
+ "entityKind" : "ShapeNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]/Header[1]",
+ "childIndex" : 1,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 308.638,
+ "computedY" : 309.53,
+ "placementX" : 308.638,
+ "placementY" : 309.53,
+ "placementWidth" : 54.0,
+ "placementHeight" : 2.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 54.0,
+ "contentHeight" : 2.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]/ListNode[2]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 242.53,
+ "placementX" : 308.638,
+ "placementY" : 242.53,
+ "placementWidth" : 249.72,
+ "placementHeight" : 63.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 249.72,
+ "contentHeight" : 63.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]/SpacerNode[3]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 237.53,
+ "placementX" : 308.638,
+ "placementY" : 237.53,
+ "placementWidth" : 0.0,
+ "placementHeight" : 2.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 2.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]/ListNode[4]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 170.53,
+ "placementX" : 308.638,
+ "placementY" : 170.53,
+ "placementWidth" : 254.43,
+ "placementHeight" : 63.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 254.43,
+ "contentHeight" : 63.0,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]/SpacerNode[5]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 165.53,
+ "placementX" : 308.638,
+ "placementY" : 165.53,
+ "placementWidth" : 0.0,
+ "placementHeight" : 2.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 2.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]/ListNode[6]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 111.01,
+ "placementX" : 308.638,
+ "placementY" : 111.01,
+ "placementWidth" : 247.681,
+ "placementHeight" : 50.52,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 247.681,
+ "contentHeight" : 50.52,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]/SpacerNode[7]",
+ "entityName" : null,
+ "entityKind" : "SpacerNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]",
+ "childIndex" : 7,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 106.01,
+ "placementX" : 308.638,
+ "placementY" : 106.01,
+ "placementWidth" : 0.0,
+ "placementHeight" : 2.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 0.0,
+ "contentHeight" : 2.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]/ListNode[8]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "CvV2PanelRoot[0]/CvV2PanelStacked[2]/CvV2PanelStackedRight[1]/CvV2PanelProjectsCard[1]",
+ "childIndex" : 8,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 308.638,
+ "computedY" : 51.49,
+ "placementX" : 308.638,
+ "placementY" : 51.49,
+ "placementWidth" : 260.295,
+ "placementHeight" : 50.52,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 260.295,
+ "contentHeight" : 50.52,
+ "margin" : {
+ "top" : 1.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/sidebar_portrait_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/sidebar_portrait_layout.json
new file mode 100644
index 000000000..b979b1e84
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/sidebar_portrait_layout.json
@@ -0,0 +1,2687 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 595.276,
+ "innerHeight" : 841.89,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "CvV2SidebarPortraitRoot[0]",
+ "entityName" : "CvV2SidebarPortraitRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 0.0,
+ "computedY" : 64.8,
+ "placementX" : 0.0,
+ "placementY" : 64.8,
+ "placementWidth" : 595.276,
+ "placementHeight" : 777.09,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 595.276,
+ "contentHeight" : 777.09,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]",
+ "entityName" : "CvV2SidebarPortraitBodyRow",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 0.0,
+ "computedY" : 64.8,
+ "placementX" : 0.0,
+ "placementY" : 64.8,
+ "placementWidth" : 595.276,
+ "placementHeight" : 777.09,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 595.276,
+ "contentHeight" : 777.09,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "entityName" : "CvV2SidebarPortraitSidebar",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 0.0,
+ "computedY" : 64.8,
+ "placementX" : 0.0,
+ "placementY" : 64.8,
+ "placementWidth" : 202.394,
+ "placementHeight" : 777.09,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 202.394,
+ "contentHeight" : 777.09,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 54.0,
+ "right" : 20.0,
+ "bottom" : 45.45,
+ "left" : 26.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]",
+ "entityName" : "CvV2SidebarPortraitPhoto",
+ "entityKind" : "LayerStackNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 97.994,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 97.994,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 29.2,
+ "bottom" : 17.0,
+ "left" : 29.2
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "entityName" : "SvgIcon",
+ "entityKind" : "LayerStackNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 97.994,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 97.994,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer0[0]",
+ "entityName" : "SvgLayer0",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 0,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer1[1]",
+ "entityName" : "SvgLayer1",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 1,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer2[2]",
+ "entityName" : "SvgLayer2",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 2,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer3[3]",
+ "entityName" : "SvgLayer3",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 3,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer4[4]",
+ "entityName" : "SvgLayer4",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 4,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer5[5]",
+ "entityName" : "SvgLayer5",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 5,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer6[6]",
+ "entityName" : "SvgLayer6",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 6,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer7[7]",
+ "entityName" : "SvgLayer7",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 7,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer8[8]",
+ "entityName" : "SvgLayer8",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 8,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer9[9]",
+ "entityName" : "SvgLayer9",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 9,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer10[10]",
+ "entityName" : "SvgLayer10",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 10,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer11[11]",
+ "entityName" : "SvgLayer11",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 11,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer12[12]",
+ "entityName" : "SvgLayer12",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 12,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer13[13]",
+ "entityName" : "SvgLayer13",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 13,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer14[14]",
+ "entityName" : "SvgLayer14",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 14,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer15[15]",
+ "entityName" : "SvgLayer15",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 15,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer16[16]",
+ "entityName" : "SvgLayer16",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 16,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer17[17]",
+ "entityName" : "SvgLayer17",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 17,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer18[18]",
+ "entityName" : "SvgLayer18",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 18,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer19[19]",
+ "entityName" : "SvgLayer19",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 19,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer20[20]",
+ "entityName" : "SvgLayer20",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 20,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer21[21]",
+ "entityName" : "SvgLayer21",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 21,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer22[22]",
+ "entityName" : "SvgLayer22",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 22,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer23[23]",
+ "entityName" : "SvgLayer23",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 23,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer24[24]",
+ "entityName" : "SvgLayer24",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 24,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer25[25]",
+ "entityName" : "SvgLayer25",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 25,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer26[26]",
+ "entityName" : "SvgLayer26",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 26,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer27[27]",
+ "entityName" : "SvgLayer27",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 27,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer28[28]",
+ "entityName" : "SvgLayer28",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 28,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer29[29]",
+ "entityName" : "SvgLayer29",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 29,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer30[30]",
+ "entityName" : "SvgLayer30",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 30,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer31[31]",
+ "entityName" : "SvgLayer31",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 31,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer32[32]",
+ "entityName" : "SvgLayer32",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 32,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer33[33]",
+ "entityName" : "SvgLayer33",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 33,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer34[34]",
+ "entityName" : "SvgLayer34",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 34,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer35[35]",
+ "entityName" : "SvgLayer35",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 35,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer36[36]",
+ "entityName" : "SvgLayer36",
+ "entityKind" : "Path",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/CvV2SidebarPortraitPhoto[0]/SvgIcon[0]",
+ "childIndex" : 36,
+ "depth" : 6,
+ "layer" : 6,
+ "computedX" : 55.2,
+ "computedY" : 689.89,
+ "placementX" : 55.2,
+ "placementY" : 689.89,
+ "placementWidth" : 98.0,
+ "placementHeight" : 98.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 98.0,
+ "contentHeight" : 98.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 650.89,
+ "placementX" : 26.0,
+ "placementY" : 650.89,
+ "placementWidth" : 83.206,
+ "placementHeight" : 10.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 83.206,
+ "contentHeight" : 10.0,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 628.89,
+ "placementX" : 26.0,
+ "placementY" : 628.89,
+ "placementWidth" : 115.037,
+ "placementHeight" : 10.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 115.037,
+ "contentHeight" : 10.0,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 3,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 606.89,
+ "placementX" : 26.0,
+ "placementY" : 606.89,
+ "placementWidth" : 57.459,
+ "placementHeight" : 10.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 57.459,
+ "contentHeight" : 10.0,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 4,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 584.89,
+ "placementX" : 26.0,
+ "placementY" : 584.89,
+ "placementWidth" : 45.341,
+ "placementHeight" : 10.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 45.341,
+ "contentHeight" : 10.0,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 5,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 562.89,
+ "placementX" : 26.0,
+ "placementY" : 562.89,
+ "placementWidth" : 40.909,
+ "placementHeight" : 10.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 40.909,
+ "contentHeight" : 10.0,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/LineNode[6]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 6,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 540.89,
+ "placementX" : 26.0,
+ "placementY" : 540.89,
+ "placementWidth" : 50.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 50.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 12.0,
+ "right" : 0.0,
+ "bottom" : 7.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 7,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 511.93,
+ "placementX" : 26.0,
+ "placementY" : 511.93,
+ "placementWidth" : 81.31,
+ "placementHeight" : 12.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 81.31,
+ "contentHeight" : 12.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[8]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 8,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 486.85,
+ "placementX" : 26.0,
+ "placementY" : 486.85,
+ "placementWidth" : 103.555,
+ "placementHeight" : 10.08,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 103.555,
+ "contentHeight" : 10.08,
+ "margin" : {
+ "top" : 6.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 9,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 468.49,
+ "placementX" : 26.0,
+ "placementY" : 468.49,
+ "placementWidth" : 86.986,
+ "placementHeight" : 9.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 86.986,
+ "contentHeight" : 9.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 10,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 450.13,
+ "placementX" : 26.0,
+ "placementY" : 450.13,
+ "placementWidth" : 39.094,
+ "placementHeight" : 9.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 39.094,
+ "contentHeight" : 9.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[11]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 11,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 425.05,
+ "placementX" : 26.0,
+ "placementY" : 425.05,
+ "placementWidth" : 122.388,
+ "placementHeight" : 10.08,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 122.388,
+ "contentHeight" : 10.08,
+ "margin" : {
+ "top" : 6.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[12]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 12,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 406.69,
+ "placementX" : 26.0,
+ "placementY" : 406.69,
+ "placementWidth" : 83.054,
+ "placementHeight" : 9.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 83.054,
+ "contentHeight" : 9.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[13]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 13,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 388.33,
+ "placementX" : 26.0,
+ "placementY" : 388.33,
+ "placementWidth" : 39.094,
+ "placementHeight" : 9.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 39.094,
+ "contentHeight" : 9.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/LineNode[14]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 14,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 366.33,
+ "placementX" : 26.0,
+ "placementY" : 366.33,
+ "placementWidth" : 50.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 50.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 12.0,
+ "right" : 0.0,
+ "bottom" : 7.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[15]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 15,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 337.37,
+ "placementX" : 26.0,
+ "placementY" : 337.37,
+ "placementWidth" : 76.348,
+ "placementHeight" : 12.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 76.348,
+ "contentHeight" : 12.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[16]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 16,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 315.77,
+ "placementX" : 26.0,
+ "placementY" : 315.77,
+ "placementWidth" : 26.792,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 26.792,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[17]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 17,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 294.17,
+ "placementX" : 26.0,
+ "placementY" : 294.17,
+ "placementWidth" : 20.984,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 20.984,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[18]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 18,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 272.57,
+ "placementX" : 26.0,
+ "placementY" : 272.57,
+ "placementWidth" : 26.088,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 26.088,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[19]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 19,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 250.97,
+ "placementX" : 26.0,
+ "placementY" : 250.97,
+ "placementWidth" : 25.272,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 25.272,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[20]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 20,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 229.37,
+ "placementX" : 26.0,
+ "placementY" : 229.37,
+ "placementWidth" : 14.864,
+ "placementHeight" : 9.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 14.864,
+ "contentHeight" : 9.6,
+ "margin" : {
+ "top" : 3.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/LineNode[21]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 21,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 207.37,
+ "placementX" : 26.0,
+ "placementY" : 207.37,
+ "placementWidth" : 50.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 50.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 12.0,
+ "right" : 0.0,
+ "bottom" : 7.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[22]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 22,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 178.41,
+ "placementX" : 26.0,
+ "placementY" : 178.41,
+ "placementWidth" : 82.26,
+ "placementHeight" : 12.96,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 82.26,
+ "contentHeight" : 12.96,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[23]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 23,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 155.69,
+ "placementX" : 26.0,
+ "placementY" : 155.69,
+ "placementWidth" : 64.516,
+ "placementHeight" : 9.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 64.516,
+ "contentHeight" : 9.72,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[24]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 24,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 132.97,
+ "placementX" : 26.0,
+ "placementY" : 132.97,
+ "placementWidth" : 87.969,
+ "placementHeight" : 9.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 87.969,
+ "contentHeight" : 9.72,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]/ParagraphNode[25]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitSidebar[0]",
+ "childIndex" : 25,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 26.0,
+ "computedY" : 110.25,
+ "placementX" : 26.0,
+ "placementY" : 110.25,
+ "placementWidth" : 60.827,
+ "placementHeight" : 9.72,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 60.827,
+ "contentHeight" : 9.72,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]",
+ "entityName" : "CvV2SidebarPortraitMain",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 202.394,
+ "computedY" : 88.805,
+ "placementX" : 202.394,
+ "placementY" : 88.805,
+ "placementWidth" : 392.882,
+ "placementHeight" : 753.085,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 392.882,
+ "contentHeight" : 753.085,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitHero[0]",
+ "entityName" : "CvV2SidebarPortraitHero",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 202.394,
+ "computedY" : 697.415,
+ "placementX" : 202.394,
+ "placementY" : 697.415,
+ "placementWidth" : 392.882,
+ "placementHeight" : 85.475,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 392.882,
+ "contentHeight" : 85.475,
+ "margin" : {
+ "top" : 59.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 19.0,
+ "right" : 34.0,
+ "bottom" : 17.0,
+ "left" : 34.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitHero[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitHero[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 727.495,
+ "placementX" : 236.394,
+ "placementY" : 727.495,
+ "placementWidth" : 324.882,
+ "placementHeight" : 36.395,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 324.882,
+ "contentHeight" : 36.395,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitHero[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitHero[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 714.415,
+ "placementX" : 236.394,
+ "placementY" : 714.415,
+ "placementWidth" : 324.882,
+ "placementHeight" : 10.08,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 324.882,
+ "contentHeight" : 10.08,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "entityName" : "CvV2SidebarPortraitContent",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 202.394,
+ "computedY" : 88.805,
+ "placementX" : 202.394,
+ "placementY" : 88.805,
+ "placementWidth" : 392.882,
+ "placementHeight" : 608.61,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 392.882,
+ "contentHeight" : 608.61,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 24.0,
+ "right" : 34.0,
+ "bottom" : 24.0,
+ "left" : 34.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 651.015,
+ "placementX" : 236.394,
+ "placementY" : 651.015,
+ "placementWidth" : 183.252,
+ "placementHeight" : 14.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 183.252,
+ "contentHeight" : 14.4,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/LineNode[1]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 638.015,
+ "placementX" : 236.394,
+ "placementY" : 638.015,
+ "placementWidth" : 346.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 346.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 7.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 569.845,
+ "placementX" : 236.394,
+ "placementY" : 569.845,
+ "placementWidth" : 317.194,
+ "placementHeight" : 49.17,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 317.194,
+ "contentHeight" : 49.17,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 537.445,
+ "placementX" : 236.394,
+ "placementY" : 537.445,
+ "placementWidth" : 93.156,
+ "placementHeight" : 14.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 93.156,
+ "contentHeight" : 14.4,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/LineNode[4]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 524.445,
+ "placementX" : 236.394,
+ "placementY" : 524.445,
+ "placementWidth" : 346.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 346.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 7.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 487.445,
+ "placementX" : 236.394,
+ "placementY" : 487.445,
+ "placementWidth" : 144.58,
+ "placementHeight" : 12.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 144.58,
+ "contentHeight" : 12.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 466.405,
+ "placementX" : 236.394,
+ "placementY" : 466.405,
+ "placementWidth" : 142.352,
+ "placementHeight" : 11.04,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 142.352,
+ "contentHeight" : 11.04,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/ParagraphNode[7]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 7,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 417.865,
+ "placementX" : 236.394,
+ "placementY" : 417.865,
+ "placementWidth" : 317.701,
+ "placementHeight" : 36.54,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 317.701,
+ "contentHeight" : 36.54,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/ParagraphNode[8]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 8,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 387.865,
+ "placementX" : 236.394,
+ "placementY" : 387.865,
+ "placementWidth" : 106.63,
+ "placementHeight" : 12.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 106.63,
+ "contentHeight" : 12.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/ParagraphNode[9]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 9,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 366.825,
+ "placementX" : 236.394,
+ "placementY" : 366.825,
+ "placementWidth" : 116.04,
+ "placementHeight" : 11.04,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 116.04,
+ "contentHeight" : 11.04,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/ParagraphNode[10]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 10,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 305.655,
+ "placementX" : 236.394,
+ "placementY" : 305.655,
+ "placementWidth" : 322.298,
+ "placementHeight" : 49.17,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 322.298,
+ "contentHeight" : 49.17,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/ParagraphNode[11]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 11,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 273.255,
+ "placementX" : 236.394,
+ "placementY" : 273.255,
+ "placementWidth" : 75.912,
+ "placementHeight" : 14.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 75.912,
+ "contentHeight" : 14.4,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/LineNode[12]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 12,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 260.255,
+ "placementX" : 236.394,
+ "placementY" : 260.255,
+ "placementWidth" : 346.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 346.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 7.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/ParagraphNode[13]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 13,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 227.255,
+ "placementX" : 236.394,
+ "placementY" : 227.255,
+ "placementWidth" : 183.928,
+ "placementHeight" : 12.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 183.928,
+ "contentHeight" : 12.0,
+ "margin" : {
+ "top" : 4.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/ParagraphNode[14]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 14,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 178.715,
+ "placementX" : 236.394,
+ "placementY" : 178.715,
+ "placementWidth" : 302.483,
+ "placementHeight" : 36.54,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 302.483,
+ "contentHeight" : 36.54,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/ParagraphNode[15]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 15,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 148.715,
+ "placementX" : 236.394,
+ "placementY" : 148.715,
+ "placementWidth" : 232.116,
+ "placementHeight" : 12.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 232.116,
+ "contentHeight" : 12.0,
+ "margin" : {
+ "top" : 8.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]/ParagraphNode[16]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2SidebarPortraitRoot[0]/CvV2SidebarPortraitBodyRow[0]/CvV2SidebarPortraitMain[1]/CvV2SidebarPortraitContent[1]",
+ "childIndex" : 16,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 236.394,
+ "computedY" : 112.805,
+ "placementX" : 236.394,
+ "placementY" : 112.805,
+ "placementWidth" : 317.494,
+ "placementHeight" : 23.91,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 317.494,
+ "contentHeight" : 23.91,
+ "margin" : {
+ "top" : 2.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/timeline_minimal_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/timeline_minimal_layout.json
new file mode 100644
index 000000000..663416f37
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/timeline_minimal_layout.json
@@ -0,0 +1,2387 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 551.276,
+ "innerHeight" : 797.89,
+ "margin" : {
+ "top" : 22.0,
+ "right" : 22.0,
+ "bottom" : 22.0,
+ "left" : 22.0
+ }
+ },
+ "totalPages" : 2,
+ "nodes" : [ {
+ "path" : "CvV2TimelineMinimalRoot[0]",
+ "entityName" : "CvV2TimelineMinimalRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 22.0,
+ "computedY" : -127.61,
+ "placementX" : 22.0,
+ "placementY" : -127.61,
+ "placementWidth" : 551.276,
+ "placementHeight" : 947.5,
+ "startPage" : 0,
+ "endPage" : 1,
+ "contentWidth" : 551.276,
+ "contentHeight" : 947.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]",
+ "entityName" : "CvV2TimelineMinimalHeader",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 22.0,
+ "computedY" : 755.39,
+ "placementX" : 22.0,
+ "placementY" : 755.39,
+ "placementWidth" : 551.276,
+ "placementHeight" : 64.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 551.276,
+ "contentHeight" : 64.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]/CvV2TimelineMinimalName[0]",
+ "entityName" : "CvV2TimelineMinimalName",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 22.0,
+ "computedY" : 770.89,
+ "placementX" : 22.0,
+ "placementY" : 770.89,
+ "placementWidth" : 213.136,
+ "placementHeight" : 49.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 213.136,
+ "contentHeight" : 49.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]/CvV2TimelineMinimalName[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]/CvV2TimelineMinimalName[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 22.0,
+ "computedY" : 786.29,
+ "placementX" : 22.0,
+ "placementY" : 786.29,
+ "placementWidth" : 213.136,
+ "placementHeight" : 33.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 213.136,
+ "contentHeight" : 33.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]/CvV2TimelineMinimalName[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]/CvV2TimelineMinimalName[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 22.0,
+ "computedY" : 770.89,
+ "placementX" : 22.0,
+ "placementY" : 770.89,
+ "placementWidth" : 70.908,
+ "placementHeight" : 11.4,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 70.908,
+ "contentHeight" : 11.4,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]/CvV2TimelineMinimalContact[1]",
+ "entityName" : "CvV2TimelineMinimalContact",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 365.544,
+ "computedY" : 755.39,
+ "placementX" : 365.544,
+ "placementY" : 755.39,
+ "placementWidth" : 207.732,
+ "placementHeight" : 64.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 207.732,
+ "contentHeight" : 64.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]/CvV2TimelineMinimalContact[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]/CvV2TimelineMinimalContact[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 365.544,
+ "computedY" : 809.39,
+ "placementX" : 365.544,
+ "placementY" : 809.39,
+ "placementWidth" : 207.732,
+ "placementHeight" : 10.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 207.732,
+ "contentHeight" : 10.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]/CvV2TimelineMinimalContact[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]/CvV2TimelineMinimalContact[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 365.544,
+ "computedY" : 795.89,
+ "placementX" : 365.544,
+ "placementY" : 795.89,
+ "placementWidth" : 207.732,
+ "placementHeight" : 10.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 207.732,
+ "contentHeight" : 10.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]/CvV2TimelineMinimalContact[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]/CvV2TimelineMinimalContact[1]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 365.544,
+ "computedY" : 782.39,
+ "placementX" : 365.544,
+ "placementY" : 782.39,
+ "placementWidth" : 207.732,
+ "placementHeight" : 10.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 207.732,
+ "contentHeight" : 10.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]/CvV2TimelineMinimalContact[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]/CvV2TimelineMinimalContact[1]",
+ "childIndex" : 3,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 365.544,
+ "computedY" : 768.89,
+ "placementX" : 365.544,
+ "placementY" : 768.89,
+ "placementWidth" : 207.732,
+ "placementHeight" : 10.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 207.732,
+ "contentHeight" : 10.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]/CvV2TimelineMinimalContact[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeader[0]/CvV2TimelineMinimalContact[1]",
+ "childIndex" : 4,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 365.544,
+ "computedY" : 755.39,
+ "placementX" : 365.544,
+ "placementY" : 755.39,
+ "placementWidth" : 207.732,
+ "placementHeight" : 10.5,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 207.732,
+ "contentHeight" : 10.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalHeaderRule[1]",
+ "entityName" : "CvV2TimelineMinimalHeaderRule",
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 22.0,
+ "computedY" : 742.39,
+ "placementX" : 22.0,
+ "placementY" : 742.39,
+ "placementWidth" : 551.276,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 551.276,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]",
+ "entityName" : "CvV2TimelineMinimalBody0",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 22.0,
+ "computedY" : 39.39,
+ "placementX" : 22.0,
+ "placementY" : 39.39,
+ "placementWidth" : 551.276,
+ "placementHeight" : 691.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 551.276,
+ "contentHeight" : 691.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]",
+ "entityName" : "CvV2TimelineMinimalSidebar",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 22.0,
+ "computedY" : 39.39,
+ "placementX" : 22.0,
+ "placementY" : 39.39,
+ "placementWidth" : 146.078,
+ "placementHeight" : 691.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 146.078,
+ "contentHeight" : 691.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]",
+ "entityName" : "CvV2TimelineMinimalSidebareducationcertifications",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 22.0,
+ "computedY" : 543.39,
+ "placementX" : 22.0,
+ "placementY" : 543.39,
+ "placementWidth" : 145.973,
+ "placementHeight" : 187.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 145.973,
+ "contentHeight" : 187.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 715.39,
+ "placementX" : 22.0,
+ "placementY" : 715.39,
+ "placementWidth" : 135.3,
+ "placementHeight" : 15.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 135.3,
+ "contentHeight" : 15.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 690.39,
+ "placementX" : 22.0,
+ "placementY" : 690.39,
+ "placementWidth" : 126.458,
+ "placementHeight" : 19.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 126.458,
+ "contentHeight" : 19.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 655.39,
+ "placementX" : 22.0,
+ "placementY" : 655.39,
+ "placementWidth" : 129.465,
+ "placementHeight" : 29.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 129.465,
+ "contentHeight" : 29.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 630.39,
+ "placementX" : 22.0,
+ "placementY" : 630.39,
+ "placementWidth" : 145.973,
+ "placementHeight" : 19.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 145.973,
+ "contentHeight" : 19.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 605.39,
+ "placementX" : 22.0,
+ "placementY" : 605.39,
+ "placementWidth" : 120.36,
+ "placementHeight" : 19.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 120.36,
+ "contentHeight" : 19.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 580.39,
+ "placementX" : 22.0,
+ "placementY" : 580.39,
+ "placementWidth" : 129.105,
+ "placementHeight" : 19.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 129.105,
+ "contentHeight" : 19.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 555.39,
+ "placementX" : 22.0,
+ "placementY" : 555.39,
+ "placementWidth" : 144.915,
+ "placementHeight" : 19.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 144.915,
+ "contentHeight" : 19.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]/LineNode[7]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebareducationcertifications[0]",
+ "childIndex" : 7,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 543.39,
+ "placementX" : 22.0,
+ "placementY" : 543.39,
+ "placementWidth" : 118.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 118.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 5.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]",
+ "entityName" : "CvV2TimelineMinimalSidebartechnicalskills",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 22.0,
+ "computedY" : 306.39,
+ "placementX" : 22.0,
+ "placementY" : 306.39,
+ "placementWidth" : 145.98,
+ "placementHeight" : 227.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 145.98,
+ "contentHeight" : 227.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 518.39,
+ "placementX" : 22.0,
+ "placementY" : 518.39,
+ "placementWidth" : 82.837,
+ "placementHeight" : 15.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 82.837,
+ "contentHeight" : 15.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 493.39,
+ "placementX" : 22.0,
+ "placementY" : 493.39,
+ "placementWidth" : 145.98,
+ "placementHeight" : 19.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 145.98,
+ "contentHeight" : 19.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 458.39,
+ "placementX" : 22.0,
+ "placementY" : 458.39,
+ "placementWidth" : 144.96,
+ "placementHeight" : 29.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 144.96,
+ "contentHeight" : 29.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 423.39,
+ "placementX" : 22.0,
+ "placementY" : 423.39,
+ "placementWidth" : 144.053,
+ "placementHeight" : 29.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 144.053,
+ "contentHeight" : 29.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 388.39,
+ "placementX" : 22.0,
+ "placementY" : 388.39,
+ "placementWidth" : 126.878,
+ "placementHeight" : 29.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 126.878,
+ "contentHeight" : 29.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 353.39,
+ "placementX" : 22.0,
+ "placementY" : 353.39,
+ "placementWidth" : 144.93,
+ "placementHeight" : 29.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 144.93,
+ "contentHeight" : 29.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 318.39,
+ "placementX" : 22.0,
+ "placementY" : 318.39,
+ "placementWidth" : 130.418,
+ "placementHeight" : 29.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 130.418,
+ "contentHeight" : 29.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]/LineNode[7]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebartechnicalskills[1]",
+ "childIndex" : 7,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 306.39,
+ "placementX" : 22.0,
+ "placementY" : 306.39,
+ "placementWidth" : 118.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 118.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 5.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebarprojects[2]",
+ "entityName" : "CvV2TimelineMinimalSidebarprojects",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 22.0,
+ "computedY" : 39.39,
+ "placementX" : 22.0,
+ "placementY" : 39.39,
+ "placementWidth" : 146.078,
+ "placementHeight" : 257.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 146.078,
+ "contentHeight" : 257.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebarprojects[2]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebarprojects[2]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 281.39,
+ "placementX" : 22.0,
+ "placementY" : 281.39,
+ "placementWidth" : 45.938,
+ "placementHeight" : 15.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 45.938,
+ "contentHeight" : 15.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebarprojects[2]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebarprojects[2]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 216.39,
+ "placementX" : 22.0,
+ "placementY" : 216.39,
+ "placementWidth" : 140.325,
+ "placementHeight" : 59.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 140.325,
+ "contentHeight" : 59.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebarprojects[2]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebarprojects[2]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 161.39,
+ "placementX" : 22.0,
+ "placementY" : 161.39,
+ "placementWidth" : 146.078,
+ "placementHeight" : 49.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 146.078,
+ "contentHeight" : 49.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebarprojects[2]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebarprojects[2]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 106.39,
+ "placementX" : 22.0,
+ "placementY" : 106.39,
+ "placementWidth" : 138.473,
+ "placementHeight" : 49.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 138.473,
+ "contentHeight" : 49.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebarprojects[2]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebarprojects[2]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 51.39,
+ "placementX" : 22.0,
+ "placementY" : 51.39,
+ "placementWidth" : 144.488,
+ "placementHeight" : 49.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 144.488,
+ "contentHeight" : 49.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebarprojects[2]/LineNode[5]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebarprojects[2]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 39.39,
+ "placementX" : 22.0,
+ "placementY" : 39.39,
+ "placementWidth" : 118.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 118.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 5.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalAxis[1]",
+ "entityName" : "CvV2TimelineMinimalAxis",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 185.794,
+ "computedY" : 82.39,
+ "placementX" : 185.794,
+ "placementY" : 82.39,
+ "placementWidth" : 7.0,
+ "placementHeight" : 648.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 7.0,
+ "contentHeight" : 648.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 28.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalAxis[1]/LineNode[0]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalAxis[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 188.919,
+ "computedY" : 552.64,
+ "placementX" : 188.919,
+ "placementY" : 552.64,
+ "placementWidth" : 1.0,
+ "placementHeight" : 149.75,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 1.0,
+ "contentHeight" : 149.75,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 3.125
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalAxis[1]/EllipseNode[1]",
+ "entityName" : null,
+ "entityKind" : "EllipseNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalAxis[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 185.794,
+ "computedY" : 545.64,
+ "placementX" : 185.794,
+ "placementY" : 545.64,
+ "placementWidth" : 7.0,
+ "placementHeight" : 7.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 7.0,
+ "contentHeight" : 7.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalAxis[1]/LineNode[2]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalAxis[1]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 188.919,
+ "computedY" : 395.89,
+ "placementX" : 188.919,
+ "placementY" : 395.89,
+ "placementWidth" : 1.0,
+ "placementHeight" : 149.75,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 1.0,
+ "contentHeight" : 149.75,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 3.125
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalAxis[1]/EllipseNode[3]",
+ "entityName" : null,
+ "entityKind" : "EllipseNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalAxis[1]",
+ "childIndex" : 3,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 185.794,
+ "computedY" : 388.89,
+ "placementX" : 185.794,
+ "placementY" : 388.89,
+ "placementWidth" : 7.0,
+ "placementHeight" : 7.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 7.0,
+ "contentHeight" : 7.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalAxis[1]/LineNode[4]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalAxis[1]",
+ "childIndex" : 4,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 188.919,
+ "computedY" : 239.14,
+ "placementX" : 188.919,
+ "placementY" : 239.14,
+ "placementWidth" : 1.0,
+ "placementHeight" : 149.75,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 1.0,
+ "contentHeight" : 149.75,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 3.125
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalAxis[1]/EllipseNode[5]",
+ "entityName" : null,
+ "entityKind" : "EllipseNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalAxis[1]",
+ "childIndex" : 5,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 185.794,
+ "computedY" : 232.14,
+ "placementX" : 185.794,
+ "placementY" : 232.14,
+ "placementWidth" : 7.0,
+ "placementHeight" : 7.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 7.0,
+ "contentHeight" : 7.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalAxis[1]/LineNode[6]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalAxis[1]",
+ "childIndex" : 6,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 188.919,
+ "computedY" : 82.39,
+ "placementX" : 188.919,
+ "placementY" : 82.39,
+ "placementWidth" : 1.0,
+ "placementHeight" : 149.75,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 1.0,
+ "contentHeight" : 149.75,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 3.125
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]",
+ "entityName" : "CvV2TimelineMinimalMain",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 225.76,
+ "computedY" : 476.91,
+ "placementX" : 225.76,
+ "placementY" : 476.91,
+ "placementWidth" : 344.105,
+ "placementHeight" : 253.48,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 344.105,
+ "contentHeight" : 253.48,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalsummary[0]",
+ "entityName" : "CvV2TimelineMinimalMainprofessionalsummary",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 225.76,
+ "computedY" : 655.07,
+ "placementX" : 225.76,
+ "placementY" : 655.07,
+ "placementWidth" : 342.552,
+ "placementHeight" : 75.32,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 342.552,
+ "contentHeight" : 75.32,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalsummary[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalsummary[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 225.76,
+ "computedY" : 714.19,
+ "placementX" : 225.76,
+ "placementY" : 714.19,
+ "placementWidth" : 120.515,
+ "placementHeight" : 16.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 120.515,
+ "contentHeight" : 16.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalsummary[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalsummary[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 225.76,
+ "computedY" : 667.07,
+ "placementX" : 225.76,
+ "placementY" : 667.07,
+ "placementWidth" : 342.552,
+ "placementHeight" : 42.12,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 342.552,
+ "contentHeight" : 42.12,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalsummary[0]/LineNode[2]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalsummary[0]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 225.76,
+ "computedY" : 655.07,
+ "placementX" : 225.76,
+ "placementY" : 655.07,
+ "placementWidth" : 300.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 300.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 6.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]",
+ "entityName" : "CvV2TimelineMinimalMainprofessionalexperience",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 225.76,
+ "computedY" : 476.91,
+ "placementX" : 225.76,
+ "placementY" : 476.91,
+ "placementWidth" : 344.105,
+ "placementHeight" : 167.16,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 344.105,
+ "contentHeight" : 167.16,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 225.76,
+ "computedY" : 627.87,
+ "placementX" : 225.76,
+ "placementY" : 627.87,
+ "placementWidth" : 133.002,
+ "placementHeight" : 16.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 133.002,
+ "contentHeight" : 16.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 225.76,
+ "computedY" : 613.51,
+ "placementX" : 225.76,
+ "placementY" : 613.51,
+ "placementWidth" : 213.26,
+ "placementHeight" : 9.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 213.26,
+ "contentHeight" : 9.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 225.76,
+ "computedY" : 578.03,
+ "placementX" : 225.76,
+ "placementY" : 578.03,
+ "placementWidth" : 336.859,
+ "placementHeight" : 30.48,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 336.859,
+ "contentHeight" : 30.48,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 225.76,
+ "computedY" : 563.67,
+ "placementX" : 225.76,
+ "placementY" : 563.67,
+ "placementWidth" : 168.652,
+ "placementHeight" : 9.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 168.652,
+ "contentHeight" : 9.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 225.76,
+ "computedY" : 528.19,
+ "placementX" : 225.76,
+ "placementY" : 528.19,
+ "placementWidth" : 344.105,
+ "placementHeight" : 30.48,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 344.105,
+ "contentHeight" : 30.48,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]/ParagraphNode[5]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 225.76,
+ "computedY" : 513.83,
+ "placementX" : 225.76,
+ "placementY" : 513.83,
+ "placementWidth" : 161.46,
+ "placementHeight" : 9.36,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 161.46,
+ "contentHeight" : 9.36,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]/ParagraphNode[6]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]",
+ "childIndex" : 6,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 225.76,
+ "computedY" : 488.91,
+ "placementX" : 225.76,
+ "placementY" : 488.91,
+ "placementWidth" : 334.175,
+ "placementHeight" : 19.92,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 334.175,
+ "contentHeight" : 19.92,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]/LineNode[7]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody0[2]/CvV2TimelineMinimalMain[2]/CvV2TimelineMinimalMainprofessionalexperience[1]",
+ "childIndex" : 7,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 225.76,
+ "computedY" : 476.91,
+ "placementX" : 225.76,
+ "placementY" : 476.91,
+ "placementWidth" : 300.0,
+ "placementHeight" : 1.0,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 300.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 6.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]",
+ "entityName" : "CvV2TimelineMinimalBody1",
+ "entityKind" : "RowNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]",
+ "childIndex" : 3,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 22.0,
+ "computedY" : 664.89,
+ "placementX" : 22.0,
+ "placementY" : 664.89,
+ "placementWidth" : 551.276,
+ "placementHeight" : 155.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 551.276,
+ "contentHeight" : 155.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalSidebar[0]",
+ "entityName" : "CvV2TimelineMinimalSidebar",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 22.0,
+ "computedY" : 672.89,
+ "placementX" : 22.0,
+ "placementY" : 672.89,
+ "placementWidth" : 140.543,
+ "placementHeight" : 147.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 140.543,
+ "contentHeight" : 147.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebaradditionalinformation[0]",
+ "entityName" : "CvV2TimelineMinimalSidebaradditionalinformation",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalSidebar[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 22.0,
+ "computedY" : 672.89,
+ "placementX" : 22.0,
+ "placementY" : 672.89,
+ "placementWidth" : 140.543,
+ "placementHeight" : 147.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 140.543,
+ "contentHeight" : 147.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebaradditionalinformation[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebaradditionalinformation[0]",
+ "childIndex" : 0,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 804.89,
+ "placementX" : 22.0,
+ "placementY" : 804.89,
+ "placementWidth" : 116.013,
+ "placementHeight" : 15.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 116.013,
+ "contentHeight" : 15.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebaradditionalinformation[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebaradditionalinformation[0]",
+ "childIndex" : 1,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 779.89,
+ "placementX" : 22.0,
+ "placementY" : 779.89,
+ "placementWidth" : 120.232,
+ "placementHeight" : 19.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 120.232,
+ "contentHeight" : 19.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebaradditionalinformation[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebaradditionalinformation[0]",
+ "childIndex" : 2,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 754.89,
+ "placementX" : 22.0,
+ "placementY" : 754.89,
+ "placementWidth" : 140.543,
+ "placementHeight" : 19.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 140.543,
+ "contentHeight" : 19.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebaradditionalinformation[0]/ParagraphNode[3]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebaradditionalinformation[0]",
+ "childIndex" : 3,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 719.89,
+ "placementX" : 22.0,
+ "placementY" : 719.89,
+ "placementWidth" : 129.87,
+ "placementHeight" : 29.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 129.87,
+ "contentHeight" : 29.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebaradditionalinformation[0]/ParagraphNode[4]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebaradditionalinformation[0]",
+ "childIndex" : 4,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 684.89,
+ "placementX" : 22.0,
+ "placementY" : 684.89,
+ "placementWidth" : 138.172,
+ "placementHeight" : 29.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 138.172,
+ "contentHeight" : 29.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebaradditionalinformation[0]/LineNode[5]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalSidebar[0]/CvV2TimelineMinimalSidebaradditionalinformation[0]",
+ "childIndex" : 5,
+ "depth" : 5,
+ "layer" : 5,
+ "computedX" : 22.0,
+ "computedY" : 672.89,
+ "placementX" : 22.0,
+ "placementY" : 672.89,
+ "placementWidth" : 118.0,
+ "placementHeight" : 1.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 118.0,
+ "contentHeight" : 1.0,
+ "margin" : {
+ "top" : 5.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalAxis[1]",
+ "entityName" : "CvV2TimelineMinimalAxis",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 185.794,
+ "computedY" : 664.89,
+ "placementX" : 185.794,
+ "placementY" : 664.89,
+ "placementWidth" : 7.0,
+ "placementHeight" : 155.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 7.0,
+ "contentHeight" : 155.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 28.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalAxis[1]/LineNode[0]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalAxis[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 188.919,
+ "computedY" : 765.39,
+ "placementX" : 188.919,
+ "placementY" : 765.39,
+ "placementWidth" : 1.0,
+ "placementHeight" : 26.5,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 1.0,
+ "contentHeight" : 26.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 3.125
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalAxis[1]/EllipseNode[1]",
+ "entityName" : null,
+ "entityKind" : "EllipseNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalAxis[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 185.794,
+ "computedY" : 758.39,
+ "placementX" : 185.794,
+ "placementY" : 758.39,
+ "placementWidth" : 7.0,
+ "placementHeight" : 7.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 7.0,
+ "contentHeight" : 7.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalAxis[1]/LineNode[2]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalAxis[1]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 188.919,
+ "computedY" : 731.89,
+ "placementX" : 188.919,
+ "placementY" : 731.89,
+ "placementWidth" : 1.0,
+ "placementHeight" : 26.5,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 1.0,
+ "contentHeight" : 26.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 3.125
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalAxis[1]/EllipseNode[3]",
+ "entityName" : null,
+ "entityKind" : "EllipseNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalAxis[1]",
+ "childIndex" : 3,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 185.794,
+ "computedY" : 724.89,
+ "placementX" : 185.794,
+ "placementY" : 724.89,
+ "placementWidth" : 7.0,
+ "placementHeight" : 7.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 7.0,
+ "contentHeight" : 7.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalAxis[1]/LineNode[4]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalAxis[1]",
+ "childIndex" : 4,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 188.919,
+ "computedY" : 698.39,
+ "placementX" : 188.919,
+ "placementY" : 698.39,
+ "placementWidth" : 1.0,
+ "placementHeight" : 26.5,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 1.0,
+ "contentHeight" : 26.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 3.125
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalAxis[1]/EllipseNode[5]",
+ "entityName" : null,
+ "entityKind" : "EllipseNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalAxis[1]",
+ "childIndex" : 5,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 185.794,
+ "computedY" : 691.39,
+ "placementX" : 185.794,
+ "placementY" : 691.39,
+ "placementWidth" : 7.0,
+ "placementHeight" : 7.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 7.0,
+ "contentHeight" : 7.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalAxis[1]/LineNode[6]",
+ "entityName" : null,
+ "entityKind" : "LineNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalAxis[1]",
+ "childIndex" : 6,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 188.919,
+ "computedY" : 664.89,
+ "placementX" : 188.919,
+ "placementY" : 664.89,
+ "placementWidth" : 1.0,
+ "placementHeight" : 26.5,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 1.0,
+ "contentHeight" : 26.5,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 3.125
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]/CvV2TimelineMinimalMain[2]",
+ "entityName" : "CvV2TimelineMinimalMain",
+ "entityKind" : "SectionNode",
+ "parentPath" : "CvV2TimelineMinimalRoot[0]/CvV2TimelineMinimalBody1[3]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 225.76,
+ "computedY" : 819.89,
+ "placementX" : 225.76,
+ "placementY" : 819.89,
+ "placementWidth" : 0.0,
+ "placementHeight" : 0.0,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 0.0,
+ "contentHeight" : 0.0,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
From b93ddc7ba1f0c00ec6fa553d62be7c8dfc46b377 Mon Sep 17 00:00:00 2001
From: DemchaAV
Date: Sun, 13 Sep 2026 15:24:50 +0100
Subject: [PATCH 2/4] test(templates): restore proposal and invoice layout
snapshot coverage
ModernProposal and ModernInvoice had no layout snapshot either; every other
proposal and invoice preset carries a suite of its own.
- ProposalPresetLayoutSnapshotTest snapshots ModernProposal on the canonical
proposal its pixel gate already renders.
- InvoicePresetFixtures gains layoutSnapshotPresets(), read by
InvoicePresetLayoutSnapshotTest. It lists ModernInvoice only: ClassicInvoice
takes the same spec, but ClassicInvoiceLayoutSnapshotTest already pins it on
the same invoice at the same margin, so listing it would record that page
twice. canonicalInvoice() and stressInvoice() are unchanged.
modern_invoice_layout is identical to its v2.2.0 render.
modern_proposal_layout differs from its v2.2.0 render in one node:
ProposalV2ModernFooter[6], a bare page-flow wrapper around the footer note,
moves from y 20.24 on pages 0..1 to y 790.64 on page 1. The paragraph inside
it, the only thing it draws, is at y 790.64 on page 1 in both. The note needs
23.25pt and 15.49pt were left under the acceptance terms, so it went to page
1 and the empty wrapper stayed behind claiming page 0 - the defect 361ff833
(in #633) fixed, and the commit this node changes at when rendered on either
side of it. Page count 2 and node count 43 are unchanged, and nothing drawn
moved.
---
.../presets/InvoicePresetFixtures.java | 21 +
.../InvoicePresetLayoutSnapshotTest.java | 55 +
.../ProposalPresetLayoutSnapshotTest.java | 62 +
.../invoice/modern_invoice_layout.json | 707 +++++++++
.../proposal/modern_proposal_layout.json | 1307 +++++++++++++++++
5 files changed, 2152 insertions(+)
create mode 100644 qa/src/test/java/com/demcha/compose/document/templates/invoice/presets/InvoicePresetLayoutSnapshotTest.java
create mode 100644 qa/src/test/java/com/demcha/compose/document/templates/proposal/presets/ProposalPresetLayoutSnapshotTest.java
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/invoice/modern_invoice_layout.json
create mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/proposal/modern_proposal_layout.json
diff --git a/qa/src/test/java/com/demcha/compose/document/templates/invoice/presets/InvoicePresetFixtures.java b/qa/src/test/java/com/demcha/compose/document/templates/invoice/presets/InvoicePresetFixtures.java
index e5b401de9..5ef2e80de 100644
--- a/qa/src/test/java/com/demcha/compose/document/templates/invoice/presets/InvoicePresetFixtures.java
+++ b/qa/src/test/java/com/demcha/compose/document/templates/invoice/presets/InvoicePresetFixtures.java
@@ -1,7 +1,12 @@
package com.demcha.compose.document.templates.invoice.presets;
+import com.demcha.compose.document.templates.api.DocumentTemplate;
import com.demcha.compose.document.templates.data.invoice.InvoiceData;
import com.demcha.compose.document.templates.data.invoice.InvoiceDocumentSpec;
+import org.junit.jupiter.params.provider.Arguments;
+
+import java.util.function.Supplier;
+import java.util.stream.Stream;
/**
* Shared fixture data for the invoice preset gates — the SAME specs feed
@@ -13,6 +18,22 @@ final class InvoicePresetFixtures {
private InvoicePresetFixtures() {
}
+ /**
+ * The {@link InvoiceDocumentSpec} presets {@link InvoicePresetLayoutSnapshotTest}
+ * snapshots, as (slug, recommended margin, factory).
+ *
+ * {@code ClassicInvoice} takes the same spec but is not listed:
+ * {@code ClassicInvoiceLayoutSnapshotTest} already pins it on
+ * {@link #canonicalInvoice()} at the same margin, plus the overflow case, so
+ * listing it here would record the same page twice.
+ */
+ static Stream layoutSnapshotPresets() {
+ return Stream.of(
+ Arguments.of("modern_invoice",
+ ModernInvoice.RECOMMENDED_MARGIN,
+ (Supplier>) ModernInvoice::create));
+ }
+
/**
* Canonical sample invoice — exercises the hero, both parties, a
* multi-row line-items table, subtotal / tax / total summary, and the
diff --git a/qa/src/test/java/com/demcha/compose/document/templates/invoice/presets/InvoicePresetLayoutSnapshotTest.java b/qa/src/test/java/com/demcha/compose/document/templates/invoice/presets/InvoicePresetLayoutSnapshotTest.java
new file mode 100644
index 000000000..a862df93b
--- /dev/null
+++ b/qa/src/test/java/com/demcha/compose/document/templates/invoice/presets/InvoicePresetLayoutSnapshotTest.java
@@ -0,0 +1,55 @@
+package com.demcha.compose.document.templates.invoice.presets;
+
+import com.demcha.compose.GraphCompose;
+import com.demcha.compose.document.api.DocumentPageSize;
+import com.demcha.compose.document.api.DocumentSession;
+import com.demcha.compose.document.templates.TemplateTestSupport;
+import com.demcha.compose.document.templates.api.DocumentTemplate;
+import com.demcha.compose.document.templates.data.invoice.InvoiceDocumentSpec;
+import org.junit.jupiter.params.ParameterizedTest;
+import org.junit.jupiter.params.provider.Arguments;
+import org.junit.jupiter.params.provider.MethodSource;
+
+import java.util.function.Supplier;
+import java.util.stream.Stream;
+
+/**
+ * Structural layout-snapshot gate for the {@link InvoiceDocumentSpec} invoice
+ * presets without a snapshot suite of their own — the sibling of
+ * {@link InvoiceV2VisualParityTest}, on the same
+ * {@link InvoicePresetFixtures#canonicalInvoice()}.
+ *
+ * Each preset composes the canonical invoice on A4 at its
+ * {@code RECOMMENDED_MARGIN}, exactly as the pixel gate does, and the laid-out
+ * node tree is compared against
+ * {@code layout-snapshots/canonical-templates/invoice/_layout.json}. The
+ * comparison is exact: node identity, nesting, page ownership and geometry.
+ *
+ * After a deliberate layout change, re-run with
+ * {@code -Dgraphcompose.updateSnapshots=true} and commit the JSON with the
+ * change. A mismatch writes the actual snapshot under
+ * {@code target/visual-tests/layout-snapshots/} for diffing.
+ */
+class InvoicePresetLayoutSnapshotTest {
+
+ @ParameterizedTest(name = "{0}")
+ @MethodSource("presets")
+ void matchesLayoutSnapshot(String slug,
+ double margin,
+ Supplier> factory)
+ throws Exception {
+ DocumentTemplate template = factory.get();
+ float m = (float) margin;
+ try (DocumentSession document = GraphCompose.document()
+ .pageSize(DocumentPageSize.A4)
+ .margin(m, m, m, m)
+ .create()) {
+ template.compose(document, InvoicePresetFixtures.canonicalInvoice());
+ TemplateTestSupport.assertCanonicalSnapshot(document, slug + "_layout", "invoice");
+ }
+ }
+
+ private static Stream presets() {
+ return InvoicePresetFixtures.layoutSnapshotPresets();
+ }
+}
diff --git a/qa/src/test/java/com/demcha/compose/document/templates/proposal/presets/ProposalPresetLayoutSnapshotTest.java b/qa/src/test/java/com/demcha/compose/document/templates/proposal/presets/ProposalPresetLayoutSnapshotTest.java
new file mode 100644
index 000000000..2213c5ba7
--- /dev/null
+++ b/qa/src/test/java/com/demcha/compose/document/templates/proposal/presets/ProposalPresetLayoutSnapshotTest.java
@@ -0,0 +1,62 @@
+package com.demcha.compose.document.templates.proposal.presets;
+
+import com.demcha.compose.GraphCompose;
+import com.demcha.compose.document.api.DocumentPageSize;
+import com.demcha.compose.document.api.DocumentSession;
+import com.demcha.compose.document.templates.TemplateTestSupport;
+import com.demcha.compose.document.templates.api.DocumentTemplate;
+import com.demcha.compose.document.templates.data.proposal.ProposalDocumentSpec;
+import org.junit.jupiter.params.ParameterizedTest;
+import org.junit.jupiter.params.provider.Arguments;
+import org.junit.jupiter.params.provider.MethodSource;
+
+import java.util.function.Supplier;
+import java.util.stream.Stream;
+
+/**
+ * Structural layout-snapshot gate for the {@link ProposalDocumentSpec}
+ * proposal presets — the sibling of {@link ProposalV2VisualParityTest}, on its
+ * {@link ProposalV2VisualParityTest#canonicalProposal()}.
+ *
+ * The structured proposal presets ({@code EditorialProposal},
+ * {@code IndigoProposal}, {@code NorthlineProposal}) take a different spec and
+ * carry a snapshot suite each, so they are not listed here.
+ *
+ * Each preset composes the canonical proposal on A4 at its
+ * {@code RECOMMENDED_MARGIN}, exactly as the pixel gate does, and the laid-out
+ * node tree is compared against
+ * {@code layout-snapshots/canonical-templates/proposal/_layout.json}.
+ * The comparison is exact: node identity, nesting, page ownership and
+ * geometry.
+ *
+ * After a deliberate layout change, re-run with
+ * {@code -Dgraphcompose.updateSnapshots=true} and commit the JSON with the
+ * change. A mismatch writes the actual snapshot under
+ * {@code target/visual-tests/layout-snapshots/} for diffing.
+ */
+class ProposalPresetLayoutSnapshotTest {
+
+ @ParameterizedTest(name = "{0}")
+ @MethodSource("presets")
+ void matchesLayoutSnapshot(String slug,
+ double margin,
+ Supplier> factory)
+ throws Exception {
+ DocumentTemplate template = factory.get();
+ float m = (float) margin;
+ try (DocumentSession document = GraphCompose.document()
+ .pageSize(DocumentPageSize.A4)
+ .margin(m, m, m, m)
+ .create()) {
+ template.compose(document, ProposalV2VisualParityTest.canonicalProposal());
+ TemplateTestSupport.assertCanonicalSnapshot(document, slug + "_layout", "proposal");
+ }
+ }
+
+ private static Stream presets() {
+ return Stream.of(
+ Arguments.of("modern_proposal",
+ ModernProposal.RECOMMENDED_MARGIN,
+ (Supplier>) ModernProposal::create));
+ }
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/invoice/modern_invoice_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/invoice/modern_invoice_layout.json
new file mode 100644
index 000000000..6c78dbc23
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/invoice/modern_invoice_layout.json
@@ -0,0 +1,707 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 539.276,
+ "innerHeight" : 785.89,
+ "margin" : {
+ "top" : 28.0,
+ "right" : 28.0,
+ "bottom" : 28.0,
+ "left" : 28.0
+ }
+ },
+ "totalPages" : 1,
+ "nodes" : [ {
+ "path" : "InvoiceV2ModernRoot[0]",
+ "entityName" : "InvoiceV2ModernRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 28.0,
+ "computedY" : 302.215,
+ "placementX" : 28.0,
+ "placementY" : 302.215,
+ "placementWidth" : 539.276,
+ "placementHeight" : 511.675,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 511.675,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceHero[0]",
+ "entityName" : "InvoiceHero",
+ "entityKind" : "SectionNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 741.04,
+ "placementX" : 28.0,
+ "placementY" : 741.04,
+ "placementWidth" : 538.468,
+ "placementHeight" : 72.85,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 538.468,
+ "contentHeight" : 72.85,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 14.0,
+ "right" : 14.0,
+ "bottom" : 14.0,
+ "left" : 14.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceHero[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]/InvoiceHero[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 42.0,
+ "computedY" : 773.99,
+ "placementX" : 42.0,
+ "placementY" : 773.99,
+ "placementWidth" : 96.488,
+ "placementHeight" : 25.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 96.488,
+ "contentHeight" : 25.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceHero[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]/InvoiceHero[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 42.0,
+ "computedY" : 755.04,
+ "placementX" : 42.0,
+ "placementY" : 755.04,
+ "placementWidth" : 510.468,
+ "placementHeight" : 12.95,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 510.468,
+ "contentHeight" : 12.95,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]",
+ "entityName" : "InvoiceParties",
+ "entityKind" : "RowNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 635.14,
+ "placementX" : 28.0,
+ "placementY" : 635.14,
+ "placementWidth" : 539.276,
+ "placementHeight" : 91.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 91.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]/InvoiceFromParty[0]",
+ "entityName" : "InvoiceFromParty",
+ "entityKind" : "SectionNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 635.14,
+ "placementX" : 28.0,
+ "placementY" : 635.14,
+ "placementWidth" : 132.825,
+ "placementHeight" : 91.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 132.825,
+ "contentHeight" : 91.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]/InvoiceFromParty[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]/InvoiceFromParty[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 716.865,
+ "placementX" : 28.0,
+ "placementY" : 716.865,
+ "placementWidth" : 32.384,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 32.384,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]/InvoiceFromParty[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]/InvoiceFromParty[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 704.69,
+ "placementX" : 28.0,
+ "placementY" : 704.69,
+ "placementWidth" : 119.79,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 119.79,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]/InvoiceFromParty[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]/InvoiceFromParty[0]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 635.14,
+ "placementX" : 28.0,
+ "placementY" : 635.14,
+ "placementWidth" : 132.825,
+ "placementHeight" : 67.55,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 132.825,
+ "contentHeight" : 67.55,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]/InvoiceBillToParty[1]",
+ "entityName" : "InvoiceBillToParty",
+ "entityKind" : "SectionNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 306.638,
+ "computedY" : 635.14,
+ "placementX" : 306.638,
+ "placementY" : 635.14,
+ "placementWidth" : 115.709,
+ "placementHeight" : 91.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 115.709,
+ "contentHeight" : 91.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]/InvoiceBillToParty[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]/InvoiceBillToParty[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 306.638,
+ "computedY" : 716.865,
+ "placementX" : 306.638,
+ "placementY" : 716.865,
+ "placementWidth" : 42.779,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 42.779,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]/InvoiceBillToParty[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]/InvoiceBillToParty[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 306.638,
+ "computedY" : 704.69,
+ "placementX" : 306.638,
+ "placementY" : 704.69,
+ "placementWidth" : 102.685,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 102.685,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]/InvoiceBillToParty[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]/InvoiceParties[1]/InvoiceBillToParty[1]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 306.638,
+ "computedY" : 635.14,
+ "placementX" : 306.638,
+ "placementY" : 635.14,
+ "placementWidth" : 115.709,
+ "placementHeight" : 67.55,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 115.709,
+ "contentHeight" : 67.55,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceLineItems[2]",
+ "entityName" : "InvoiceLineItems",
+ "entityKind" : "TableNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 407.09,
+ "placementX" : 28.0,
+ "placementY" : 407.09,
+ "placementWidth" : 400.84,
+ "placementHeight" : 214.05,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 400.84,
+ "contentHeight" : 214.05,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceFooterRow[3]",
+ "entityName" : "InvoiceFooterRow",
+ "entityKind" : "RowNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]",
+ "childIndex" : 3,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 302.215,
+ "placementX" : 28.0,
+ "placementY" : 302.215,
+ "placementWidth" : 539.276,
+ "placementHeight" : 90.875,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 90.875,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceFooterRow[3]/InvoiceNotes[0]",
+ "entityName" : "InvoiceNotes",
+ "entityKind" : "SectionNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]/InvoiceFooterRow[3]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 315.165,
+ "placementX" : 28.0,
+ "placementY" : 315.165,
+ "placementWidth" : 249.458,
+ "placementHeight" : 77.925,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 249.458,
+ "contentHeight" : 77.925,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceFooterRow[3]/InvoiceNotes[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]/InvoiceFooterRow[3]/InvoiceNotes[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 36.0,
+ "computedY" : 382.915,
+ "placementX" : 36.0,
+ "placementY" : 382.915,
+ "placementWidth" : 30.558,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 30.558,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceFooterRow[3]/InvoiceNotes[0]/ListNode[1]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]/InvoiceFooterRow[3]/InvoiceNotes[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 36.0,
+ "computedY" : 315.165,
+ "placementX" : 36.0,
+ "placementY" : 315.165,
+ "placementWidth" : 241.458,
+ "placementHeight" : 64.75,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 241.458,
+ "contentHeight" : 64.75,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceFooterRow[3]/InvoicePaymentTerms[1]",
+ "entityName" : "InvoicePaymentTerms",
+ "entityKind" : "SectionNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]/InvoiceFooterRow[3]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 306.638,
+ "computedY" : 302.215,
+ "placementX" : 306.638,
+ "placementY" : 302.215,
+ "placementWidth" : 253.35,
+ "placementHeight" : 90.875,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 253.35,
+ "contentHeight" : 90.875,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceFooterRow[3]/InvoicePaymentTerms[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]/InvoiceFooterRow[3]/InvoicePaymentTerms[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 314.638,
+ "computedY" : 382.915,
+ "placementX" : 314.638,
+ "placementY" : 382.915,
+ "placementWidth" : 78.859,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 78.859,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernRoot[0]/InvoiceFooterRow[3]/InvoicePaymentTerms[1]/ListNode[1]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "InvoiceV2ModernRoot[0]/InvoiceFooterRow[3]/InvoicePaymentTerms[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 314.638,
+ "computedY" : 302.215,
+ "placementX" : 314.638,
+ "placementY" : 302.215,
+ "placementWidth" : 245.35,
+ "placementHeight" : 77.7,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 245.35,
+ "contentHeight" : 77.7,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernFooter[1]",
+ "entityName" : "InvoiceV2ModernFooter",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 1,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 28.0,
+ "computedY" : 278.965,
+ "placementX" : 28.0,
+ "placementY" : 278.965,
+ "placementWidth" : 335.71,
+ "placementHeight" : 23.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 335.71,
+ "contentHeight" : 23.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "InvoiceV2ModernFooter[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "InvoiceV2ModernFooter[1]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 278.965,
+ "placementX" : 28.0,
+ "placementY" : 278.965,
+ "placementWidth" : 335.71,
+ "placementHeight" : 9.25,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 335.71,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 14.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/proposal/modern_proposal_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/proposal/modern_proposal_layout.json
new file mode 100644
index 000000000..5303f1856
--- /dev/null
+++ b/qa/src/test/resources/layout-snapshots/canonical-templates/proposal/modern_proposal_layout.json
@@ -0,0 +1,1307 @@
+{
+ "formatVersion" : "2.0",
+ "canvas" : {
+ "pageWidth" : 595.276,
+ "pageHeight" : 841.89,
+ "innerWidth" : 539.276,
+ "innerHeight" : 785.89,
+ "margin" : {
+ "top" : 28.0,
+ "right" : 28.0,
+ "bottom" : 28.0,
+ "left" : 28.0
+ }
+ },
+ "totalPages" : 2,
+ "nodes" : [ {
+ "path" : "ProposalV2ModernRoot[0]",
+ "entityName" : "ProposalV2ModernRoot",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 0,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 28.0,
+ "computedY" : 543.24,
+ "placementX" : 28.0,
+ "placementY" : 543.24,
+ "placementWidth" : 539.276,
+ "placementHeight" : 270.65,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 270.65,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalV2ModernRoot[0]/ProposalHero[0]",
+ "entityName" : "ProposalHero",
+ "entityKind" : "SectionNode",
+ "parentPath" : "ProposalV2ModernRoot[0]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 723.015,
+ "placementX" : 28.0,
+ "placementY" : 723.015,
+ "placementWidth" : 500.332,
+ "placementHeight" : 90.875,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 500.332,
+ "contentHeight" : 90.875,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 14.0,
+ "right" : 14.0,
+ "bottom" : 14.0,
+ "left" : 14.0
+ }
+ }, {
+ "path" : "ProposalV2ModernRoot[0]/ProposalHero[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalV2ModernRoot[0]/ProposalHero[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 42.0,
+ "computedY" : 773.99,
+ "placementX" : 42.0,
+ "placementY" : 773.99,
+ "placementWidth" : 119.812,
+ "placementHeight" : 25.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 119.812,
+ "contentHeight" : 25.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalV2ModernRoot[0]/ProposalHero[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalV2ModernRoot[0]/ProposalHero[0]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 42.0,
+ "computedY" : 755.965,
+ "placementX" : 42.0,
+ "placementY" : 755.965,
+ "placementWidth" : 207.298,
+ "placementHeight" : 12.025,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 207.298,
+ "contentHeight" : 12.025,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalV2ModernRoot[0]/ProposalHero[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalV2ModernRoot[0]/ProposalHero[0]",
+ "childIndex" : 2,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 42.0,
+ "computedY" : 737.015,
+ "placementX" : 42.0,
+ "placementY" : 737.015,
+ "placementWidth" : 472.332,
+ "placementHeight" : 12.95,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 472.332,
+ "contentHeight" : 12.95,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalV2ModernRoot[0]/ProposalExecutiveSummary[1]",
+ "entityName" : "ProposalExecutiveSummary",
+ "entityKind" : "SectionNode",
+ "parentPath" : "ProposalV2ModernRoot[0]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 649.14,
+ "placementX" : 28.0,
+ "placementY" : 649.14,
+ "placementWidth" : 494.778,
+ "placementHeight" : 59.875,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 494.778,
+ "contentHeight" : 59.875,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 12.0,
+ "right" : 12.0,
+ "bottom" : 12.0,
+ "left" : 12.0
+ }
+ }, {
+ "path" : "ProposalV2ModernRoot[0]/ProposalExecutiveSummary[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalV2ModernRoot[0]/ProposalExecutiveSummary[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 40.0,
+ "computedY" : 686.84,
+ "placementX" : 40.0,
+ "placementY" : 686.84,
+ "placementWidth" : 103.323,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 103.323,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalV2ModernRoot[0]/ProposalExecutiveSummary[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalV2ModernRoot[0]/ProposalExecutiveSummary[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 40.0,
+ "computedY" : 661.14,
+ "placementX" : 40.0,
+ "placementY" : 661.14,
+ "placementWidth" : 470.778,
+ "placementHeight" : 21.7,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 470.778,
+ "contentHeight" : 21.7,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalV2ModernRoot[0]/ProposalParties[2]",
+ "entityName" : "ProposalParties",
+ "entityKind" : "RowNode",
+ "parentPath" : "ProposalV2ModernRoot[0]",
+ "childIndex" : 2,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 543.24,
+ "placementX" : 28.0,
+ "placementY" : 543.24,
+ "placementWidth" : 539.276,
+ "placementHeight" : 91.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 539.276,
+ "contentHeight" : 91.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalV2ModernRoot[0]/ProposalParties[2]/ProposalSender[0]",
+ "entityName" : "ProposalSender",
+ "entityKind" : "SectionNode",
+ "parentPath" : "ProposalV2ModernRoot[0]/ProposalParties[2]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 543.24,
+ "placementX" : 28.0,
+ "placementY" : 543.24,
+ "placementWidth" : 127.941,
+ "placementHeight" : 91.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 127.941,
+ "contentHeight" : 91.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalV2ModernRoot[0]/ProposalParties[2]/ProposalSender[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalV2ModernRoot[0]/ProposalParties[2]/ProposalSender[0]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 624.965,
+ "placementX" : 28.0,
+ "placementY" : 624.965,
+ "placementWidth" : 32.384,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 32.384,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalV2ModernRoot[0]/ProposalParties[2]/ProposalSender[0]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalV2ModernRoot[0]/ProposalParties[2]/ProposalSender[0]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 612.79,
+ "placementX" : 28.0,
+ "placementY" : 612.79,
+ "placementWidth" : 119.79,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 119.79,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalV2ModernRoot[0]/ProposalParties[2]/ProposalSender[0]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalV2ModernRoot[0]/ProposalParties[2]/ProposalSender[0]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 28.0,
+ "computedY" : 543.24,
+ "placementX" : 28.0,
+ "placementY" : 543.24,
+ "placementWidth" : 127.941,
+ "placementHeight" : 67.55,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 127.941,
+ "contentHeight" : 67.55,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalV2ModernRoot[0]/ProposalParties[2]/ProposalRecipient[1]",
+ "entityName" : "ProposalRecipient",
+ "entityKind" : "SectionNode",
+ "parentPath" : "ProposalV2ModernRoot[0]/ProposalParties[2]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 306.638,
+ "computedY" : 554.715,
+ "placementX" : 306.638,
+ "placementY" : 554.715,
+ "placementWidth" : 165.22,
+ "placementHeight" : 80.425,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 165.22,
+ "contentHeight" : 80.425,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalV2ModernRoot[0]/ProposalParties[2]/ProposalRecipient[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalV2ModernRoot[0]/ProposalParties[2]/ProposalRecipient[1]",
+ "childIndex" : 0,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 306.638,
+ "computedY" : 624.965,
+ "placementX" : 306.638,
+ "placementY" : 624.965,
+ "placementWidth" : 15.279,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 15.279,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalV2ModernRoot[0]/ProposalParties[2]/ProposalRecipient[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalV2ModernRoot[0]/ProposalParties[2]/ProposalRecipient[1]",
+ "childIndex" : 1,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 306.638,
+ "computedY" : 612.79,
+ "placementX" : 306.638,
+ "placementY" : 612.79,
+ "placementWidth" : 102.685,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 102.685,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalV2ModernRoot[0]/ProposalParties[2]/ProposalRecipient[1]/ParagraphNode[2]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalV2ModernRoot[0]/ProposalParties[2]/ProposalRecipient[1]",
+ "childIndex" : 2,
+ "depth" : 4,
+ "layer" : 4,
+ "computedX" : 306.638,
+ "computedY" : 554.715,
+ "placementX" : 306.638,
+ "placementY" : 554.715,
+ "placementWidth" : 165.22,
+ "placementHeight" : 56.075,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 165.22,
+ "contentHeight" : 56.075,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalSectionGroup[1]",
+ "entityName" : "ProposalSectionGroup",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 1,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 28.0,
+ "computedY" : 475.64,
+ "placementX" : 28.0,
+ "placementY" : 475.64,
+ "placementWidth" : 523.974,
+ "placementHeight" : 67.6,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 523.974,
+ "contentHeight" : 67.6,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalSectionGroup[1]/ProposalSectionTitle[0]",
+ "entityName" : "ProposalSectionTitle",
+ "entityKind" : "SectionNode",
+ "parentPath" : "ProposalSectionGroup[1]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 511.515,
+ "placementX" : 28.0,
+ "placementY" : 511.515,
+ "placementWidth" : 116.195,
+ "placementHeight" : 31.725,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 116.195,
+ "contentHeight" : 31.725,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalSectionGroup[1]/ProposalSectionTitle[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalSectionGroup[1]/ProposalSectionTitle[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 515.515,
+ "placementX" : 28.0,
+ "placementY" : 515.515,
+ "placementWidth" : 116.195,
+ "placementHeight" : 15.725,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 116.195,
+ "contentHeight" : 15.725,
+ "margin" : {
+ "top" : 12.0,
+ "right" : 0.0,
+ "bottom" : 4.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalSectionGroup[1]/ProposalSectionBody[1]",
+ "entityName" : "ProposalSectionBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "ProposalSectionGroup[1]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 475.64,
+ "placementX" : 28.0,
+ "placementY" : 475.64,
+ "placementWidth" : 523.974,
+ "placementHeight" : 31.875,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 523.974,
+ "contentHeight" : 31.875,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalSectionGroup[1]/ProposalSectionBody[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalSectionGroup[1]/ProposalSectionBody[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 485.815,
+ "placementX" : 28.0,
+ "placementY" : 485.815,
+ "placementWidth" : 523.974,
+ "placementHeight" : 21.7,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 523.974,
+ "contentHeight" : 21.7,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalSectionGroup[1]/ProposalSectionBody[1]/ParagraphNode[1]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalSectionGroup[1]/ProposalSectionBody[1]",
+ "childIndex" : 1,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 475.64,
+ "placementX" : 28.0,
+ "placementY" : 475.64,
+ "placementWidth" : 349.085,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 349.085,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalSectionGroup[2]",
+ "entityName" : "ProposalSectionGroup",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 2,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 28.0,
+ "computedY" : 429.74,
+ "placementX" : 28.0,
+ "placementY" : 429.74,
+ "placementWidth" : 530.024,
+ "placementHeight" : 45.9,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 530.024,
+ "contentHeight" : 45.9,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalSectionGroup[2]/ProposalSectionTitle[0]",
+ "entityName" : "ProposalSectionTitle",
+ "entityKind" : "SectionNode",
+ "parentPath" : "ProposalSectionGroup[2]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 443.915,
+ "placementX" : 28.0,
+ "placementY" : 443.915,
+ "placementWidth" : 79.339,
+ "placementHeight" : 31.725,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 79.339,
+ "contentHeight" : 31.725,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalSectionGroup[2]/ProposalSectionTitle[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalSectionGroup[2]/ProposalSectionTitle[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 447.915,
+ "placementX" : 28.0,
+ "placementY" : 447.915,
+ "placementWidth" : 79.339,
+ "placementHeight" : 15.725,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 79.339,
+ "contentHeight" : 15.725,
+ "margin" : {
+ "top" : 12.0,
+ "right" : 0.0,
+ "bottom" : 4.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalSectionGroup[2]/ProposalSectionBody[1]",
+ "entityName" : "ProposalSectionBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "ProposalSectionGroup[2]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 429.74,
+ "placementX" : 28.0,
+ "placementY" : 429.74,
+ "placementWidth" : 530.024,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 530.024,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalSectionGroup[2]/ProposalSectionBody[1]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalSectionGroup[2]/ProposalSectionBody[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 429.74,
+ "placementX" : 28.0,
+ "placementY" : 429.74,
+ "placementWidth" : 530.024,
+ "placementHeight" : 10.175,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 530.024,
+ "contentHeight" : 10.175,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalTimelineGroup[3]",
+ "entityName" : "ProposalTimelineGroup",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 3,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 28.0,
+ "computedY" : 286.99,
+ "placementX" : 28.0,
+ "placementY" : 286.99,
+ "placementWidth" : 447.95,
+ "placementHeight" : 142.75,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 447.95,
+ "contentHeight" : 142.75,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalTimelineGroup[3]/ProposalTimelineTitle[0]",
+ "entityName" : "ProposalTimelineTitle",
+ "entityKind" : "SectionNode",
+ "parentPath" : "ProposalTimelineGroup[3]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 398.015,
+ "placementX" : 28.0,
+ "placementY" : 398.015,
+ "placementWidth" : 68.969,
+ "placementHeight" : 31.725,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 68.969,
+ "contentHeight" : 31.725,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalTimelineGroup[3]/ProposalTimelineTitle[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalTimelineGroup[3]/ProposalTimelineTitle[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 402.015,
+ "placementX" : 28.0,
+ "placementY" : 402.015,
+ "placementWidth" : 68.969,
+ "placementHeight" : 15.725,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 68.969,
+ "contentHeight" : 15.725,
+ "margin" : {
+ "top" : 12.0,
+ "right" : 0.0,
+ "bottom" : 4.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalTimelineGroup[3]/ProposalTimeline[1]",
+ "entityName" : "ProposalTimeline",
+ "entityKind" : "TableNode",
+ "parentPath" : "ProposalTimelineGroup[3]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 286.99,
+ "placementX" : 28.0,
+ "placementY" : 286.99,
+ "placementWidth" : 447.95,
+ "placementHeight" : 107.025,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 447.95,
+ "contentHeight" : 107.025,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalPricingGroup[4]",
+ "entityName" : "ProposalPricingGroup",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 4,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 28.0,
+ "computedY" : 118.065,
+ "placementX" : 28.0,
+ "placementY" : 118.065,
+ "placementWidth" : 402.124,
+ "placementHeight" : 168.925,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 402.124,
+ "contentHeight" : 168.925,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalPricingGroup[4]/ProposalPricingTitle[0]",
+ "entityName" : "ProposalPricingTitle",
+ "entityKind" : "SectionNode",
+ "parentPath" : "ProposalPricingGroup[4]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 255.265,
+ "placementX" : 28.0,
+ "placementY" : 255.265,
+ "placementWidth" : 89.743,
+ "placementHeight" : 31.725,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 89.743,
+ "contentHeight" : 31.725,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalPricingGroup[4]/ProposalPricingTitle[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalPricingGroup[4]/ProposalPricingTitle[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 259.265,
+ "placementX" : 28.0,
+ "placementY" : 259.265,
+ "placementWidth" : 89.743,
+ "placementHeight" : 15.725,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 89.743,
+ "contentHeight" : 15.725,
+ "margin" : {
+ "top" : 12.0,
+ "right" : 0.0,
+ "bottom" : 4.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalPricingGroup[4]/ProposalPricing[1]",
+ "entityName" : "ProposalPricing",
+ "entityKind" : "TableNode",
+ "parentPath" : "ProposalPricingGroup[4]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 118.065,
+ "placementX" : 28.0,
+ "placementY" : 118.065,
+ "placementWidth" : 402.124,
+ "placementHeight" : 133.2,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 402.124,
+ "contentHeight" : 133.2,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalAcceptanceGroup[5]",
+ "entityName" : "ProposalAcceptanceGroup",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 5,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 28.0,
+ "computedY" : 43.49,
+ "placementX" : 28.0,
+ "placementY" : 43.49,
+ "placementWidth" : 394.218,
+ "placementHeight" : 74.575,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 394.218,
+ "contentHeight" : 74.575,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalAcceptanceGroup[5]/ProposalAcceptanceTitle[0]",
+ "entityName" : "ProposalAcceptanceTitle",
+ "entityKind" : "SectionNode",
+ "parentPath" : "ProposalAcceptanceGroup[5]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 86.34,
+ "placementX" : 28.0,
+ "placementY" : 86.34,
+ "placementWidth" : 146.438,
+ "placementHeight" : 31.725,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 146.438,
+ "contentHeight" : 31.725,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalAcceptanceGroup[5]/ProposalAcceptanceTitle[0]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalAcceptanceGroup[5]/ProposalAcceptanceTitle[0]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 28.0,
+ "computedY" : 90.34,
+ "placementX" : 28.0,
+ "placementY" : 90.34,
+ "placementWidth" : 146.438,
+ "placementHeight" : 15.725,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 146.438,
+ "contentHeight" : 15.725,
+ "margin" : {
+ "top" : 12.0,
+ "right" : 0.0,
+ "bottom" : 4.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalAcceptanceGroup[5]/ProposalAcceptanceBody[1]",
+ "entityName" : "ProposalAcceptanceBody",
+ "entityKind" : "SectionNode",
+ "parentPath" : "ProposalAcceptanceGroup[5]",
+ "childIndex" : 1,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 43.49,
+ "placementX" : 28.0,
+ "placementY" : 43.49,
+ "placementWidth" : 394.218,
+ "placementHeight" : 38.85,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 394.218,
+ "contentHeight" : 38.85,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 8.0
+ }
+ }, {
+ "path" : "ProposalAcceptanceGroup[5]/ProposalAcceptanceBody[1]/ListNode[0]",
+ "entityName" : null,
+ "entityKind" : "ListNode",
+ "parentPath" : "ProposalAcceptanceGroup[5]/ProposalAcceptanceBody[1]",
+ "childIndex" : 0,
+ "depth" : 3,
+ "layer" : 3,
+ "computedX" : 36.0,
+ "computedY" : 43.49,
+ "placementX" : 36.0,
+ "placementY" : 43.49,
+ "placementWidth" : 386.218,
+ "placementHeight" : 38.85,
+ "startPage" : 0,
+ "endPage" : 0,
+ "contentWidth" : 386.218,
+ "contentHeight" : 38.85,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalV2ModernFooter[6]",
+ "entityName" : "ProposalV2ModernFooter",
+ "entityKind" : "ContainerNode",
+ "parentPath" : null,
+ "childIndex" : 6,
+ "depth" : 1,
+ "layer" : 1,
+ "computedX" : 28.0,
+ "computedY" : 790.64,
+ "placementX" : 28.0,
+ "placementY" : 790.64,
+ "placementWidth" : 313.46,
+ "placementHeight" : 23.25,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 313.46,
+ "contentHeight" : 23.25,
+ "margin" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ }, {
+ "path" : "ProposalV2ModernFooter[6]/ParagraphNode[0]",
+ "entityName" : null,
+ "entityKind" : "ParagraphNode",
+ "parentPath" : "ProposalV2ModernFooter[6]",
+ "childIndex" : 0,
+ "depth" : 2,
+ "layer" : 2,
+ "computedX" : 28.0,
+ "computedY" : 790.64,
+ "placementX" : 28.0,
+ "placementY" : 790.64,
+ "placementWidth" : 313.46,
+ "placementHeight" : 9.25,
+ "startPage" : 1,
+ "endPage" : 1,
+ "contentWidth" : 313.46,
+ "contentHeight" : 9.25,
+ "margin" : {
+ "top" : 14.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ },
+ "padding" : {
+ "top" : 0.0,
+ "right" : 0.0,
+ "bottom" : 0.0,
+ "left" : 0.0
+ }
+ } ]
+}
From 231819487e0f92f9f603ed226030654d0790ce8c Mon Sep 17 00:00:00 2001
From: DemchaAV
Date: Sun, 13 Sep 2026 15:26:46 +0100
Subject: [PATCH 3/4] test(templates): hold every shipped preset to a layout
snapshot
The thirty-three presets restored in the previous two commits went two months
without a layout snapshot and nothing said so. Their suites were deleted along
with another family, their baselines stayed on disk, and every gate that
remained only checked the presets it listed.
ShippedPresetLayoutSnapshotCoverageTest derives the two sets independently
and compares them:
- shipped: every class under a templates presets package that declares a
public ID, read from the templates sources;
- covered: every preset an active layout-snapshot suite renders, read from the
qa sources. A suite is a test that calls assertCanonicalSnapshot and is not
disabled; it covers a preset of its own family it creates directly, or
through a Stream roster it reads from a fixture. A fixture read
only for its document covers nothing, and comments and strings are stripped
before any of this is matched.
Neither side is a hand-kept list and no count is asserted, so a preset added
without a suite fails it by name. An allow-list takes a reviewed exemption
with its reason and is empty; a second test rejects an entry that does not
ship, or that a suite already covers.
Sabotaged, each change confirmed on disk before the run and reverted after:
- the four gates added in this branch removed: fails naming exactly the 33
- mint_editorial dropped from the CV roster: names cv/MintEditorial
- a new preset class with an ID and no suite: names it
- CobaltRota's suite disabled by a fully qualified @Disabled, or no longer
calling assertCanonicalSnapshot: names rota/CobaltRota
- ClassicInvoice's suite rendering another preset while still reading
InvoicePresetFixtures for its document: names invoice/ClassicInvoice
- an exemption for a covered preset, and one for a preset that does not ship:
the second test fails, naming each
---
...ippedPresetLayoutSnapshotCoverageTest.java | 206 ++++++++++++++++++
1 file changed, 206 insertions(+)
create mode 100644 qa/src/test/java/com/demcha/compose/document/templates/ShippedPresetLayoutSnapshotCoverageTest.java
diff --git a/qa/src/test/java/com/demcha/compose/document/templates/ShippedPresetLayoutSnapshotCoverageTest.java b/qa/src/test/java/com/demcha/compose/document/templates/ShippedPresetLayoutSnapshotCoverageTest.java
new file mode 100644
index 000000000..d74938889
--- /dev/null
+++ b/qa/src/test/java/com/demcha/compose/document/templates/ShippedPresetLayoutSnapshotCoverageTest.java
@@ -0,0 +1,206 @@
+package com.demcha.compose.document.templates;
+
+import org.junit.jupiter.api.Test;
+
+import java.io.IOException;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+import java.util.TreeMap;
+import java.util.TreeSet;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+import java.util.stream.Stream;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+/**
+ * Every shipped preset is rendered by an active layout-snapshot suite.
+ *
+ * The pixel parity gates tolerate tens of thousands of mismatched pixels, so a shift of a
+ * few points in a preset passes them; only the exact layout snapshot sees it. Thirty-three
+ * shipped presets once went two months with no snapshot at all: the suites that pinned them
+ * were deleted along with an older template family, their baselines stayed behind, and
+ * nothing noticed that no test read those files any more.
+ *
+ * So the two sets are derived independently and compared. The shipped presets come from
+ * the templates sources — every class under a {@code presets} package declaring a public
+ * {@code ID}. The covered presets come from the qa sources — a suite is any test calling
+ * {@code assertCanonicalSnapshot} and not disabled, and it covers a preset of its own family
+ * it creates directly ({@code Preset.create(} or {@code Preset::create}) or through a
+ * {@code Stream} roster it reads from a fixture. A fixture read only for its
+ * document covers nothing. Neither side is a hand-kept list, so adding a preset without a
+ * suite reddens this test on its own.
+ */
+class ShippedPresetLayoutSnapshotCoverageTest {
+
+ private static final Path PRESET_SOURCES = Path.of("..", "templates", "src", "main", "java",
+ "com", "demcha", "compose", "document", "templates");
+ private static final Path SUITE_SOURCES = Path.of("src", "test", "java",
+ "com", "demcha", "compose", "document", "templates");
+
+ /**
+ * Shipped presets deliberately left without a layout snapshot, as family/Preset to the
+ * reason. Empty: every shipped preset has one.
+ */
+ private static final Map ALLOW_LIST = Map.of();
+
+ private static final Pattern ROSTER_CALL =
+ Pattern.compile("\\b([A-Z]\\w*Fixtures)\\s*\\.\\s*(\\w+)\\s*\\(\\s*\\)");
+
+ /** {@code @Disabled}, imported or fully qualified. */
+ private static final Pattern DISABLED = Pattern.compile("@\\s*(?:[\\w.]+\\.)?Disabled\\b");
+
+ @Test
+ void everyShippedPresetIsRenderedByAnActiveLayoutSnapshotSuite() throws IOException {
+ Set shipped = shippedPresets();
+ Map> covered = coverage(shipped);
+
+ assertThat(shipped)
+ .describedAs("no shipped preset found under %s — the scan is looking in the wrong place",
+ PRESET_SOURCES.toAbsolutePath().normalize())
+ .isNotEmpty();
+
+ List uncovered = shipped.stream()
+ .filter(preset -> !covered.containsKey(preset) && !ALLOW_LIST.containsKey(preset))
+ .toList();
+ assertThat(uncovered)
+ .describedAs("shipped presets no active layout-snapshot suite renders — add each to a "
+ + "family roster or give it a *LayoutSnapshotTest, or allow-list it with the reason")
+ .isEmpty();
+ }
+
+ @Test
+ void theAllowListNamesOnlyShippedPresetsThatReallyHaveNoSuite() throws IOException {
+ Set shipped = shippedPresets();
+ Map> covered = coverage(shipped);
+
+ assertThat(ALLOW_LIST.keySet().stream().filter(preset -> !shipped.contains(preset)).sorted().toList())
+ .describedAs("the allow-list names presets that do not ship")
+ .isEmpty();
+ assertThat(ALLOW_LIST.keySet().stream().filter(covered::containsKey).sorted().toList())
+ .describedAs("the allow-list exempts presets a suite already renders — drop the exemptions")
+ .isEmpty();
+ }
+
+ /** family/Preset for every class under a presets package that declares a public ID. */
+ private static Set shippedPresets() throws IOException {
+ Set shipped = new TreeSet<>();
+ try (Stream files = Files.walk(PRESET_SOURCES)) {
+ for (Path file : files.filter(ShippedPresetLayoutSnapshotCoverageTest::isJava).toList()) {
+ Path rel = PRESET_SOURCES.relativize(file);
+ if (rel.getNameCount() == 3 && rel.getName(1).toString().equals("presets")
+ && code(Files.readString(file)).contains("public static final String ID")) {
+ shipped.add(rel.getName(0) + "/" + simpleName(file));
+ }
+ }
+ }
+ return shipped;
+ }
+
+ /** family/Preset to the suites that render it. */
+ private static Map> coverage(Set shipped) throws IOException {
+ Map> covered = new TreeMap<>();
+ try (Stream files = Files.walk(SUITE_SOURCES)) {
+ for (Path suite : files.filter(ShippedPresetLayoutSnapshotCoverageTest::isJava).toList()) {
+ String code = code(Files.readString(suite));
+ if (!code.contains("assertCanonicalSnapshot(") || DISABLED.matcher(code).find()
+ || suite.getFileName().toString().equals("TemplateTestSupport.java")) {
+ continue;
+ }
+ String family = SUITE_SOURCES.relativize(suite).getName(0).toString();
+ List rendered = new ArrayList<>(created(code, shipped, family));
+ Matcher roster = ROSTER_CALL.matcher(code);
+ while (roster.find()) {
+ Path fixture = suite.resolveSibling(roster.group(1) + ".java");
+ if (Files.exists(fixture)) {
+ String body = rosterBody(code(Files.readString(fixture)), roster.group(2));
+ rendered.addAll(created(body, shipped, family));
+ }
+ }
+ for (String preset : rendered) {
+ covered.computeIfAbsent(preset, key -> new TreeSet<>()).add(simpleName(suite));
+ }
+ }
+ }
+ return covered;
+ }
+
+ /** The shipped presets of one family that a piece of code creates. */
+ private static List created(String code, Set shipped, String family) {
+ List found = new ArrayList<>();
+ for (String preset : shipped) {
+ if (!preset.startsWith(family + "/")) {
+ continue;
+ }
+ String name = Pattern.quote(preset.substring(family.length() + 1));
+ if (Pattern.compile("\\b" + name + "\\s*(::\\s*create\\b|\\.\\s*create\\s*\\()").matcher(code).find()) {
+ found.add(preset);
+ }
+ }
+ return found;
+ }
+
+ /** The body of a {@code Stream} method; empty when the method is not a roster. */
+ private static String rosterBody(String code, String method) {
+ Matcher start = Pattern.compile("Stream\\s*<\\s*Arguments\\s*>\\s+" + Pattern.quote(method) + "\\s*\\(\\s*\\)\\s*\\{")
+ .matcher(code);
+ if (!start.find()) {
+ return "";
+ }
+ int depth = 1;
+ for (int i = start.end(); i < code.length(); i++) {
+ char c = code.charAt(i);
+ if (c == '{') {
+ depth++;
+ } else if (c == '}' && --depth == 0) {
+ return code.substring(start.end(), i);
+ }
+ }
+ return "";
+ }
+
+ /** Source with comments and string and character literals blanked, so prose cannot count. */
+ private static String code(String source) {
+ StringBuilder out = new StringBuilder(source.length());
+ int i = 0;
+ while (i < source.length()) {
+ char c = source.charAt(i);
+ char next = i + 1 < source.length() ? source.charAt(i + 1) : '\0';
+ if (c == '/' && next == '/') {
+ while (i < source.length() && source.charAt(i) != '\n') {
+ i++;
+ }
+ } else if (c == '/' && next == '*') {
+ int end = source.indexOf("*/", i + 2);
+ i = end < 0 ? source.length() : end + 2;
+ out.append(' ');
+ } else if (c == '"' || c == '\'') {
+ boolean textBlock = c == '"' && source.startsWith("\"\"\"", i);
+ String close = textBlock ? "\"\"\"" : String.valueOf(c);
+ i += close.length();
+ while (i < source.length() && !source.startsWith(close, i)) {
+ i += source.charAt(i) == '\\' ? 2 : 1;
+ }
+ i += close.length();
+ out.append("\"\"");
+ } else {
+ out.append(c);
+ i++;
+ }
+ }
+ return out.toString();
+ }
+
+ private static boolean isJava(Path path) {
+ return path.getFileName().toString().endsWith(".java");
+ }
+
+ private static String simpleName(Path file) {
+ String name = file.getFileName().toString();
+ return name.substring(0, name.length() - ".java".length());
+ }
+}
From 5b44846ce417116bc579be83aa65fd1249728b43 Mon Sep 17 00:00:00 2001
From: DemchaAV
Date: Sun, 13 Sep 2026 15:32:15 +0100
Subject: [PATCH 4/4] test(templates): remove the orphaned snapshots and dead
fixture helpers
Thirty-eight baselines under layout-snapshots/canonical-templates had no
reader. Thirty-two lost their suites when the classic families went: the
template_v2_cv and cv-v2/regression files in #277, the template_v2_letter
files in #276. The invoice_standard, proposal_long and four weekly-schedule
layouts were last read by tests removed in the v1.6 cleanup, 47241c83. Nine
TemplateTestSupport helpers that fed those tests had no callers left.
Both removals were proven on this tree immediately before deleting:
- no tracked file names any of the 38 outside the snapshot folders, except
docs/operations/layout-snapshot-testing.md, whose naming section lists two
of them as examples beside two names that never existed as files;
- nothing builds their names from parts (template_v2_, regression,
weekly_schedule), and no test or tool walks the snapshot folders;
- the nine helpers have no qualified call, static import, wildcard import,
method reference, or string or reflective use; the only calls to them were
from one another.
TemplateTestSupport now says what the canonical root is for, that a baseline
belongs to the suite that writes it, and that
ShippedPresetLayoutSnapshotCoverageTest holds every shipped preset to it.
Every *LayoutSnapshotTest in qa and the coverage test stay green after the
removal: 34 classes, 74 tests.
---
.../templates/TemplateTestSupport.java | 56 +-
.../template_v2_letter_blue_banner.json | 347 ---
.../template_v2_letter_boxed_sections.json | 347 ---
.../template_v2_letter_centered_headline.json | 347 ---
.../template_v2_letter_classic_serif.json | 347 ---
.../template_v2_letter_compact_mono.json | 347 ---
.../template_v2_letter_editorial_blue.json | 347 ---
...template_v2_letter_engineering_resume.json | 347 ---
.../template_v2_letter_executive.json | 347 ---
...emplate_v2_letter_modern_professional.json | 347 ---
.../template_v2_letter_monogram_sidebar.json | 347 ---
.../template_v2_letter_nordic_clean.json | 347 ---
.../template_v2_letter_panel.json | 347 ---
.../template_v2_letter_sidebar_portrait.json | 347 ---
.../template_v2_letter_timeline_minimal.json | 347 ---
.../boxed_sections_education_block.json | 677 -----
.../boxed_sections_key_value_bold_key.json | 347 ---
..._sections_prose_rejection_legacy_path.json | 317 ---
.../boxed_sections_work_history_block.json | 677 -----
.../cv-v2/template_v2_cv_blue_banner.json | 1667 ------------
.../cv-v2/template_v2_cv_boxed_sections.json | 1487 -----------
.../template_v2_cv_centered_headline.json | 1307 ----------
.../cv-v2/template_v2_cv_classic_serif.json | 1337 ----------
.../cv-v2/template_v2_cv_compact_mono.json | 1037 --------
.../cv-v2/template_v2_cv_editorial_blue.json | 1397 ----------
.../template_v2_cv_engineering_resume.json | 1517 -----------
.../cv-v2/template_v2_cv_executive.json | 857 ------
.../template_v2_cv_modern_professional.json | 1067 --------
.../template_v2_cv_monogram_sidebar.json | 1487 -----------
.../cv-v2/template_v2_cv_nordic_clean.json | 1397 ----------
.../cv-v2/template_v2_cv_panel.json | 1097 --------
.../template_v2_cv_sidebar_portrait.json | 2297 -----------------
.../template_v2_cv_timeline_minimal.json | 1757 -------------
.../invoice/invoice_standard_layout.json | 1517 -----------
.../proposal/proposal_long_layout.json | 1907 --------------
...kly_schedule_changed_category_catalog.json | 377 ---
.../weekly_schedule_standard.json | 377 ---
...eekly_schedule_with_additional_person.json | 377 ---
...eekly_schedule_without_metrics_footer.json | 227 --
39 files changed, 11 insertions(+), 31411 deletions(-)
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_blue_banner.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_boxed_sections.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_centered_headline.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_classic_serif.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_compact_mono.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_editorial_blue.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_engineering_resume.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_executive.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_modern_professional.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_monogram_sidebar.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_nordic_clean.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_panel.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_sidebar_portrait.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_timeline_minimal.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/regression/boxed_sections_education_block.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/regression/boxed_sections_key_value_bold_key.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/regression/boxed_sections_prose_rejection_legacy_path.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/regression/boxed_sections_work_history_block.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_blue_banner.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_boxed_sections.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_centered_headline.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_classic_serif.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_compact_mono.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_editorial_blue.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_engineering_resume.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_executive.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_modern_professional.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_monogram_sidebar.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_nordic_clean.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_panel.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_sidebar_portrait.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_timeline_minimal.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/invoice/invoice_standard_layout.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/proposal/proposal_long_layout.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/weekly-schedule/weekly_schedule_changed_category_catalog.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/weekly-schedule/weekly_schedule_standard.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/weekly-schedule/weekly_schedule_with_additional_person.json
delete mode 100644 qa/src/test/resources/layout-snapshots/canonical-templates/weekly-schedule/weekly_schedule_without_metrics_footer.json
diff --git a/qa/src/test/java/com/demcha/compose/document/templates/TemplateTestSupport.java b/qa/src/test/java/com/demcha/compose/document/templates/TemplateTestSupport.java
index e27454083..59381cb16 100644
--- a/qa/src/test/java/com/demcha/compose/document/templates/TemplateTestSupport.java
+++ b/qa/src/test/java/com/demcha/compose/document/templates/TemplateTestSupport.java
@@ -3,16 +3,7 @@
import com.demcha.compose.GraphCompose;
import com.demcha.compose.document.api.DocumentPageSize;
import com.demcha.compose.document.api.DocumentSession;
-import com.demcha.compose.document.templates.data.invoice.InvoiceData;
-import com.demcha.compose.document.templates.data.invoice.InvoiceDocumentSpec;
-import com.demcha.compose.document.templates.data.proposal.ProposalData;
-import com.demcha.compose.document.templates.data.proposal.ProposalDocumentSpec;
-import com.demcha.compose.document.templates.data.schedule.WeeklyScheduleData;
-import com.demcha.compose.document.templates.data.schedule.WeeklyScheduleDocumentSpec;
import com.demcha.compose.font.FontName;
-import com.demcha.mock.InvoiceDataFixtures;
-import com.demcha.mock.ProposalDataFixtures;
-import com.demcha.mock.WeeklyScheduleDataFixtures;
import org.apache.pdfbox.contentstream.operator.Operator;
import org.apache.pdfbox.cos.COSNumber;
import org.apache.pdfbox.Loader;
@@ -33,6 +24,17 @@
import static org.assertj.core.api.Assertions.assertThat;
+/**
+ * Shared plumbing for the template gates.
+ *
+ * {@link #assertCanonicalSnapshot} owns the
+ * {@code layout-snapshots/canonical-templates} baseline root, one folder per template
+ * family. Every shipped preset has to be rendered through it by an active suite — a
+ * family roster such as {@code CvPresetFixtures}, or a {@code *LayoutSnapshotTest} of its
+ * own — and {@code ShippedPresetLayoutSnapshotCoverageTest} holds that from the sources.
+ * A baseline belongs to the suite that writes it: when a suite goes, its JSON goes with it,
+ * because nothing reports a snapshot that no test reads any more.
+ */
public final class TemplateTestSupport {
private static final Pattern NON_ALPHANUMERIC = Pattern.compile("[^a-z0-9]");
private static final Color GUIDE_BOX_COLOR = new Color(150, 150, 150);
@@ -47,42 +49,6 @@ public final class TemplateTestSupport {
private TemplateTestSupport() {
}
- public static InvoiceData canonicalInvoiceData() {
- return InvoiceDataFixtures.standardInvoice();
- }
-
- public static InvoiceDocumentSpec canonicalInvoice() {
- return InvoiceDocumentSpec.from(canonicalInvoiceData());
- }
-
- public static ProposalData canonicalProposalData() {
- return ProposalDataFixtures.longProposal();
- }
-
- public static ProposalDocumentSpec canonicalProposal() {
- return ProposalDocumentSpec.from(canonicalProposalData());
- }
-
- public static WeeklyScheduleData canonicalWeeklyScheduleData() {
- return WeeklyScheduleDataFixtures.standardSchedule();
- }
-
- public static WeeklyScheduleDocumentSpec canonicalWeeklySchedule() {
- return WeeklyScheduleDocumentSpec.from(canonicalWeeklyScheduleData());
- }
-
- public static WeeklyScheduleDocumentSpec canonicalWeeklyScheduleWithoutMetricsOrFooter() {
- return WeeklyScheduleDocumentSpec.from(WeeklyScheduleDataFixtures.withoutMetricsOrFooter());
- }
-
- public static WeeklyScheduleDocumentSpec canonicalWeeklyScheduleWithAdditionalPerson() {
- return WeeklyScheduleDocumentSpec.from(WeeklyScheduleDataFixtures.withAdditionalPerson());
- }
-
- public static WeeklyScheduleDocumentSpec canonicalWeeklyScheduleWithChangedCategoryCatalog() {
- return WeeklyScheduleDocumentSpec.from(WeeklyScheduleDataFixtures.withAddedAndRemovedCategory());
- }
-
public static String snapshotSlug(FontName fontName) {
return fontName.name()
.toLowerCase(Locale.ROOT)
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_blue_banner.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_blue_banner.json
deleted file mode 100644
index c2febdf15..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_blue_banner.json
+++ /dev/null
@@ -1,347 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 555.276,
- "innerHeight" : 797.89,
- "margin" : {
- "top" : 22.0,
- "right" : 18.0,
- "bottom" : 22.0,
- "left" : 22.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "layout.letterFormat[0]",
- "entityName" : "layout.letterFormat",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 22.0,
- "computedY" : 617.14,
- "placementX" : 22.0,
- "placementY" : 617.14,
- "placementWidth" : 555.276,
- "placementHeight" : 202.75,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 202.75,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]",
- "entityName" : "Header",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 764.14,
- "placementX" : 22.0,
- "placementY" : 764.14,
- "placementWidth" : 555.276,
- "placementHeight" : 55.75,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 55.75,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.name[0]",
- "entityName" : "Header.name",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 790.74,
- "placementX" : 22.0,
- "placementY" : 790.74,
- "placementWidth" : 555.276,
- "placementHeight" : 29.15,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 29.15,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.contact[1]",
- "entityName" : "Header.contact",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 777.74,
- "placementX" : 22.0,
- "placementY" : 777.74,
- "placementWidth" : 555.276,
- "placementHeight" : 9.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 9.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.links[2]",
- "entityName" : "Header.links",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 764.14,
- "placementX" : 22.0,
- "placementY" : 764.14,
- "placementWidth" : 555.276,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.greeting[1]",
- "entityName" : "letter.greeting",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 728.14,
- "placementX" : 22.0,
- "placementY" : 728.14,
- "placementWidth" : 181.7,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 181.7,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 12.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]",
- "entityName" : "letter.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 647.14,
- "placementX" : 22.0,
- "placementY" : 647.14,
- "placementWidth" : 523.86,
- "placementHeight" : 63.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 523.86,
- "contentHeight" : 63.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[0][0]",
- "entityName" : "letter.body[0]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 683.14,
- "placementX" : 22.0,
- "placementY" : 683.14,
- "placementWidth" : 523.86,
- "placementHeight" : 27.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 523.86,
- "contentHeight" : 27.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[1][1]",
- "entityName" : "letter.body[1]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 665.14,
- "placementX" : 22.0,
- "placementY" : 665.14,
- "placementWidth" : 467.55,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 467.55,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[2][2]",
- "entityName" : "letter.body[2]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 647.14,
- "placementX" : 22.0,
- "placementY" : 647.14,
- "placementWidth" : 465.34,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 465.34,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.closing[3]",
- "entityName" : "letter.closing",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 617.14,
- "placementX" : 22.0,
- "placementY" : 617.14,
- "placementWidth" : 126.81,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 126.81,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_boxed_sections.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_boxed_sections.json
deleted file mode 100644
index 01e127325..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_boxed_sections.json
+++ /dev/null
@@ -1,347 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 555.276,
- "innerHeight" : 797.89,
- "margin" : {
- "top" : 22.0,
- "right" : 18.0,
- "bottom" : 22.0,
- "left" : 22.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "layout.letterFormat[0]",
- "entityName" : "layout.letterFormat",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 22.0,
- "computedY" : 605.715,
- "placementX" : 22.0,
- "placementY" : 605.715,
- "placementWidth" : 555.276,
- "placementHeight" : 214.175,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 214.175,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]",
- "entityName" : "Header",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 760.215,
- "placementX" : 22.0,
- "placementY" : 760.215,
- "placementWidth" : 555.276,
- "placementHeight" : 59.675,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 59.675,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.name[0]",
- "entityName" : "Header.name",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 790.74,
- "placementX" : 22.0,
- "placementY" : 790.74,
- "placementWidth" : 555.276,
- "placementHeight" : 29.15,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 29.15,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.contact[1]",
- "entityName" : "Header.contact",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 775.477,
- "placementX" : 22.0,
- "placementY" : 775.477,
- "placementWidth" : 555.276,
- "placementHeight" : 11.263,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 11.263,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.links[2]",
- "entityName" : "Header.links",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 760.215,
- "placementX" : 22.0,
- "placementY" : 760.215,
- "placementWidth" : 555.276,
- "placementHeight" : 11.263,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 11.263,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.greeting[1]",
- "entityName" : "letter.greeting",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 722.965,
- "placementX" : 22.0,
- "placementY" : 722.965,
- "placementWidth" : 188.56,
- "placementHeight" : 13.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 188.56,
- "contentHeight" : 13.25,
- "margin" : {
- "top" : 12.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]",
- "entityName" : "letter.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 636.965,
- "placementX" : 22.0,
- "placementY" : 636.965,
- "placementWidth" : 533.36,
- "placementHeight" : 68.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 533.36,
- "contentHeight" : 68.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[0][0]",
- "entityName" : "letter.body[0]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 675.465,
- "placementX" : 22.0,
- "placementY" : 675.465,
- "placementWidth" : 533.36,
- "placementHeight" : 29.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 533.36,
- "contentHeight" : 29.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[1][1]",
- "entityName" : "letter.body[1]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 656.215,
- "placementX" : 22.0,
- "placementY" : 656.215,
- "placementWidth" : 476.25,
- "placementHeight" : 13.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 476.25,
- "contentHeight" : 13.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[2][2]",
- "entityName" : "letter.body[2]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 636.965,
- "placementX" : 22.0,
- "placementY" : 636.965,
- "placementWidth" : 474.47,
- "placementHeight" : 13.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 474.47,
- "contentHeight" : 13.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.closing[3]",
- "entityName" : "letter.closing",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 605.715,
- "placementX" : 22.0,
- "placementY" : 605.715,
- "placementWidth" : 128.62,
- "placementHeight" : 13.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 128.62,
- "contentHeight" : 13.25,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_centered_headline.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_centered_headline.json
deleted file mode 100644
index e8b39881b..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_centered_headline.json
+++ /dev/null
@@ -1,347 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 555.276,
- "innerHeight" : 797.89,
- "margin" : {
- "top" : 22.0,
- "right" : 18.0,
- "bottom" : 22.0,
- "left" : 22.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "layout.letterFormat[0]",
- "entityName" : "layout.letterFormat",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 22.0,
- "computedY" : 611.37,
- "placementX" : 22.0,
- "placementY" : 611.37,
- "placementWidth" : 555.276,
- "placementHeight" : 208.52,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 208.52,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]",
- "entityName" : "Header",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 758.37,
- "placementX" : 22.0,
- "placementY" : 758.37,
- "placementWidth" : 555.276,
- "placementHeight" : 61.52,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 61.52,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.name[0]",
- "entityName" : "Header.name",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 786.29,
- "placementX" : 22.0,
- "placementY" : 786.29,
- "placementWidth" : 555.276,
- "placementHeight" : 33.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 33.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.contact[1]",
- "entityName" : "Header.contact",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 772.33,
- "placementX" : 22.0,
- "placementY" : 772.33,
- "placementWidth" : 555.276,
- "placementHeight" : 9.96,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 9.96,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.links[2]",
- "entityName" : "Header.links",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 758.37,
- "placementX" : 22.0,
- "placementY" : 758.37,
- "placementWidth" : 555.276,
- "placementHeight" : 9.96,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 9.96,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.greeting[1]",
- "entityName" : "letter.greeting",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 722.37,
- "placementX" : 22.0,
- "placementY" : 722.37,
- "placementWidth" : 181.7,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 181.7,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 12.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]",
- "entityName" : "letter.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 641.37,
- "placementX" : 22.0,
- "placementY" : 641.37,
- "placementWidth" : 523.86,
- "placementHeight" : 63.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 523.86,
- "contentHeight" : 63.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[0][0]",
- "entityName" : "letter.body[0]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 677.37,
- "placementX" : 22.0,
- "placementY" : 677.37,
- "placementWidth" : 523.86,
- "placementHeight" : 27.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 523.86,
- "contentHeight" : 27.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[1][1]",
- "entityName" : "letter.body[1]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 659.37,
- "placementX" : 22.0,
- "placementY" : 659.37,
- "placementWidth" : 467.55,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 467.55,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[2][2]",
- "entityName" : "letter.body[2]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 641.37,
- "placementX" : 22.0,
- "placementY" : 641.37,
- "placementWidth" : 465.34,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 465.34,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.closing[3]",
- "entityName" : "letter.closing",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 611.37,
- "placementX" : 22.0,
- "placementY" : 611.37,
- "placementWidth" : 126.81,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 126.81,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_classic_serif.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_classic_serif.json
deleted file mode 100644
index 56f6ea9f1..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_classic_serif.json
+++ /dev/null
@@ -1,347 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 555.276,
- "innerHeight" : 797.89,
- "margin" : {
- "top" : 22.0,
- "right" : 18.0,
- "bottom" : 22.0,
- "left" : 22.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "layout.letterFormat[0]",
- "entityName" : "layout.letterFormat",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 22.0,
- "computedY" : 602.535,
- "placementX" : 22.0,
- "placementY" : 602.535,
- "placementWidth" : 555.276,
- "placementHeight" : 217.355,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 217.355,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]",
- "entityName" : "Header",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 757.035,
- "placementX" : 22.0,
- "placementY" : 757.035,
- "placementWidth" : 555.276,
- "placementHeight" : 62.855,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 62.855,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.name[0]",
- "entityName" : "Header.name",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 788.09,
- "placementX" : 22.0,
- "placementY" : 788.09,
- "placementWidth" : 555.276,
- "placementHeight" : 31.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 31.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.contact[1]",
- "entityName" : "Header.contact",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 772.562,
- "placementX" : 22.0,
- "placementY" : 772.562,
- "placementWidth" : 555.276,
- "placementHeight" : 11.528,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 11.528,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.links[2]",
- "entityName" : "Header.links",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 757.035,
- "placementX" : 22.0,
- "placementY" : 757.035,
- "placementWidth" : 555.276,
- "placementHeight" : 11.528,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 11.528,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.greeting[1]",
- "entityName" : "letter.greeting",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 719.785,
- "placementX" : 22.0,
- "placementY" : 719.785,
- "placementWidth" : 188.56,
- "placementHeight" : 13.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 188.56,
- "contentHeight" : 13.25,
- "margin" : {
- "top" : 12.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]",
- "entityName" : "letter.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 633.785,
- "placementX" : 22.0,
- "placementY" : 633.785,
- "placementWidth" : 533.36,
- "placementHeight" : 68.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 533.36,
- "contentHeight" : 68.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[0][0]",
- "entityName" : "letter.body[0]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 672.285,
- "placementX" : 22.0,
- "placementY" : 672.285,
- "placementWidth" : 533.36,
- "placementHeight" : 29.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 533.36,
- "contentHeight" : 29.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[1][1]",
- "entityName" : "letter.body[1]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 653.035,
- "placementX" : 22.0,
- "placementY" : 653.035,
- "placementWidth" : 476.25,
- "placementHeight" : 13.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 476.25,
- "contentHeight" : 13.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[2][2]",
- "entityName" : "letter.body[2]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 633.785,
- "placementX" : 22.0,
- "placementY" : 633.785,
- "placementWidth" : 474.47,
- "placementHeight" : 13.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 474.47,
- "contentHeight" : 13.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.closing[3]",
- "entityName" : "letter.closing",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 602.535,
- "placementX" : 22.0,
- "placementY" : 602.535,
- "placementWidth" : 128.62,
- "placementHeight" : 13.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 128.62,
- "contentHeight" : 13.25,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_compact_mono.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_compact_mono.json
deleted file mode 100644
index fe0787aaa..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_compact_mono.json
+++ /dev/null
@@ -1,347 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 555.276,
- "innerHeight" : 797.89,
- "margin" : {
- "top" : 22.0,
- "right" : 18.0,
- "bottom" : 22.0,
- "left" : 22.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "layout.letterFormat[0]",
- "entityName" : "layout.letterFormat",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 22.0,
- "computedY" : 648.89,
- "placementX" : 22.0,
- "placementY" : 648.89,
- "placementWidth" : 555.276,
- "placementHeight" : 171.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 171.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]",
- "entityName" : "Header",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 766.89,
- "placementX" : 22.0,
- "placementY" : 766.89,
- "placementWidth" : 555.276,
- "placementHeight" : 53.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 53.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.name[0]",
- "entityName" : "Header.name",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 793.89,
- "placementX" : 22.0,
- "placementY" : 793.89,
- "placementWidth" : 555.276,
- "placementHeight" : 26.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 26.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 3.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.contact[1]",
- "entityName" : "Header.contact",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 780.69,
- "placementX" : 22.0,
- "placementY" : 780.69,
- "placementWidth" : 555.276,
- "placementHeight" : 10.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 10.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 3.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.links[2]",
- "entityName" : "Header.links",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 766.89,
- "placementX" : 22.0,
- "placementY" : 766.89,
- "placementWidth" : 555.276,
- "placementHeight" : 10.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 10.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.greeting[1]",
- "entityName" : "letter.greeting",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 740.89,
- "placementX" : 22.0,
- "placementY" : 740.89,
- "placementWidth" : 181.7,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 181.7,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]",
- "entityName" : "letter.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 671.89,
- "placementX" : 22.0,
- "placementY" : 671.89,
- "placementWidth" : 523.86,
- "placementHeight" : 58.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 523.86,
- "contentHeight" : 58.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[0][0]",
- "entityName" : "letter.body[0]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 703.89,
- "placementX" : 22.0,
- "placementY" : 703.89,
- "placementWidth" : 523.86,
- "placementHeight" : 26.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 523.86,
- "contentHeight" : 26.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[1][1]",
- "entityName" : "letter.body[1]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 687.89,
- "placementX" : 22.0,
- "placementY" : 687.89,
- "placementWidth" : 467.55,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 467.55,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[2][2]",
- "entityName" : "letter.body[2]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 671.89,
- "placementX" : 22.0,
- "placementY" : 671.89,
- "placementWidth" : 465.34,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 465.34,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.closing[3]",
- "entityName" : "letter.closing",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 648.89,
- "placementX" : 22.0,
- "placementY" : 648.89,
- "placementWidth" : 126.81,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 126.81,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_editorial_blue.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_editorial_blue.json
deleted file mode 100644
index f91a9c438..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_editorial_blue.json
+++ /dev/null
@@ -1,347 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 555.276,
- "innerHeight" : 797.89,
- "margin" : {
- "top" : 22.0,
- "right" : 18.0,
- "bottom" : 22.0,
- "left" : 22.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "layout.letterFormat[0]",
- "entityName" : "layout.letterFormat",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 22.0,
- "computedY" : 644.39,
- "placementX" : 22.0,
- "placementY" : 644.39,
- "placementWidth" : 555.276,
- "placementHeight" : 175.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 175.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]",
- "entityName" : "Header",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 774.89,
- "placementX" : 22.0,
- "placementY" : 774.89,
- "placementWidth" : 555.276,
- "placementHeight" : 45.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 45.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.name[0]",
- "entityName" : "Header.name",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 799.54,
- "placementX" : 22.0,
- "placementY" : 799.54,
- "placementWidth" : 555.276,
- "placementHeight" : 20.35,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 20.35,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.contact[1]",
- "entityName" : "Header.contact",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 787.215,
- "placementX" : 22.0,
- "placementY" : 787.215,
- "placementWidth" : 555.276,
- "placementHeight" : 8.325,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 8.325,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.links[2]",
- "entityName" : "Header.links",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 774.89,
- "placementX" : 22.0,
- "placementY" : 774.89,
- "placementWidth" : 555.276,
- "placementHeight" : 8.325,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 8.325,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.greeting[1]",
- "entityName" : "letter.greeting",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 741.64,
- "placementX" : 22.0,
- "placementY" : 741.64,
- "placementWidth" : 188.93,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 188.93,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 12.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]",
- "entityName" : "letter.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 671.64,
- "placementX" : 22.0,
- "placementY" : 671.64,
- "placementWidth" : 530.78,
- "placementHeight" : 52.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 530.78,
- "contentHeight" : 52.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[0][0]",
- "entityName" : "letter.body[0]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 702.14,
- "placementX" : 22.0,
- "placementY" : 702.14,
- "placementWidth" : 530.78,
- "placementHeight" : 21.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 530.78,
- "contentHeight" : 21.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[1][1]",
- "entityName" : "letter.body[1]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 686.89,
- "placementX" : 22.0,
- "placementY" : 686.89,
- "placementWidth" : 468.52,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 468.52,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[2][2]",
- "entityName" : "letter.body[2]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 671.64,
- "placementX" : 22.0,
- "placementY" : 671.64,
- "placementWidth" : 459.66,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 459.66,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.closing[3]",
- "entityName" : "letter.closing",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 644.39,
- "placementX" : 22.0,
- "placementY" : 644.39,
- "placementWidth" : 133.92,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 133.92,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_engineering_resume.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_engineering_resume.json
deleted file mode 100644
index d35d99f0e..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_engineering_resume.json
+++ /dev/null
@@ -1,347 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 555.276,
- "innerHeight" : 797.89,
- "margin" : {
- "top" : 22.0,
- "right" : 18.0,
- "bottom" : 22.0,
- "left" : 22.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "layout.letterFormat[0]",
- "entityName" : "layout.letterFormat",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 22.0,
- "computedY" : 646.09,
- "placementX" : 22.0,
- "placementY" : 646.09,
- "placementWidth" : 555.276,
- "placementHeight" : 173.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 173.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]",
- "entityName" : "Header",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 764.09,
- "placementX" : 22.0,
- "placementY" : 764.09,
- "placementWidth" : 555.276,
- "placementHeight" : 55.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 55.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.name[0]",
- "entityName" : "Header.name",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 791.09,
- "placementX" : 22.0,
- "placementY" : 791.09,
- "placementWidth" : 555.276,
- "placementHeight" : 28.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 28.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 3.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.contact[1]",
- "entityName" : "Header.contact",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 777.89,
- "placementX" : 22.0,
- "placementY" : 777.89,
- "placementWidth" : 555.276,
- "placementHeight" : 10.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 10.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 3.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.links[2]",
- "entityName" : "Header.links",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 764.09,
- "placementX" : 22.0,
- "placementY" : 764.09,
- "placementWidth" : 555.276,
- "placementHeight" : 10.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 10.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.greeting[1]",
- "entityName" : "letter.greeting",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 738.09,
- "placementX" : 22.0,
- "placementY" : 738.09,
- "placementWidth" : 181.7,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 181.7,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]",
- "entityName" : "letter.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 669.09,
- "placementX" : 22.0,
- "placementY" : 669.09,
- "placementWidth" : 523.86,
- "placementHeight" : 58.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 523.86,
- "contentHeight" : 58.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[0][0]",
- "entityName" : "letter.body[0]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 701.09,
- "placementX" : 22.0,
- "placementY" : 701.09,
- "placementWidth" : 523.86,
- "placementHeight" : 26.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 523.86,
- "contentHeight" : 26.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[1][1]",
- "entityName" : "letter.body[1]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 685.09,
- "placementX" : 22.0,
- "placementY" : 685.09,
- "placementWidth" : 467.55,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 467.55,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[2][2]",
- "entityName" : "letter.body[2]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 669.09,
- "placementX" : 22.0,
- "placementY" : 669.09,
- "placementWidth" : 465.34,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 465.34,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.closing[3]",
- "entityName" : "letter.closing",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 646.09,
- "placementX" : 22.0,
- "placementY" : 646.09,
- "placementWidth" : 126.81,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 126.81,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_executive.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_executive.json
deleted file mode 100644
index 83cec5173..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_executive.json
+++ /dev/null
@@ -1,347 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 555.276,
- "innerHeight" : 797.89,
- "margin" : {
- "top" : 22.0,
- "right" : 18.0,
- "bottom" : 22.0,
- "left" : 22.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "layout.letterFormat[0]",
- "entityName" : "layout.letterFormat",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 22.0,
- "computedY" : 612.69,
- "placementX" : 22.0,
- "placementY" : 612.69,
- "placementWidth" : 555.276,
- "placementHeight" : 207.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 207.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]",
- "entityName" : "Header",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 756.09,
- "placementX" : 22.0,
- "placementY" : 756.09,
- "placementWidth" : 555.276,
- "placementHeight" : 63.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 63.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.name[0]",
- "entityName" : "Header.name",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 786.29,
- "placementX" : 22.0,
- "placementY" : 786.29,
- "placementWidth" : 555.276,
- "placementHeight" : 33.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 33.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.contact[1]",
- "entityName" : "Header.contact",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 771.49,
- "placementX" : 22.0,
- "placementY" : 771.49,
- "placementWidth" : 555.276,
- "placementHeight" : 10.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 10.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.links[2]",
- "entityName" : "Header.links",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 756.09,
- "placementX" : 22.0,
- "placementY" : 756.09,
- "placementWidth" : 555.276,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.greeting[1]",
- "entityName" : "letter.greeting",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 720.69,
- "placementX" : 22.0,
- "placementY" : 720.69,
- "placementWidth" : 172.615,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 172.615,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 12.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]",
- "entityName" : "letter.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 642.09,
- "placementX" : 22.0,
- "placementY" : 642.09,
- "placementWidth" : 497.667,
- "placementHeight" : 60.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 497.667,
- "contentHeight" : 60.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[0][0]",
- "entityName" : "letter.body[0]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 676.89,
- "placementX" : 22.0,
- "placementY" : 676.89,
- "placementWidth" : 497.667,
- "placementHeight" : 25.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 497.667,
- "contentHeight" : 25.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[1][1]",
- "entityName" : "letter.body[1]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 659.49,
- "placementX" : 22.0,
- "placementY" : 659.49,
- "placementWidth" : 444.172,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 444.172,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[2][2]",
- "entityName" : "letter.body[2]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 642.09,
- "placementX" : 22.0,
- "placementY" : 642.09,
- "placementWidth" : 442.073,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 442.073,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.closing[3]",
- "entityName" : "letter.closing",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 612.69,
- "placementX" : 22.0,
- "placementY" : 612.69,
- "placementWidth" : 120.47,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 120.47,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_modern_professional.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_modern_professional.json
deleted file mode 100644
index 53c61b47c..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_modern_professional.json
+++ /dev/null
@@ -1,347 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 555.276,
- "innerHeight" : 797.89,
- "margin" : {
- "top" : 22.0,
- "right" : 18.0,
- "bottom" : 22.0,
- "left" : 22.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "layout.letterFormat[0]",
- "entityName" : "layout.letterFormat",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 22.0,
- "computedY" : 668.915,
- "placementX" : 22.0,
- "placementY" : 668.915,
- "placementWidth" : 555.276,
- "placementHeight" : 150.975,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 150.975,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]",
- "entityName" : "Header",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 770.415,
- "placementX" : 22.0,
- "placementY" : 770.415,
- "placementWidth" : 555.276,
- "placementHeight" : 49.475,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 49.475,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.name[0]",
- "entityName" : "Header.name",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 793.99,
- "placementX" : 22.0,
- "placementY" : 793.99,
- "placementWidth" : 555.276,
- "placementHeight" : 25.9,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 25.9,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 3.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.contact[1]",
- "entityName" : "Header.contact",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 782.665,
- "placementX" : 22.0,
- "placementY" : 782.665,
- "placementWidth" : 555.276,
- "placementHeight" : 8.325,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 8.325,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 3.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.links[2]",
- "entityName" : "Header.links",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 770.415,
- "placementX" : 22.0,
- "placementY" : 770.415,
- "placementWidth" : 555.276,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.greeting[1]",
- "entityName" : "letter.greeting",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 747.165,
- "placementX" : 22.0,
- "placementY" : 747.165,
- "placementWidth" : 188.93,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 188.93,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]",
- "entityName" : "letter.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 689.165,
- "placementX" : 22.0,
- "placementY" : 689.165,
- "placementWidth" : 530.78,
- "placementHeight" : 47.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 530.78,
- "contentHeight" : 47.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[0][0]",
- "entityName" : "letter.body[0]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 715.665,
- "placementX" : 22.0,
- "placementY" : 715.665,
- "placementWidth" : 530.78,
- "placementHeight" : 20.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 530.78,
- "contentHeight" : 20.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[1][1]",
- "entityName" : "letter.body[1]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 702.415,
- "placementX" : 22.0,
- "placementY" : 702.415,
- "placementWidth" : 468.52,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 468.52,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[2][2]",
- "entityName" : "letter.body[2]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 689.165,
- "placementX" : 22.0,
- "placementY" : 689.165,
- "placementWidth" : 459.66,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 459.66,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.closing[3]",
- "entityName" : "letter.closing",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 668.915,
- "placementX" : 22.0,
- "placementY" : 668.915,
- "placementWidth" : 133.92,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 133.92,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_monogram_sidebar.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_monogram_sidebar.json
deleted file mode 100644
index 077d8e2e7..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_monogram_sidebar.json
+++ /dev/null
@@ -1,347 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 555.276,
- "innerHeight" : 797.89,
- "margin" : {
- "top" : 22.0,
- "right" : 18.0,
- "bottom" : 22.0,
- "left" : 22.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "layout.letterFormat[0]",
- "entityName" : "layout.letterFormat",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 22.0,
- "computedY" : 616.935,
- "placementX" : 22.0,
- "placementY" : 616.935,
- "placementWidth" : 555.276,
- "placementHeight" : 202.955,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 202.955,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]",
- "entityName" : "Header",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 760.335,
- "placementX" : 22.0,
- "placementY" : 760.335,
- "placementWidth" : 555.276,
- "placementHeight" : 59.555,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 59.555,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.name[0]",
- "entityName" : "Header.name",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 786.095,
- "placementX" : 22.0,
- "placementY" : 786.095,
- "placementWidth" : 555.276,
- "placementHeight" : 33.795,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 33.795,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.contact[1]",
- "entityName" : "Header.contact",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 773.215,
- "placementX" : 22.0,
- "placementY" : 773.215,
- "placementWidth" : 555.276,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.links[2]",
- "entityName" : "Header.links",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 760.335,
- "placementX" : 22.0,
- "placementY" : 760.335,
- "placementWidth" : 555.276,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.greeting[1]",
- "entityName" : "letter.greeting",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 724.935,
- "placementX" : 22.0,
- "placementY" : 724.935,
- "placementWidth" : 172.615,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 172.615,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 12.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]",
- "entityName" : "letter.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 646.335,
- "placementX" : 22.0,
- "placementY" : 646.335,
- "placementWidth" : 497.667,
- "placementHeight" : 60.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 497.667,
- "contentHeight" : 60.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[0][0]",
- "entityName" : "letter.body[0]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 681.135,
- "placementX" : 22.0,
- "placementY" : 681.135,
- "placementWidth" : 497.667,
- "placementHeight" : 25.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 497.667,
- "contentHeight" : 25.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[1][1]",
- "entityName" : "letter.body[1]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 663.735,
- "placementX" : 22.0,
- "placementY" : 663.735,
- "placementWidth" : 444.172,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 444.172,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[2][2]",
- "entityName" : "letter.body[2]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 646.335,
- "placementX" : 22.0,
- "placementY" : 646.335,
- "placementWidth" : 442.073,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 442.073,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.closing[3]",
- "entityName" : "letter.closing",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 616.935,
- "placementX" : 22.0,
- "placementY" : 616.935,
- "placementWidth" : 120.47,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 120.47,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_nordic_clean.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_nordic_clean.json
deleted file mode 100644
index 57d8a0e0f..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_nordic_clean.json
+++ /dev/null
@@ -1,347 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 555.276,
- "innerHeight" : 797.89,
- "margin" : {
- "top" : 22.0,
- "right" : 18.0,
- "bottom" : 22.0,
- "left" : 22.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "layout.letterFormat[0]",
- "entityName" : "layout.letterFormat",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 22.0,
- "computedY" : 615.09,
- "placementX" : 22.0,
- "placementY" : 615.09,
- "placementWidth" : 555.276,
- "placementHeight" : 204.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 204.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]",
- "entityName" : "Header",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 762.09,
- "placementX" : 22.0,
- "placementY" : 762.09,
- "placementWidth" : 555.276,
- "placementHeight" : 57.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 57.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.name[0]",
- "entityName" : "Header.name",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 791.09,
- "placementX" : 22.0,
- "placementY" : 791.09,
- "placementWidth" : 555.276,
- "placementHeight" : 28.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 28.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.contact[1]",
- "entityName" : "Header.contact",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 776.89,
- "placementX" : 22.0,
- "placementY" : 776.89,
- "placementWidth" : 555.276,
- "placementHeight" : 10.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 10.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.links[2]",
- "entityName" : "Header.links",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 762.09,
- "placementX" : 22.0,
- "placementY" : 762.09,
- "placementWidth" : 555.276,
- "placementHeight" : 10.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 10.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.greeting[1]",
- "entityName" : "letter.greeting",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 726.09,
- "placementX" : 22.0,
- "placementY" : 726.09,
- "placementWidth" : 181.7,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 181.7,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 12.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]",
- "entityName" : "letter.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 645.09,
- "placementX" : 22.0,
- "placementY" : 645.09,
- "placementWidth" : 523.86,
- "placementHeight" : 63.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 523.86,
- "contentHeight" : 63.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[0][0]",
- "entityName" : "letter.body[0]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 681.09,
- "placementX" : 22.0,
- "placementY" : 681.09,
- "placementWidth" : 523.86,
- "placementHeight" : 27.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 523.86,
- "contentHeight" : 27.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[1][1]",
- "entityName" : "letter.body[1]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 663.09,
- "placementX" : 22.0,
- "placementY" : 663.09,
- "placementWidth" : 467.55,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 467.55,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[2][2]",
- "entityName" : "letter.body[2]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 645.09,
- "placementX" : 22.0,
- "placementY" : 645.09,
- "placementWidth" : 465.34,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 465.34,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.closing[3]",
- "entityName" : "letter.closing",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 615.09,
- "placementX" : 22.0,
- "placementY" : 615.09,
- "placementWidth" : 126.81,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 126.81,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_panel.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_panel.json
deleted file mode 100644
index 6d762e28c..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_panel.json
+++ /dev/null
@@ -1,347 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 555.276,
- "innerHeight" : 797.89,
- "margin" : {
- "top" : 22.0,
- "right" : 18.0,
- "bottom" : 22.0,
- "left" : 22.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "layout.letterFormat[0]",
- "entityName" : "layout.letterFormat",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 22.0,
- "computedY" : 617.05,
- "placementX" : 22.0,
- "placementY" : 617.05,
- "placementWidth" : 555.276,
- "placementHeight" : 202.84,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 202.84,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]",
- "entityName" : "Header",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 759.73,
- "placementX" : 22.0,
- "placementY" : 759.73,
- "placementWidth" : 555.276,
- "placementHeight" : 60.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 60.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.name[0]",
- "entityName" : "Header.name",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 789.09,
- "placementX" : 22.0,
- "placementY" : 789.09,
- "placementWidth" : 555.276,
- "placementHeight" : 30.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 30.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.contact[1]",
- "entityName" : "Header.contact",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 774.41,
- "placementX" : 22.0,
- "placementY" : 774.41,
- "placementWidth" : 555.276,
- "placementHeight" : 10.68,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 10.68,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.links[2]",
- "entityName" : "Header.links",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 759.73,
- "placementX" : 22.0,
- "placementY" : 759.73,
- "placementWidth" : 555.276,
- "placementHeight" : 10.68,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 10.68,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.greeting[1]",
- "entityName" : "letter.greeting",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 724.45,
- "placementX" : 22.0,
- "placementY" : 724.45,
- "placementWidth" : 170.798,
- "placementHeight" : 11.28,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 170.798,
- "contentHeight" : 11.28,
- "margin" : {
- "top" : 12.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]",
- "entityName" : "letter.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 646.33,
- "placementX" : 22.0,
- "placementY" : 646.33,
- "placementWidth" : 492.428,
- "placementHeight" : 60.12,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 492.428,
- "contentHeight" : 60.12,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[0][0]",
- "entityName" : "letter.body[0]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 680.89,
- "placementX" : 22.0,
- "placementY" : 680.89,
- "placementWidth" : 492.428,
- "placementHeight" : 25.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 492.428,
- "contentHeight" : 25.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[1][1]",
- "entityName" : "letter.body[1]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 663.61,
- "placementX" : 22.0,
- "placementY" : 663.61,
- "placementWidth" : 439.497,
- "placementHeight" : 11.28,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 439.497,
- "contentHeight" : 11.28,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[2][2]",
- "entityName" : "letter.body[2]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 646.33,
- "placementX" : 22.0,
- "placementY" : 646.33,
- "placementWidth" : 437.42,
- "placementHeight" : 11.28,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 437.42,
- "contentHeight" : 11.28,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.closing[3]",
- "entityName" : "letter.closing",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 617.05,
- "placementX" : 22.0,
- "placementY" : 617.05,
- "placementWidth" : 119.201,
- "placementHeight" : 11.28,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 119.201,
- "contentHeight" : 11.28,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_sidebar_portrait.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_sidebar_portrait.json
deleted file mode 100644
index e22542757..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_sidebar_portrait.json
+++ /dev/null
@@ -1,347 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 555.276,
- "innerHeight" : 797.89,
- "margin" : {
- "top" : 22.0,
- "right" : 18.0,
- "bottom" : 22.0,
- "left" : 22.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "layout.letterFormat[0]",
- "entityName" : "layout.letterFormat",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 22.0,
- "computedY" : 608.575,
- "placementX" : 22.0,
- "placementY" : 608.575,
- "placementWidth" : 555.276,
- "placementHeight" : 211.315,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 211.315,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]",
- "entityName" : "Header",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 755.575,
- "placementX" : 22.0,
- "placementY" : 755.575,
- "placementWidth" : 555.276,
- "placementHeight" : 64.315,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 64.315,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.name[0]",
- "entityName" : "Header.name",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 783.495,
- "placementX" : 22.0,
- "placementY" : 783.495,
- "placementWidth" : 555.276,
- "placementHeight" : 36.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 36.395,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.contact[1]",
- "entityName" : "Header.contact",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 769.535,
- "placementX" : 22.0,
- "placementY" : 769.535,
- "placementWidth" : 555.276,
- "placementHeight" : 9.96,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 9.96,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.links[2]",
- "entityName" : "Header.links",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 755.575,
- "placementX" : 22.0,
- "placementY" : 755.575,
- "placementWidth" : 555.276,
- "placementHeight" : 9.96,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 9.96,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.greeting[1]",
- "entityName" : "letter.greeting",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 719.575,
- "placementX" : 22.0,
- "placementY" : 719.575,
- "placementWidth" : 181.7,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 181.7,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 12.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]",
- "entityName" : "letter.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 638.575,
- "placementX" : 22.0,
- "placementY" : 638.575,
- "placementWidth" : 523.86,
- "placementHeight" : 63.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 523.86,
- "contentHeight" : 63.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[0][0]",
- "entityName" : "letter.body[0]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 674.575,
- "placementX" : 22.0,
- "placementY" : 674.575,
- "placementWidth" : 523.86,
- "placementHeight" : 27.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 523.86,
- "contentHeight" : 27.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[1][1]",
- "entityName" : "letter.body[1]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 656.575,
- "placementX" : 22.0,
- "placementY" : 656.575,
- "placementWidth" : 467.55,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 467.55,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[2][2]",
- "entityName" : "letter.body[2]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 638.575,
- "placementX" : 22.0,
- "placementY" : 638.575,
- "placementWidth" : 465.34,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 465.34,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.closing[3]",
- "entityName" : "letter.closing",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 608.575,
- "placementX" : 22.0,
- "placementY" : 608.575,
- "placementWidth" : 126.81,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 126.81,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_timeline_minimal.json b/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_timeline_minimal.json
deleted file mode 100644
index 8adfa993e..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/coverletter-v2/template_v2_letter_timeline_minimal.json
+++ /dev/null
@@ -1,347 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 555.276,
- "innerHeight" : 797.89,
- "margin" : {
- "top" : 22.0,
- "right" : 18.0,
- "bottom" : 22.0,
- "left" : 22.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "layout.letterFormat[0]",
- "entityName" : "layout.letterFormat",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 22.0,
- "computedY" : 610.29,
- "placementX" : 22.0,
- "placementY" : 610.29,
- "placementWidth" : 555.276,
- "placementHeight" : 209.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 209.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]",
- "entityName" : "Header",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 757.29,
- "placementX" : 22.0,
- "placementY" : 757.29,
- "placementWidth" : 555.276,
- "placementHeight" : 62.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 62.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.name[0]",
- "entityName" : "Header.name",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 786.29,
- "placementX" : 22.0,
- "placementY" : 786.29,
- "placementWidth" : 555.276,
- "placementHeight" : 33.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 33.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.contact[1]",
- "entityName" : "Header.contact",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 772.09,
- "placementX" : 22.0,
- "placementY" : 772.09,
- "placementWidth" : 555.276,
- "placementHeight" : 10.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 10.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/Header[0]/Header.links[2]",
- "entityName" : "Header.links",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/Header[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 757.29,
- "placementX" : 22.0,
- "placementY" : 757.29,
- "placementWidth" : 555.276,
- "placementHeight" : 10.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 555.276,
- "contentHeight" : 10.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.greeting[1]",
- "entityName" : "letter.greeting",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 721.29,
- "placementX" : 22.0,
- "placementY" : 721.29,
- "placementWidth" : 181.7,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 181.7,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 12.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]",
- "entityName" : "letter.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 640.29,
- "placementX" : 22.0,
- "placementY" : 640.29,
- "placementWidth" : 523.86,
- "placementHeight" : 63.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 523.86,
- "contentHeight" : 63.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[0][0]",
- "entityName" : "letter.body[0]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 676.29,
- "placementX" : 22.0,
- "placementY" : 676.29,
- "placementWidth" : 523.86,
- "placementHeight" : 27.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 523.86,
- "contentHeight" : 27.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[1][1]",
- "entityName" : "letter.body[1]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 658.29,
- "placementX" : 22.0,
- "placementY" : 658.29,
- "placementWidth" : 467.55,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 467.55,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.body[2]/letter.body[2][2]",
- "entityName" : "letter.body[2]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]/letter.body[2]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 640.29,
- "placementX" : 22.0,
- "placementY" : 640.29,
- "placementWidth" : 465.34,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 465.34,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.letterFormat[0]/letter.closing[3]",
- "entityName" : "letter.closing",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.letterFormat[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 610.29,
- "placementX" : 22.0,
- "placementY" : 610.29,
- "placementWidth" : 126.81,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 126.81,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/regression/boxed_sections_education_block.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/regression/boxed_sections_education_block.json
deleted file mode 100644
index 249b3ea41..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/regression/boxed_sections_education_block.json
+++ /dev/null
@@ -1,677 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "BoxedSectionsRoot[0]",
- "entityName" : "BoxedSectionsRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 629.99,
- "placementX" : 15.0,
- "placementY" : 629.99,
- "placementWidth" : 570.276,
- "placementHeight" : 196.9,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 196.9,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsHeader[0]",
- "entityName" : "BoxedSectionsHeader",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 794.402,
- "placementX" : 15.0,
- "placementY" : 794.402,
- "placementWidth" : 570.276,
- "placementHeight" : 32.488,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 32.488,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsHeader[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 798.402,
- "placementX" : 15.0,
- "placementY" : 798.402,
- "placementWidth" : 570.276,
- "placementHeight" : 28.488,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 28.488,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsContact[1]",
- "entityName" : "BoxedSectionsContact",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 768.14,
- "placementX" : 15.0,
- "placementY" : 768.14,
- "placementWidth" : 570.276,
- "placementHeight" : 19.263,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 19.263,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsContact[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsContact[1]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 772.14,
- "placementX" : 15.0,
- "placementY" : 772.14,
- "placementWidth" : 570.276,
- "placementHeight" : 11.263,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 11.263,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_0[2]",
- "entityName" : "BoxedSectionsBanner_0",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 734.42,
- "placementX" : 15.0,
- "placementY" : 734.42,
- "placementWidth" : 570.276,
- "placementHeight" : 22.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 22.72,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 5.0,
- "right" : 5.0,
- "bottom" : 5.0,
- "left" : 5.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_0[2]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_0[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 20.0,
- "computedY" : 739.42,
- "placementX" : 20.0,
- "placementY" : 739.42,
- "placementWidth" : 560.276,
- "placementHeight" : 12.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 560.276,
- "contentHeight" : 12.72,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "entityName" : "BoxedSectionsBody_0",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 629.99,
- "placementX" : 15.0,
- "placementY" : 629.99,
- "placementWidth" : 570.276,
- "placementHeight" : 97.43,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 97.43,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 4.0,
- "right" : 4.0,
- "bottom" : 0.0,
- "left" : 4.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]",
- "entityName" : "BoxedSectionsEntryHeader",
- "entityKind" : "RowNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 711.23,
- "placementX" : 19.0,
- "placementY" : 711.23,
- "placementWidth" : 562.276,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 562.276,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]/Title[0]",
- "entityName" : "Title",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 19.0,
- "computedY" : 711.23,
- "placementX" : 19.0,
- "placementY" : 711.23,
- "placementWidth" : 99.875,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 99.875,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]/Title[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]/Title[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 19.0,
- "computedY" : 711.23,
- "placementX" : 19.0,
- "placementY" : 711.23,
- "placementWidth" : 99.875,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 99.875,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]/Date[1]",
- "entityName" : "Date",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 409.259,
- "computedY" : 711.76,
- "placementX" : 409.259,
- "placementY" : 711.76,
- "placementWidth" : 172.017,
- "placementHeight" : 11.66,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 172.017,
- "contentHeight" : 11.66,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]/Date[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]/Date[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 409.259,
- "computedY" : 711.76,
- "placementX" : 409.259,
- "placementY" : 711.76,
- "placementWidth" : 172.017,
- "placementHeight" : 11.66,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 172.017,
- "contentHeight" : 11.66,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 696.1,
- "placementX" : 19.0,
- "placementY" : 696.1,
- "placementWidth" : 88.393,
- "placementHeight" : 11.13,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 88.393,
- "contentHeight" : 11.13,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 678.705,
- "placementX" : 19.0,
- "placementY" : 678.705,
- "placementWidth" : 250.432,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 250.432,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]",
- "entityName" : "BoxedSectionsEntryHeader",
- "entityKind" : "RowNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 3,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 662.515,
- "placementX" : 19.0,
- "placementY" : 662.515,
- "placementWidth" : 562.276,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 562.276,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]/Title[0]",
- "entityName" : "Title",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 19.0,
- "computedY" : 662.515,
- "placementX" : 19.0,
- "placementY" : 662.515,
- "placementWidth" : 107.806,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 107.806,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]/Title[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]/Title[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 19.0,
- "computedY" : 662.515,
- "placementX" : 19.0,
- "placementY" : 662.515,
- "placementWidth" : 107.806,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 107.806,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]/Date[1]",
- "entityName" : "Date",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 409.259,
- "computedY" : 663.045,
- "placementX" : 409.259,
- "placementY" : 663.045,
- "placementWidth" : 172.017,
- "placementHeight" : 11.66,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 172.017,
- "contentHeight" : 11.66,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]/Date[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]/Date[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 409.259,
- "computedY" : 663.045,
- "placementX" : 409.259,
- "placementY" : 663.045,
- "placementWidth" : 172.017,
- "placementHeight" : 11.66,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 172.017,
- "contentHeight" : 11.66,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/ParagraphNode[4]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 4,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 647.385,
- "placementX" : 19.0,
- "placementY" : 647.385,
- "placementWidth" : 64.05,
- "placementHeight" : 11.13,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 64.05,
- "contentHeight" : 11.13,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/ParagraphNode[5]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 5,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 629.99,
- "placementX" : 19.0,
- "placementY" : 629.99,
- "placementWidth" : 260.632,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 260.632,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/regression/boxed_sections_key_value_bold_key.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/regression/boxed_sections_key_value_bold_key.json
deleted file mode 100644
index 04c294fef..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/regression/boxed_sections_key_value_bold_key.json
+++ /dev/null
@@ -1,347 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "BoxedSectionsRoot[0]",
- "entityName" : "BoxedSectionsRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 675.235,
- "placementX" : 15.0,
- "placementY" : 675.235,
- "placementWidth" : 570.276,
- "placementHeight" : 151.655,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 151.655,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsHeader[0]",
- "entityName" : "BoxedSectionsHeader",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 794.402,
- "placementX" : 15.0,
- "placementY" : 794.402,
- "placementWidth" : 570.276,
- "placementHeight" : 32.488,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 32.488,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsHeader[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 798.402,
- "placementX" : 15.0,
- "placementY" : 798.402,
- "placementWidth" : 570.276,
- "placementHeight" : 28.488,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 28.488,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsContact[1]",
- "entityName" : "BoxedSectionsContact",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 768.14,
- "placementX" : 15.0,
- "placementY" : 768.14,
- "placementWidth" : 570.276,
- "placementHeight" : 19.263,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 19.263,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsContact[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsContact[1]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 772.14,
- "placementX" : 15.0,
- "placementY" : 772.14,
- "placementWidth" : 570.276,
- "placementHeight" : 11.263,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 11.263,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_0[2]",
- "entityName" : "BoxedSectionsBanner_0",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 734.42,
- "placementX" : 15.0,
- "placementY" : 734.42,
- "placementWidth" : 570.276,
- "placementHeight" : 22.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 22.72,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 5.0,
- "right" : 5.0,
- "bottom" : 5.0,
- "left" : 5.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_0[2]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_0[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 20.0,
- "computedY" : 739.42,
- "placementX" : 20.0,
- "placementY" : 739.42,
- "placementWidth" : 560.276,
- "placementHeight" : 12.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 560.276,
- "contentHeight" : 12.72,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "entityName" : "BoxedSectionsBody_0",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 675.235,
- "placementX" : 15.0,
- "placementY" : 675.235,
- "placementWidth" : 219.766,
- "placementHeight" : 52.185,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 219.766,
- "contentHeight" : 52.185,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 4.0,
- "right" : 4.0,
- "bottom" : 0.0,
- "left" : 4.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 710.025,
- "placementX" : 19.0,
- "placementY" : 710.025,
- "placementWidth" : 202.986,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 202.986,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 692.63,
- "placementX" : 19.0,
- "placementY" : 692.63,
- "placementWidth" : 211.766,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 211.766,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 675.235,
- "placementX" : 19.0,
- "placementY" : 675.235,
- "placementWidth" : 172.482,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 172.482,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/regression/boxed_sections_prose_rejection_legacy_path.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/regression/boxed_sections_prose_rejection_legacy_path.json
deleted file mode 100644
index c2419d705..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/regression/boxed_sections_prose_rejection_legacy_path.json
+++ /dev/null
@@ -1,317 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "BoxedSectionsRoot[0]",
- "entityName" : "BoxedSectionsRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 692.63,
- "placementX" : 15.0,
- "placementY" : 692.63,
- "placementWidth" : 570.276,
- "placementHeight" : 134.26,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 134.26,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsHeader[0]",
- "entityName" : "BoxedSectionsHeader",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 794.402,
- "placementX" : 15.0,
- "placementY" : 794.402,
- "placementWidth" : 570.276,
- "placementHeight" : 32.488,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 32.488,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsHeader[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 798.402,
- "placementX" : 15.0,
- "placementY" : 798.402,
- "placementWidth" : 570.276,
- "placementHeight" : 28.488,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 28.488,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsContact[1]",
- "entityName" : "BoxedSectionsContact",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 768.14,
- "placementX" : 15.0,
- "placementY" : 768.14,
- "placementWidth" : 570.276,
- "placementHeight" : 19.263,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 19.263,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsContact[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsContact[1]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 772.14,
- "placementX" : 15.0,
- "placementY" : 772.14,
- "placementWidth" : 570.276,
- "placementHeight" : 11.263,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 11.263,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_0[2]",
- "entityName" : "BoxedSectionsBanner_0",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 734.42,
- "placementX" : 15.0,
- "placementY" : 734.42,
- "placementWidth" : 570.276,
- "placementHeight" : 22.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 22.72,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 5.0,
- "right" : 5.0,
- "bottom" : 5.0,
- "left" : 5.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_0[2]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_0[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 20.0,
- "computedY" : 739.42,
- "placementX" : 20.0,
- "placementY" : 739.42,
- "placementWidth" : 560.276,
- "placementHeight" : 12.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 560.276,
- "contentHeight" : 12.72,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "entityName" : "BoxedSectionsBody_0",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 692.63,
- "placementX" : 15.0,
- "placementY" : 692.63,
- "placementWidth" : 500.66,
- "placementHeight" : 34.79,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 500.66,
- "contentHeight" : 34.79,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 4.0,
- "right" : 4.0,
- "bottom" : 0.0,
- "left" : 4.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 710.025,
- "placementX" : 19.0,
- "placementY" : 710.025,
- "placementWidth" : 492.66,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 492.66,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 692.63,
- "placementX" : 19.0,
- "placementY" : 692.63,
- "placementWidth" : 466.937,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 466.937,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/regression/boxed_sections_work_history_block.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/regression/boxed_sections_work_history_block.json
deleted file mode 100644
index 900e90d62..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/regression/boxed_sections_work_history_block.json
+++ /dev/null
@@ -1,677 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "BoxedSectionsRoot[0]",
- "entityName" : "BoxedSectionsRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 629.99,
- "placementX" : 15.0,
- "placementY" : 629.99,
- "placementWidth" : 570.276,
- "placementHeight" : 196.9,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 196.9,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsHeader[0]",
- "entityName" : "BoxedSectionsHeader",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 794.402,
- "placementX" : 15.0,
- "placementY" : 794.402,
- "placementWidth" : 570.276,
- "placementHeight" : 32.488,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 32.488,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsHeader[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 798.402,
- "placementX" : 15.0,
- "placementY" : 798.402,
- "placementWidth" : 570.276,
- "placementHeight" : 28.488,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 28.488,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsContact[1]",
- "entityName" : "BoxedSectionsContact",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 768.14,
- "placementX" : 15.0,
- "placementY" : 768.14,
- "placementWidth" : 570.276,
- "placementHeight" : 19.263,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 19.263,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsContact[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsContact[1]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 772.14,
- "placementX" : 15.0,
- "placementY" : 772.14,
- "placementWidth" : 570.276,
- "placementHeight" : 11.263,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 11.263,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_0[2]",
- "entityName" : "BoxedSectionsBanner_0",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 734.42,
- "placementX" : 15.0,
- "placementY" : 734.42,
- "placementWidth" : 570.276,
- "placementHeight" : 22.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 22.72,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 5.0,
- "right" : 5.0,
- "bottom" : 5.0,
- "left" : 5.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_0[2]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_0[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 20.0,
- "computedY" : 739.42,
- "placementX" : 20.0,
- "placementY" : 739.42,
- "placementWidth" : 560.276,
- "placementHeight" : 12.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 560.276,
- "contentHeight" : 12.72,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "entityName" : "BoxedSectionsBody_0",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 629.99,
- "placementX" : 15.0,
- "placementY" : 629.99,
- "placementWidth" : 570.276,
- "placementHeight" : 97.43,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 97.43,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 4.0,
- "right" : 4.0,
- "bottom" : 0.0,
- "left" : 4.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]",
- "entityName" : "BoxedSectionsEntryHeader",
- "entityKind" : "RowNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 711.23,
- "placementX" : 19.0,
- "placementY" : 711.23,
- "placementWidth" : 562.276,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 562.276,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]/Title[0]",
- "entityName" : "Title",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 19.0,
- "computedY" : 711.23,
- "placementX" : 19.0,
- "placementY" : 711.23,
- "placementWidth" : 112.038,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 112.038,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]/Title[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]/Title[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 19.0,
- "computedY" : 711.23,
- "placementX" : 19.0,
- "placementY" : 711.23,
- "placementWidth" : 112.038,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 112.038,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]/Date[1]",
- "entityName" : "Date",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 409.259,
- "computedY" : 711.76,
- "placementX" : 409.259,
- "placementY" : 711.76,
- "placementWidth" : 172.017,
- "placementHeight" : 11.66,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 172.017,
- "contentHeight" : 11.66,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]/Date[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[0]/Date[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 409.259,
- "computedY" : 711.76,
- "placementX" : 409.259,
- "placementY" : 711.76,
- "placementWidth" : 172.017,
- "placementHeight" : 11.66,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 172.017,
- "contentHeight" : 11.66,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 696.1,
- "placementX" : 19.0,
- "placementY" : 696.1,
- "placementWidth" : 68.88,
- "placementHeight" : 11.13,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 68.88,
- "contentHeight" : 11.13,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 678.705,
- "placementX" : 19.0,
- "placementY" : 678.705,
- "placementWidth" : 186.534,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 186.534,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]",
- "entityName" : "BoxedSectionsEntryHeader",
- "entityKind" : "RowNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 3,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 662.515,
- "placementX" : 19.0,
- "placementY" : 662.515,
- "placementWidth" : 562.276,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 562.276,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]/Title[0]",
- "entityName" : "Title",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 19.0,
- "computedY" : 662.515,
- "placementX" : 19.0,
- "placementY" : 662.515,
- "placementWidth" : 80.914,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 80.914,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]/Title[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]/Title[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 19.0,
- "computedY" : 662.515,
- "placementX" : 19.0,
- "placementY" : 662.515,
- "placementWidth" : 80.914,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 80.914,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]/Date[1]",
- "entityName" : "Date",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 409.259,
- "computedY" : 663.045,
- "placementX" : 409.259,
- "placementY" : 663.045,
- "placementWidth" : 172.017,
- "placementHeight" : 11.66,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 172.017,
- "contentHeight" : 11.66,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]/Date[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/BoxedSectionsEntryHeader[3]/Date[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 409.259,
- "computedY" : 663.045,
- "placementX" : 409.259,
- "placementY" : 663.045,
- "placementWidth" : 172.017,
- "placementHeight" : 11.66,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 172.017,
- "contentHeight" : 11.66,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/ParagraphNode[4]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 4,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 647.385,
- "placementX" : 19.0,
- "placementY" : 647.385,
- "placementWidth" : 56.448,
- "placementHeight" : 11.13,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 56.448,
- "contentHeight" : 11.13,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/ParagraphNode[5]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 5,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 629.99,
- "placementX" : 19.0,
- "placementY" : 629.99,
- "placementWidth" : 180.05,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 180.05,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_blue_banner.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_blue_banner.json
deleted file mode 100644
index 32c405d55..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_blue_banner.json
+++ /dev/null
@@ -1,1667 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "BlueBannerRoot[0]",
- "entityName" : "BlueBannerRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 337.79,
- "placementX" : 15.0,
- "placementY" : 337.79,
- "placementWidth" : 570.276,
- "placementHeight" : 489.1,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 489.1,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerHeader[0]",
- "entityName" : "BlueBannerHeader",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 784.39,
- "placementX" : 15.0,
- "placementY" : 784.39,
- "placementWidth" : 570.276,
- "placementHeight" : 42.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 42.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerHeader[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 792.39,
- "placementX" : 15.0,
- "placementY" : 792.39,
- "placementWidth" : 570.276,
- "placementHeight" : 26.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 26.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerContact[1]",
- "entityName" : "BlueBannerContact",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 768.39,
- "placementX" : 15.0,
- "placementY" : 768.39,
- "placementWidth" : 570.276,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 1.5,
- "right" : 0.0,
- "bottom" : 1.5,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerContact[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerContact[1]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 769.89,
- "placementX" : 15.0,
- "placementY" : 769.89,
- "placementWidth" : 570.276,
- "placementHeight" : 9.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 9.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerRuleTop_0[2]",
- "entityName" : "BlueBannerRuleTop_0",
- "entityKind" : "LineNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 33.0,
- "computedY" : 760.39,
- "placementX" : 33.0,
- "placementY" : 760.39,
- "placementWidth" : 500.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 500.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 3.0,
- "right" : 18.0,
- "bottom" : 1.0,
- "left" : 18.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBanner_0[3]",
- "entityName" : "BlueBannerBanner_0",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 740.23,
- "placementX" : 15.0,
- "placementY" : 740.23,
- "placementWidth" : 570.276,
- "placementHeight" : 15.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 15.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 3.2,
- "right" : 0.0,
- "bottom" : 3.2,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBanner_0[3]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBanner_0[3]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 743.43,
- "placementX" : 15.0,
- "placementY" : 743.43,
- "placementWidth" : 570.276,
- "placementHeight" : 8.76,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 8.76,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerRuleBottom_0[4]",
- "entityName" : "BlueBannerRuleBottom_0",
- "entityKind" : "LineNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 4,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 33.0,
- "computedY" : 734.23,
- "placementX" : 33.0,
- "placementY" : 734.23,
- "placementWidth" : 500.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 500.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 1.0,
- "right" : 18.0,
- "bottom" : 1.0,
- "left" : 18.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_0[5]",
- "entityName" : "BlueBannerBody_0",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 5,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 715.79,
- "placementX" : 15.0,
- "placementY" : 715.79,
- "placementWidth" : 365.827,
- "placementHeight" : 13.44,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 365.827,
- "contentHeight" : 13.44,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 3.0,
- "right" : 4.0,
- "bottom" : 0.0,
- "left" : 4.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_0[5]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_0[5]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 715.79,
- "placementX" : 19.0,
- "placementY" : 715.79,
- "placementWidth" : 357.827,
- "placementHeight" : 9.24,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 357.827,
- "contentHeight" : 9.24,
- "margin" : {
- "top" : 1.2,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerRuleTop_1[6]",
- "entityName" : "BlueBannerRuleTop_1",
- "entityKind" : "LineNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 6,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 33.0,
- "computedY" : 707.79,
- "placementX" : 33.0,
- "placementY" : 707.79,
- "placementWidth" : 500.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 500.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 3.0,
- "right" : 18.0,
- "bottom" : 1.0,
- "left" : 18.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBanner_1[7]",
- "entityName" : "BlueBannerBanner_1",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 7,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 687.63,
- "placementX" : 15.0,
- "placementY" : 687.63,
- "placementWidth" : 570.276,
- "placementHeight" : 15.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 15.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 3.2,
- "right" : 0.0,
- "bottom" : 3.2,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBanner_1[7]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBanner_1[7]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 690.83,
- "placementX" : 15.0,
- "placementY" : 690.83,
- "placementWidth" : 570.276,
- "placementHeight" : 8.76,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 8.76,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerRuleBottom_1[8]",
- "entityName" : "BlueBannerRuleBottom_1",
- "entityKind" : "LineNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 8,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 33.0,
- "computedY" : 681.63,
- "placementX" : 33.0,
- "placementY" : 681.63,
- "placementWidth" : 500.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 500.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 1.0,
- "right" : 18.0,
- "bottom" : 1.0,
- "left" : 18.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_1[9]",
- "entityName" : "BlueBannerBody_1",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 9,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 609.79,
- "placementX" : 15.0,
- "placementY" : 609.79,
- "placementWidth" : 570.276,
- "placementHeight" : 66.84,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 66.84,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 3.0,
- "right" : 4.0,
- "bottom" : 0.0,
- "left" : 4.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]",
- "entityName" : "BlueBannerEntryHeader",
- "entityKind" : "RowNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_1[9]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 655.15,
- "placementX" : 19.0,
- "placementY" : 655.15,
- "placementWidth" : 562.276,
- "placementHeight" : 18.48,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 562.276,
- "contentHeight" : 18.48,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]/Title[0]",
- "entityName" : "Title",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 19.0,
- "computedY" : 664.03,
- "placementX" : 19.0,
- "placementY" : 664.03,
- "placementWidth" : 115.664,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 115.664,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]/Title[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]/Title[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 19.0,
- "computedY" : 664.03,
- "placementX" : 19.0,
- "placementY" : 664.03,
- "placementWidth" : 115.664,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 115.664,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]/Date[1]",
- "entityName" : "Date",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 422.911,
- "computedY" : 655.15,
- "placementX" : 422.911,
- "placementY" : 655.15,
- "placementWidth" : 158.364,
- "placementHeight" : 18.48,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 158.364,
- "contentHeight" : 18.48,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]/Date[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[0]/Date[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 422.911,
- "computedY" : 655.15,
- "placementX" : 422.911,
- "placementY" : 655.15,
- "placementWidth" : 158.364,
- "placementHeight" : 18.48,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 158.364,
- "contentHeight" : 18.48,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_1[9]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 643.21,
- "placementX" : 19.0,
- "placementY" : 643.21,
- "placementWidth" : 64.42,
- "placementHeight" : 8.94,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 64.42,
- "contentHeight" : 8.94,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[2]",
- "entityName" : "BlueBannerEntryHeader",
- "entityKind" : "RowNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_1[9]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 621.73,
- "placementX" : 19.0,
- "placementY" : 621.73,
- "placementWidth" : 562.276,
- "placementHeight" : 18.48,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 562.276,
- "contentHeight" : 18.48,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[2]/Title[0]",
- "entityName" : "Title",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[2]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 19.0,
- "computedY" : 630.61,
- "placementX" : 19.0,
- "placementY" : 630.61,
- "placementWidth" : 85.304,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 85.304,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[2]/Title[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[2]/Title[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 19.0,
- "computedY" : 630.61,
- "placementX" : 19.0,
- "placementY" : 630.61,
- "placementWidth" : 85.304,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 85.304,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[2]/Date[1]",
- "entityName" : "Date",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[2]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 422.911,
- "computedY" : 621.73,
- "placementX" : 422.911,
- "placementY" : 621.73,
- "placementWidth" : 158.364,
- "placementHeight" : 18.48,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 158.364,
- "contentHeight" : 18.48,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[2]/Date[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/BlueBannerEntryHeader[2]/Date[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 422.911,
- "computedY" : 621.73,
- "placementX" : 422.911,
- "placementY" : 621.73,
- "placementWidth" : 158.364,
- "placementHeight" : 18.48,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 158.364,
- "contentHeight" : 18.48,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_1[9]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_1[9]",
- "childIndex" : 3,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 609.79,
- "placementX" : 19.0,
- "placementY" : 609.79,
- "placementWidth" : 50.943,
- "placementHeight" : 8.94,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 50.943,
- "contentHeight" : 8.94,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerRuleTop_2[10]",
- "entityName" : "BlueBannerRuleTop_2",
- "entityKind" : "LineNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 10,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 33.0,
- "computedY" : 601.79,
- "placementX" : 33.0,
- "placementY" : 601.79,
- "placementWidth" : 500.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 500.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 3.0,
- "right" : 18.0,
- "bottom" : 1.0,
- "left" : 18.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBanner_2[11]",
- "entityName" : "BlueBannerBanner_2",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 11,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 581.63,
- "placementX" : 15.0,
- "placementY" : 581.63,
- "placementWidth" : 570.276,
- "placementHeight" : 15.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 15.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 3.2,
- "right" : 0.0,
- "bottom" : 3.2,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBanner_2[11]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBanner_2[11]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 584.83,
- "placementX" : 15.0,
- "placementY" : 584.83,
- "placementWidth" : 570.276,
- "placementHeight" : 8.76,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 8.76,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerRuleBottom_2[12]",
- "entityName" : "BlueBannerRuleBottom_2",
- "entityKind" : "LineNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 12,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 33.0,
- "computedY" : 575.63,
- "placementX" : 33.0,
- "placementY" : 575.63,
- "placementWidth" : 500.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 500.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 1.0,
- "right" : 18.0,
- "bottom" : 1.0,
- "left" : 18.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_2[13]",
- "entityName" : "BlueBannerBody_2",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 13,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 543.75,
- "placementX" : 15.0,
- "placementY" : 543.75,
- "placementWidth" : 203.287,
- "placementHeight" : 26.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 203.287,
- "contentHeight" : 26.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 3.0,
- "right" : 4.0,
- "bottom" : 0.0,
- "left" : 4.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_2[13]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_2[13]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 557.19,
- "placementX" : 19.0,
- "placementY" : 557.19,
- "placementWidth" : 195.287,
- "placementHeight" : 9.24,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 195.287,
- "contentHeight" : 9.24,
- "margin" : {
- "top" : 1.2,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_2[13]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_2[13]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 543.75,
- "placementX" : 19.0,
- "placementY" : 543.75,
- "placementWidth" : 174.035,
- "placementHeight" : 9.24,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 174.035,
- "contentHeight" : 9.24,
- "margin" : {
- "top" : 1.2,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerRuleTop_3[14]",
- "entityName" : "BlueBannerRuleTop_3",
- "entityKind" : "LineNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 14,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 33.0,
- "computedY" : 535.75,
- "placementX" : 33.0,
- "placementY" : 535.75,
- "placementWidth" : 500.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 500.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 3.0,
- "right" : 18.0,
- "bottom" : 1.0,
- "left" : 18.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBanner_3[15]",
- "entityName" : "BlueBannerBanner_3",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 15,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 515.59,
- "placementX" : 15.0,
- "placementY" : 515.59,
- "placementWidth" : 570.276,
- "placementHeight" : 15.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 15.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 3.2,
- "right" : 0.0,
- "bottom" : 3.2,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBanner_3[15]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBanner_3[15]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 518.79,
- "placementX" : 15.0,
- "placementY" : 518.79,
- "placementWidth" : 570.276,
- "placementHeight" : 8.76,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 8.76,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerRuleBottom_3[16]",
- "entityName" : "BlueBannerRuleBottom_3",
- "entityKind" : "LineNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 16,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 33.0,
- "computedY" : 509.59,
- "placementX" : 33.0,
- "placementY" : 509.59,
- "placementWidth" : 500.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 500.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 1.0,
- "right" : 18.0,
- "bottom" : 1.0,
- "left" : 18.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_3[17]",
- "entityName" : "BlueBannerBody_3",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 17,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 469.87,
- "placementX" : 15.0,
- "placementY" : 469.87,
- "placementWidth" : 238.63,
- "placementHeight" : 34.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 238.63,
- "contentHeight" : 34.72,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 3.0,
- "right" : 4.0,
- "bottom" : 0.0,
- "left" : 4.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_3[17]/ListNode[0]",
- "entityName" : null,
- "entityKind" : "ListNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_3[17]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 469.87,
- "placementX" : 19.0,
- "placementY" : 469.87,
- "placementWidth" : 230.63,
- "placementHeight" : 30.52,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 230.63,
- "contentHeight" : 30.52,
- "margin" : {
- "top" : 1.2,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerRuleTop_4[18]",
- "entityName" : "BlueBannerRuleTop_4",
- "entityKind" : "LineNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 18,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 33.0,
- "computedY" : 461.87,
- "placementX" : 33.0,
- "placementY" : 461.87,
- "placementWidth" : 500.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 500.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 3.0,
- "right" : 18.0,
- "bottom" : 1.0,
- "left" : 18.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBanner_4[19]",
- "entityName" : "BlueBannerBanner_4",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 19,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 441.71,
- "placementX" : 15.0,
- "placementY" : 441.71,
- "placementWidth" : 570.276,
- "placementHeight" : 15.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 15.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 3.2,
- "right" : 0.0,
- "bottom" : 3.2,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBanner_4[19]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBanner_4[19]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 444.91,
- "placementX" : 15.0,
- "placementY" : 444.91,
- "placementWidth" : 570.276,
- "placementHeight" : 8.76,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 8.76,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerRuleBottom_4[20]",
- "entityName" : "BlueBannerRuleBottom_4",
- "entityKind" : "LineNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 20,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 33.0,
- "computedY" : 435.71,
- "placementX" : 33.0,
- "placementY" : 435.71,
- "placementWidth" : 500.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 500.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 1.0,
- "right" : 18.0,
- "bottom" : 1.0,
- "left" : 18.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_4[21]",
- "entityName" : "BlueBannerBody_4",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 21,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 403.83,
- "placementX" : 15.0,
- "placementY" : 403.83,
- "placementWidth" : 260.429,
- "placementHeight" : 26.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 260.429,
- "contentHeight" : 26.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 3.0,
- "right" : 4.0,
- "bottom" : 0.0,
- "left" : 4.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_4[21]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_4[21]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 417.27,
- "placementX" : 19.0,
- "placementY" : 417.27,
- "placementWidth" : 252.429,
- "placementHeight" : 9.24,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 252.429,
- "contentHeight" : 9.24,
- "margin" : {
- "top" : 1.2,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_4[21]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_4[21]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 403.83,
- "placementX" : 19.0,
- "placementY" : 403.83,
- "placementWidth" : 239.485,
- "placementHeight" : 9.24,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 239.485,
- "contentHeight" : 9.24,
- "margin" : {
- "top" : 1.2,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerRuleTop_5[22]",
- "entityName" : "BlueBannerRuleTop_5",
- "entityKind" : "LineNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 22,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 33.0,
- "computedY" : 395.83,
- "placementX" : 33.0,
- "placementY" : 395.83,
- "placementWidth" : 500.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 500.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 3.0,
- "right" : 18.0,
- "bottom" : 1.0,
- "left" : 18.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBanner_5[23]",
- "entityName" : "BlueBannerBanner_5",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 23,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 375.67,
- "placementX" : 15.0,
- "placementY" : 375.67,
- "placementWidth" : 570.276,
- "placementHeight" : 15.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 15.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 3.2,
- "right" : 0.0,
- "bottom" : 3.2,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBanner_5[23]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBanner_5[23]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 378.87,
- "placementX" : 15.0,
- "placementY" : 378.87,
- "placementWidth" : 570.276,
- "placementHeight" : 8.76,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 8.76,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerRuleBottom_5[24]",
- "entityName" : "BlueBannerRuleBottom_5",
- "entityKind" : "LineNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 24,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 33.0,
- "computedY" : 369.67,
- "placementX" : 33.0,
- "placementY" : 369.67,
- "placementWidth" : 500.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 500.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 1.0,
- "right" : 18.0,
- "bottom" : 1.0,
- "left" : 18.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_5[25]",
- "entityName" : "BlueBannerBody_5",
- "entityKind" : "SectionNode",
- "parentPath" : "BlueBannerRoot[0]",
- "childIndex" : 25,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 337.79,
- "placementX" : 15.0,
- "placementY" : 337.79,
- "placementWidth" : 287.256,
- "placementHeight" : 26.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 287.256,
- "contentHeight" : 26.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 3.0,
- "right" : 4.0,
- "bottom" : 0.0,
- "left" : 4.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_5[25]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_5[25]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 351.23,
- "placementX" : 19.0,
- "placementY" : 351.23,
- "placementWidth" : 279.256,
- "placementHeight" : 9.24,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 279.256,
- "contentHeight" : 9.24,
- "margin" : {
- "top" : 1.2,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BlueBannerRoot[0]/BlueBannerBody_5[25]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BlueBannerRoot[0]/BlueBannerBody_5[25]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 337.79,
- "placementX" : 19.0,
- "placementY" : 337.79,
- "placementWidth" : 264.318,
- "placementHeight" : 9.24,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 264.318,
- "contentHeight" : 9.24,
- "margin" : {
- "top" : 1.2,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_boxed_sections.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_boxed_sections.json
deleted file mode 100644
index 5c51975aa..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_boxed_sections.json
+++ /dev/null
@@ -1,1487 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "BoxedSectionsRoot[0]",
- "entityName" : "BoxedSectionsRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 221.65,
- "placementX" : 15.0,
- "placementY" : 221.65,
- "placementWidth" : 570.276,
- "placementHeight" : 605.24,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 605.24,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsHeader[0]",
- "entityName" : "BoxedSectionsHeader",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 794.402,
- "placementX" : 15.0,
- "placementY" : 794.402,
- "placementWidth" : 570.276,
- "placementHeight" : 32.488,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 32.488,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsHeader[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 798.402,
- "placementX" : 15.0,
- "placementY" : 798.402,
- "placementWidth" : 570.276,
- "placementHeight" : 28.488,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 28.488,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsContact[1]",
- "entityName" : "BoxedSectionsContact",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 768.14,
- "placementX" : 15.0,
- "placementY" : 768.14,
- "placementWidth" : 570.276,
- "placementHeight" : 19.263,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 19.263,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsContact[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsContact[1]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 772.14,
- "placementX" : 15.0,
- "placementY" : 772.14,
- "placementWidth" : 570.276,
- "placementHeight" : 11.263,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 11.263,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_0[2]",
- "entityName" : "BoxedSectionsBanner_0",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 734.42,
- "placementX" : 15.0,
- "placementY" : 734.42,
- "placementWidth" : 570.276,
- "placementHeight" : 22.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 22.72,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 5.0,
- "right" : 5.0,
- "bottom" : 5.0,
- "left" : 5.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_0[2]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_0[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 20.0,
- "computedY" : 739.42,
- "placementX" : 20.0,
- "placementY" : 739.42,
- "placementWidth" : 560.276,
- "placementHeight" : 12.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 560.276,
- "contentHeight" : 12.72,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "entityName" : "BoxedSectionsBody_0",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 710.025,
- "placementX" : 15.0,
- "placementY" : 710.025,
- "placementWidth" : 415.537,
- "placementHeight" : 17.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 415.537,
- "contentHeight" : 17.395,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 4.0,
- "right" : 4.0,
- "bottom" : 0.0,
- "left" : 4.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_0[3]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 710.025,
- "placementX" : 19.0,
- "placementY" : 710.025,
- "placementWidth" : 407.537,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 407.537,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_1[4]",
- "entityName" : "BoxedSectionsBanner_1",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 4,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 676.305,
- "placementX" : 15.0,
- "placementY" : 676.305,
- "placementWidth" : 570.276,
- "placementHeight" : 22.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 22.72,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 5.0,
- "right" : 5.0,
- "bottom" : 5.0,
- "left" : 5.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_1[4]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_1[4]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 20.0,
- "computedY" : 681.305,
- "placementX" : 20.0,
- "placementY" : 681.305,
- "placementWidth" : 560.276,
- "placementHeight" : 12.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 560.276,
- "contentHeight" : 12.72,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_1[5]",
- "entityName" : "BoxedSectionsBody_1",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 5,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 617.12,
- "placementX" : 15.0,
- "placementY" : 617.12,
- "placementWidth" : 271.341,
- "placementHeight" : 52.185,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 271.341,
- "contentHeight" : 52.185,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 4.0,
- "right" : 4.0,
- "bottom" : 0.0,
- "left" : 4.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_1[5]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_1[5]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 651.91,
- "placementX" : 19.0,
- "placementY" : 651.91,
- "placementWidth" : 143.061,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 143.061,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_1[5]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_1[5]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 634.515,
- "placementX" : 19.0,
- "placementY" : 634.515,
- "placementWidth" : 263.341,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 263.341,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_1[5]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_1[5]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 617.12,
- "placementX" : 19.0,
- "placementY" : 617.12,
- "placementWidth" : 207.647,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 207.647,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_2[6]",
- "entityName" : "BoxedSectionsBanner_2",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 6,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 583.4,
- "placementX" : 15.0,
- "placementY" : 583.4,
- "placementWidth" : 570.276,
- "placementHeight" : 22.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 22.72,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 5.0,
- "right" : 5.0,
- "bottom" : 5.0,
- "left" : 5.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_2[6]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_2[6]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 20.0,
- "computedY" : 588.4,
- "placementX" : 20.0,
- "placementY" : 588.4,
- "placementWidth" : 560.276,
- "placementHeight" : 12.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 560.276,
- "contentHeight" : 12.72,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_2[7]",
- "entityName" : "BoxedSectionsBody_2",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 7,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 541.61,
- "placementX" : 15.0,
- "placementY" : 541.61,
- "placementWidth" : 223.972,
- "placementHeight" : 34.79,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 223.972,
- "contentHeight" : 34.79,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 4.0,
- "right" : 4.0,
- "bottom" : 0.0,
- "left" : 4.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_2[7]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_2[7]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 559.005,
- "placementX" : 19.0,
- "placementY" : 559.005,
- "placementWidth" : 215.972,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 215.972,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_2[7]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_2[7]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 541.61,
- "placementX" : 19.0,
- "placementY" : 541.61,
- "placementWidth" : 194.601,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 194.601,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_3[8]",
- "entityName" : "BoxedSectionsBanner_3",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 8,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 507.89,
- "placementX" : 15.0,
- "placementY" : 507.89,
- "placementWidth" : 570.276,
- "placementHeight" : 22.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 22.72,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 5.0,
- "right" : 5.0,
- "bottom" : 5.0,
- "left" : 5.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_3[8]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_3[8]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 20.0,
- "computedY" : 512.89,
- "placementX" : 20.0,
- "placementY" : 512.89,
- "placementWidth" : 560.276,
- "placementHeight" : 12.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 560.276,
- "contentHeight" : 12.72,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_3[9]",
- "entityName" : "BoxedSectionsBody_3",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 9,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 435.31,
- "placementX" : 15.0,
- "placementY" : 435.31,
- "placementWidth" : 259.627,
- "placementHeight" : 65.58,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 259.627,
- "contentHeight" : 65.58,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 4.0,
- "right" : 4.0,
- "bottom" : 0.0,
- "left" : 4.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_3[9]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_3[9]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 483.495,
- "placementX" : 19.0,
- "placementY" : 483.495,
- "placementWidth" : 68.852,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 68.852,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_3[9]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_3[9]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 468.1,
- "placementX" : 19.0,
- "placementY" : 468.1,
- "placementWidth" : 251.627,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 251.627,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_3[9]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_3[9]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 450.705,
- "placementX" : 19.0,
- "placementY" : 450.705,
- "placementWidth" : 74.252,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 74.252,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_3[9]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_3[9]",
- "childIndex" : 3,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 435.31,
- "placementX" : 19.0,
- "placementY" : 435.31,
- "placementWidth" : 235.821,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 235.821,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_4[10]",
- "entityName" : "BoxedSectionsBanner_4",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 10,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 401.59,
- "placementX" : 15.0,
- "placementY" : 401.59,
- "placementWidth" : 570.276,
- "placementHeight" : 22.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 22.72,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 5.0,
- "right" : 5.0,
- "bottom" : 5.0,
- "left" : 5.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_4[10]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_4[10]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 20.0,
- "computedY" : 406.59,
- "placementX" : 20.0,
- "placementY" : 406.59,
- "placementWidth" : 560.276,
- "placementHeight" : 12.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 560.276,
- "contentHeight" : 12.72,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]",
- "entityName" : "BoxedSectionsBody_4",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 11,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 297.16,
- "placementX" : 15.0,
- "placementY" : 297.16,
- "placementWidth" : 570.276,
- "placementHeight" : 97.43,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 97.43,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 4.0,
- "right" : 4.0,
- "bottom" : 0.0,
- "left" : 4.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[0]",
- "entityName" : "BoxedSectionsEntryHeader",
- "entityKind" : "RowNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 378.4,
- "placementX" : 19.0,
- "placementY" : 378.4,
- "placementWidth" : 562.276,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 562.276,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[0]/Title[0]",
- "entityName" : "Title",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 19.0,
- "computedY" : 378.4,
- "placementX" : 19.0,
- "placementY" : 378.4,
- "placementWidth" : 112.038,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 112.038,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[0]/Title[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[0]/Title[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 19.0,
- "computedY" : 378.4,
- "placementX" : 19.0,
- "placementY" : 378.4,
- "placementWidth" : 112.038,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 112.038,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[0]/Date[1]",
- "entityName" : "Date",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 409.259,
- "computedY" : 378.93,
- "placementX" : 409.259,
- "placementY" : 378.93,
- "placementWidth" : 172.017,
- "placementHeight" : 11.66,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 172.017,
- "contentHeight" : 11.66,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[0]/Date[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[0]/Date[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 409.259,
- "computedY" : 378.93,
- "placementX" : 409.259,
- "placementY" : 378.93,
- "placementWidth" : 172.017,
- "placementHeight" : 11.66,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 172.017,
- "contentHeight" : 11.66,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 363.27,
- "placementX" : 19.0,
- "placementY" : 363.27,
- "placementWidth" : 68.88,
- "placementHeight" : 11.13,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 68.88,
- "contentHeight" : 11.13,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 345.875,
- "placementX" : 19.0,
- "placementY" : 345.875,
- "placementWidth" : 113.511,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 113.511,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[3]",
- "entityName" : "BoxedSectionsEntryHeader",
- "entityKind" : "RowNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]",
- "childIndex" : 3,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 329.685,
- "placementX" : 19.0,
- "placementY" : 329.685,
- "placementWidth" : 562.276,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 562.276,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[3]/Title[0]",
- "entityName" : "Title",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[3]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 19.0,
- "computedY" : 329.685,
- "placementX" : 19.0,
- "placementY" : 329.685,
- "placementWidth" : 80.914,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 80.914,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[3]/Title[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[3]/Title[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 19.0,
- "computedY" : 329.685,
- "placementX" : 19.0,
- "placementY" : 329.685,
- "placementWidth" : 80.914,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 80.914,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[3]/Date[1]",
- "entityName" : "Date",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[3]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 409.259,
- "computedY" : 330.215,
- "placementX" : 409.259,
- "placementY" : 330.215,
- "placementWidth" : 172.017,
- "placementHeight" : 11.66,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 172.017,
- "contentHeight" : 11.66,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[3]/Date[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/BoxedSectionsEntryHeader[3]/Date[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 409.259,
- "computedY" : 330.215,
- "placementX" : 409.259,
- "placementY" : 330.215,
- "placementWidth" : 172.017,
- "placementHeight" : 11.66,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 172.017,
- "contentHeight" : 11.66,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/ParagraphNode[4]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]",
- "childIndex" : 4,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 314.555,
- "placementX" : 19.0,
- "placementY" : 314.555,
- "placementWidth" : 56.448,
- "placementHeight" : 11.13,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 56.448,
- "contentHeight" : 11.13,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]/ParagraphNode[5]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_4[11]",
- "childIndex" : 5,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 297.16,
- "placementX" : 19.0,
- "placementY" : 297.16,
- "placementWidth" : 180.05,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 180.05,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_5[12]",
- "entityName" : "BoxedSectionsBanner_5",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 12,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 263.44,
- "placementX" : 15.0,
- "placementY" : 263.44,
- "placementWidth" : 570.276,
- "placementHeight" : 22.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 22.72,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 5.0,
- "right" : 5.0,
- "bottom" : 5.0,
- "left" : 5.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_5[12]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBanner_5[12]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 20.0,
- "computedY" : 268.44,
- "placementX" : 20.0,
- "placementY" : 268.44,
- "placementWidth" : 560.276,
- "placementHeight" : 12.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 560.276,
- "contentHeight" : 12.72,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_5[13]",
- "entityName" : "BoxedSectionsBody_5",
- "entityKind" : "SectionNode",
- "parentPath" : "BoxedSectionsRoot[0]",
- "childIndex" : 13,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 221.65,
- "placementX" : 15.0,
- "placementY" : 221.65,
- "placementWidth" : 297.76,
- "placementHeight" : 34.79,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 297.76,
- "contentHeight" : 34.79,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 4.0,
- "right" : 4.0,
- "bottom" : 0.0,
- "left" : 4.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_5[13]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_5[13]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 239.045,
- "placementX" : 19.0,
- "placementY" : 239.045,
- "placementWidth" : 289.76,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 289.76,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "BoxedSectionsRoot[0]/BoxedSectionsBody_5[13]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "BoxedSectionsRoot[0]/BoxedSectionsBody_5[13]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 19.0,
- "computedY" : 221.65,
- "placementX" : 19.0,
- "placementY" : 221.65,
- "placementWidth" : 276.499,
- "placementHeight" : 11.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 276.499,
- "contentHeight" : 11.395,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_centered_headline.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_centered_headline.json
deleted file mode 100644
index def296529..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_centered_headline.json
+++ /dev/null
@@ -1,1307 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "CenteredHeadlineRoot[0]",
- "entityName" : "CenteredHeadlineRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 350.21,
- "placementX" : 15.0,
- "placementY" : 350.21,
- "placementWidth" : 570.276,
- "placementHeight" : 476.68,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 476.68,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineHeader[0]",
- "entityName" : "CenteredHeadlineHeader",
- "entityKind" : "SectionNode",
- "parentPath" : "CenteredHeadlineRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 768.25,
- "placementX" : 15.0,
- "placementY" : 768.25,
- "placementWidth" : 570.276,
- "placementHeight" : 58.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 58.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineHeader[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 785.29,
- "placementX" : 15.0,
- "placementY" : 785.29,
- "placementWidth" : 570.276,
- "placementHeight" : 33.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 33.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineHeader[0]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineHeader[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 768.25,
- "placementX" : 15.0,
- "placementY" : 768.25,
- "placementWidth" : 570.276,
- "placementHeight" : 12.04,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 12.04,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineHeaderRule[1]",
- "entityName" : "CenteredHeadlineHeaderRule",
- "entityKind" : "LineNode",
- "parentPath" : "CenteredHeadlineRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 760.25,
- "placementX" : 15.0,
- "placementY" : 760.25,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineContact[2]",
- "entityName" : "CenteredHeadlineContact",
- "entityKind" : "SectionNode",
- "parentPath" : "CenteredHeadlineRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 736.29,
- "placementX" : 15.0,
- "placementY" : 736.29,
- "placementWidth" : 570.276,
- "placementHeight" : 23.96,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 23.96,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 7.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineContact[2]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineContact[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 743.29,
- "placementX" : 15.0,
- "placementY" : 743.29,
- "placementWidth" : 570.276,
- "placementHeight" : 9.96,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 9.96,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineContactRule[3]",
- "entityName" : "CenteredHeadlineContactRule",
- "entityKind" : "LineNode",
- "parentPath" : "CenteredHeadlineRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 735.29,
- "placementX" : 15.0,
- "placementY" : 735.29,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 13.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalsummary_0[4]",
- "entityName" : "CenteredHeadlineModuleprofessionalsummary_0",
- "entityKind" : "SectionNode",
- "parentPath" : "CenteredHeadlineRoot[0]",
- "childIndex" : 4,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 693.45,
- "placementX" : 15.0,
- "placementY" : 693.45,
- "placementWidth" : 404.298,
- "placementHeight" : 28.84,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 404.298,
- "contentHeight" : 28.84,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalsummary_0[4]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalsummary_0[4]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 710.89,
- "placementX" : 15.0,
- "placementY" : 710.89,
- "placementWidth" : 165.566,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 165.566,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalsummary_0[4]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalsummary_0[4]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 693.45,
- "placementX" : 15.0,
- "placementY" : 693.45,
- "placementWidth" : 404.298,
- "placementHeight" : 10.44,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 404.298,
- "contentHeight" : 10.44,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleRule0[5]",
- "entityName" : "CenteredHeadlineModuleRule0",
- "entityKind" : "LineNode",
- "parentPath" : "CenteredHeadlineRoot[0]",
- "childIndex" : 5,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 687.45,
- "placementX" : 15.0,
- "placementY" : 687.45,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 12.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuletechnicalskills_1[6]",
- "entityName" : "CenteredHeadlineModuletechnicalskills_1",
- "entityKind" : "SectionNode",
- "parentPath" : "CenteredHeadlineRoot[0]",
- "childIndex" : 6,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 621.73,
- "placementX" : 15.0,
- "placementY" : 621.73,
- "placementWidth" : 260.582,
- "placementHeight" : 53.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 260.582,
- "contentHeight" : 53.72,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuletechnicalskills_1[6]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuletechnicalskills_1[6]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 664.05,
- "placementX" : 15.0,
- "placementY" : 664.05,
- "placementWidth" : 119.339,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 119.339,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuletechnicalskills_1[6]/ListNode[1]",
- "entityName" : null,
- "entityKind" : "ListNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuletechnicalskills_1[6]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 621.73,
- "placementX" : 15.0,
- "placementY" : 621.73,
- "placementWidth" : 260.582,
- "placementHeight" : 35.32,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 260.582,
- "contentHeight" : 35.32,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleRule1[7]",
- "entityName" : "CenteredHeadlineModuleRule1",
- "entityKind" : "LineNode",
- "parentPath" : "CenteredHeadlineRoot[0]",
- "childIndex" : 7,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 615.73,
- "placementX" : 15.0,
- "placementY" : 615.73,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 12.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleeducationcertifications_2[8]",
- "entityName" : "CenteredHeadlineModuleeducationcertifications_2",
- "entityKind" : "SectionNode",
- "parentPath" : "CenteredHeadlineRoot[0]",
- "childIndex" : 8,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 557.45,
- "placementX" : 15.0,
- "placementY" : 557.45,
- "placementWidth" : 220.649,
- "placementHeight" : 46.28,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 220.649,
- "contentHeight" : 46.28,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleeducationcertifications_2[8]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleeducationcertifications_2[8]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 592.33,
- "placementX" : 15.0,
- "placementY" : 592.33,
- "placementWidth" : 201.581,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 201.581,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleeducationcertifications_2[8]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleeducationcertifications_2[8]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 574.89,
- "placementX" : 15.0,
- "placementY" : 574.89,
- "placementWidth" : 220.649,
- "placementHeight" : 10.44,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 220.649,
- "contentHeight" : 10.44,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleeducationcertifications_2[8]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleeducationcertifications_2[8]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 557.45,
- "placementX" : 15.0,
- "placementY" : 557.45,
- "placementWidth" : 196.637,
- "placementHeight" : 10.44,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 196.637,
- "contentHeight" : 10.44,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleRule2[9]",
- "entityName" : "CenteredHeadlineModuleRule2",
- "entityKind" : "LineNode",
- "parentPath" : "CenteredHeadlineRoot[0]",
- "childIndex" : 9,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 551.45,
- "placementX" : 15.0,
- "placementY" : 551.45,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 12.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprojects_3[10]",
- "entityName" : "CenteredHeadlineModuleprojects_3",
- "entityKind" : "SectionNode",
- "parentPath" : "CenteredHeadlineRoot[0]",
- "childIndex" : 10,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 493.17,
- "placementX" : 15.0,
- "placementY" : 493.17,
- "placementWidth" : 315.523,
- "placementHeight" : 46.28,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 315.523,
- "contentHeight" : 46.28,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprojects_3[10]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprojects_3[10]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 528.05,
- "placementX" : 15.0,
- "placementY" : 528.05,
- "placementWidth" : 62.576,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 62.576,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprojects_3[10]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprojects_3[10]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 510.61,
- "placementX" : 15.0,
- "placementY" : 510.61,
- "placementWidth" : 315.523,
- "placementHeight" : 10.44,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 315.523,
- "contentHeight" : 10.44,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprojects_3[10]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprojects_3[10]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 493.17,
- "placementX" : 15.0,
- "placementY" : 493.17,
- "placementWidth" : 298.645,
- "placementHeight" : 10.44,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 298.645,
- "contentHeight" : 10.44,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleRule3[11]",
- "entityName" : "CenteredHeadlineModuleRule3",
- "entityKind" : "LineNode",
- "parentPath" : "CenteredHeadlineRoot[0]",
- "childIndex" : 11,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 487.17,
- "placementX" : 15.0,
- "placementY" : 487.17,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 12.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]",
- "entityName" : "CenteredHeadlineModuleprofessionalexperience_4",
- "entityKind" : "SectionNode",
- "parentPath" : "CenteredHeadlineRoot[0]",
- "childIndex" : 12,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 414.49,
- "placementX" : 15.0,
- "placementY" : 414.49,
- "placementWidth" : 570.276,
- "placementHeight" : 60.68,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 60.68,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 463.77,
- "placementX" : 15.0,
- "placementY" : 463.77,
- "placementWidth" : 180.044,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 180.044,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[1]",
- "entityName" : "CenteredHeadlineWorkEntry",
- "entityKind" : "RowNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 439.13,
- "placementX" : 15.0,
- "placementY" : 439.13,
- "placementWidth" : 570.276,
- "placementHeight" : 20.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 20.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[1]/Title[0]",
- "entityName" : "Title",
- "entityKind" : "SectionNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 15.0,
- "computedY" : 449.21,
- "placementX" : 15.0,
- "placementY" : 449.21,
- "placementWidth" : 185.469,
- "placementHeight" : 10.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 185.469,
- "contentHeight" : 10.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[1]/Title[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[1]/Title[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 449.21,
- "placementX" : 15.0,
- "placementY" : 449.21,
- "placementWidth" : 185.469,
- "placementHeight" : 10.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 185.469,
- "contentHeight" : 10.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[1]/Date[1]",
- "entityName" : "Date",
- "entityKind" : "SectionNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 410.776,
- "computedY" : 439.13,
- "placementX" : 410.776,
- "placementY" : 439.13,
- "placementWidth" : 174.499,
- "placementHeight" : 20.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 174.499,
- "contentHeight" : 20.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[1]/Date[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[1]/Date[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 410.776,
- "computedY" : 439.13,
- "placementX" : 410.776,
- "placementY" : 439.13,
- "placementWidth" : 174.499,
- "placementHeight" : 20.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 174.499,
- "contentHeight" : 20.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[2]",
- "entityName" : "CenteredHeadlineWorkEntry",
- "entityKind" : "RowNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 414.49,
- "placementX" : 15.0,
- "placementY" : 414.49,
- "placementWidth" : 570.276,
- "placementHeight" : 20.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 20.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[2]/Title[0]",
- "entityName" : "Title",
- "entityKind" : "SectionNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[2]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 15.0,
- "computedY" : 424.57,
- "placementX" : 15.0,
- "placementY" : 424.57,
- "placementWidth" : 143.924,
- "placementHeight" : 10.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 143.924,
- "contentHeight" : 10.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[2]/Title[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[2]/Title[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 424.57,
- "placementX" : 15.0,
- "placementY" : 424.57,
- "placementWidth" : 143.924,
- "placementHeight" : 10.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 143.924,
- "contentHeight" : 10.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[2]/Date[1]",
- "entityName" : "Date",
- "entityKind" : "SectionNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[2]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 410.776,
- "computedY" : 414.49,
- "placementX" : 410.776,
- "placementY" : 414.49,
- "placementWidth" : 174.499,
- "placementHeight" : 20.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 174.499,
- "contentHeight" : 20.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[2]/Date[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleprofessionalexperience_4[12]/CenteredHeadlineWorkEntry[2]/Date[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 410.776,
- "computedY" : 414.49,
- "placementX" : 410.776,
- "placementY" : 414.49,
- "placementWidth" : 174.499,
- "placementHeight" : 20.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 174.499,
- "contentHeight" : 20.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleRule4[13]",
- "entityName" : "CenteredHeadlineModuleRule4",
- "entityKind" : "LineNode",
- "parentPath" : "CenteredHeadlineRoot[0]",
- "childIndex" : 13,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 408.49,
- "placementX" : 15.0,
- "placementY" : 408.49,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 12.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleadditionalinformation_5[14]",
- "entityName" : "CenteredHeadlineModuleadditionalinformation_5",
- "entityKind" : "SectionNode",
- "parentPath" : "CenteredHeadlineRoot[0]",
- "childIndex" : 14,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 350.21,
- "placementX" : 15.0,
- "placementY" : 350.21,
- "placementWidth" : 285.212,
- "placementHeight" : 46.28,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 285.212,
- "contentHeight" : 46.28,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleadditionalinformation_5[14]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleadditionalinformation_5[14]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 385.09,
- "placementX" : 15.0,
- "placementY" : 385.09,
- "placementWidth" : 178.144,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 178.144,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleadditionalinformation_5[14]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleadditionalinformation_5[14]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 367.65,
- "placementX" : 15.0,
- "placementY" : 367.65,
- "placementWidth" : 285.212,
- "placementHeight" : 10.44,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 285.212,
- "contentHeight" : 10.44,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleadditionalinformation_5[14]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CenteredHeadlineRoot[0]/CenteredHeadlineModuleadditionalinformation_5[14]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 350.21,
- "placementX" : 15.0,
- "placementY" : 350.21,
- "placementWidth" : 270.587,
- "placementHeight" : 10.44,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 270.587,
- "contentHeight" : 10.44,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_classic_serif.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_classic_serif.json
deleted file mode 100644
index f4a161522..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_classic_serif.json
+++ /dev/null
@@ -1,1337 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 2,
- "nodes" : [ {
- "path" : "ClassicSerifRoot[0]",
- "entityName" : "ClassicSerifRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 243.182,
- "placementX" : 15.0,
- "placementY" : 243.182,
- "placementWidth" : 570.276,
- "placementHeight" : 583.707,
- "startPage" : 0,
- "endPage" : 1,
- "contentWidth" : 570.276,
- "contentHeight" : 583.707,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifHeader[0]",
- "entityName" : "ClassicSerifHeader",
- "entityKind" : "SectionNode",
- "parentPath" : "ClassicSerifRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 752.587,
- "placementX" : 15.0,
- "placementY" : 752.587,
- "placementWidth" : 570.276,
- "placementHeight" : 74.303,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 74.303,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 7.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifHeader[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 783.115,
- "placementX" : 15.0,
- "placementY" : 783.115,
- "placementWidth" : 570.276,
- "placementHeight" : 35.775,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 35.775,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifHeader[0]/ClassicSerifHeaderRule[1]",
- "entityName" : "ClassicSerifHeaderRule",
- "entityKind" : "LineNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifHeader[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 776.115,
- "placementX" : 15.0,
- "placementY" : 776.115,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifHeader[0]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifHeader[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 759.587,
- "placementX" : 15.0,
- "placementY" : 759.587,
- "placementWidth" : 570.276,
- "placementHeight" : 11.528,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 11.528,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifSummary[1]",
- "entityName" : "ClassicSerifSummary",
- "entityKind" : "SectionNode",
- "parentPath" : "ClassicSerifRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 689.412,
- "placementX" : 15.0,
- "placementY" : 689.412,
- "placementWidth" : 570.276,
- "placementHeight" : 55.175,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 55.175,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 12.0,
- "right" : 18.0,
- "bottom" : 13.0,
- "left" : 18.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifSummary[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifSummary[1]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 33.0,
- "computedY" : 720.397,
- "placementX" : 33.0,
- "placementY" : 720.397,
- "placementWidth" : 534.276,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 534.276,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifSummary[1]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifSummary[1]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 33.0,
- "computedY" : 702.412,
- "placementX" : 33.0,
- "placementY" : 702.412,
- "placementWidth" : 534.276,
- "placementHeight" : 12.985,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 534.276,
- "contentHeight" : 12.985,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]",
- "entityName" : "ClassicSerifFirstPageGrid",
- "entityKind" : "RowNode",
- "parentPath" : "ClassicSerifRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 503.342,
- "placementX" : 15.0,
- "placementY" : 503.342,
- "placementWidth" : 570.276,
- "placementHeight" : 178.07,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 178.07,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifSkillsColumn[0]",
- "entityName" : "ClassicSerifSkillsColumn",
- "entityKind" : "SectionNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 528.015,
- "placementX" : 15.0,
- "placementY" : 528.015,
- "placementWidth" : 241.639,
- "placementHeight" : 153.397,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 241.639,
- "contentHeight" : 153.397,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifSkillsColumn[0]/ClassicSerifFeaturecoreskills[0]",
- "entityName" : "ClassicSerifFeaturecoreskills",
- "entityKind" : "SectionNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifSkillsColumn[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 15.0,
- "computedY" : 595.127,
- "placementX" : 15.0,
- "placementY" : 595.127,
- "placementWidth" : 234.728,
- "placementHeight" : 86.285,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 234.728,
- "contentHeight" : 86.285,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 9.0,
- "right" : 10.0,
- "bottom" : 10.0,
- "left" : 10.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifSkillsColumn[0]/ClassicSerifFeaturecoreskills[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifSkillsColumn[0]/ClassicSerifFeaturecoreskills[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 660.222,
- "placementX" : 25.0,
- "placementY" : 660.222,
- "placementWidth" : 83.177,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 83.177,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifSkillsColumn[0]/ClassicSerifFeaturecoreskills[0]/ListNode[1]",
- "entityName" : null,
- "entityKind" : "ListNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifSkillsColumn[0]/ClassicSerifFeaturecoreskills[0]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 605.127,
- "placementX" : 25.0,
- "placementY" : 605.127,
- "placementWidth" : 214.728,
- "placementHeight" : 51.095,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 214.728,
- "contentHeight" : 51.095,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifSkillsColumn[0]/ClassicSerifFeatureeducation[1]",
- "entityName" : "ClassicSerifFeatureeducation",
- "entityKind" : "SectionNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifSkillsColumn[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 15.0,
- "computedY" : 528.015,
- "placementX" : 15.0,
- "placementY" : 528.015,
- "placementWidth" : 241.639,
- "placementHeight" : 60.112,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 241.639,
- "contentHeight" : 60.112,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 9.0,
- "right" : 10.0,
- "bottom" : 10.0,
- "left" : 10.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifSkillsColumn[0]/ClassicSerifFeatureeducation[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifSkillsColumn[0]/ClassicSerifFeatureeducation[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 566.937,
- "placementX" : 25.0,
- "placementY" : 566.937,
- "placementWidth" : 74.952,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 74.952,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifSkillsColumn[0]/ClassicSerifFeatureeducation[1]/ListNode[1]",
- "entityName" : null,
- "entityKind" : "ListNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifSkillsColumn[0]/ClassicSerifFeatureeducation[1]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 538.015,
- "placementX" : 25.0,
- "placementY" : 538.015,
- "placementWidth" : 221.639,
- "placementHeight" : 24.922,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 221.639,
- "contentHeight" : 24.922,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifEvidenceColumn[1]",
- "entityName" : "ClassicSerifEvidenceColumn",
- "entityKind" : "SectionNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 307.638,
- "computedY" : 503.342,
- "placementX" : 307.638,
- "placementY" : 503.342,
- "placementWidth" : 272.641,
- "placementHeight" : 178.07,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 272.641,
- "contentHeight" : 178.07,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifEvidenceColumn[1]/ClassicSerifFeatureexperience[0]",
- "entityName" : "ClassicSerifFeatureexperience",
- "entityKind" : "SectionNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifEvidenceColumn[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 307.638,
- "computedY" : 595.877,
- "placementX" : 307.638,
- "placementY" : 595.877,
- "placementWidth" : 272.641,
- "placementHeight" : 85.535,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 272.641,
- "contentHeight" : 85.535,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 9.0,
- "right" : 10.0,
- "bottom" : 10.0,
- "left" : 10.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifEvidenceColumn[1]/ClassicSerifFeatureexperience[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifEvidenceColumn[1]/ClassicSerifFeatureexperience[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 317.638,
- "computedY" : 660.222,
- "placementX" : 317.638,
- "placementY" : 660.222,
- "placementWidth" : 79.976,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 79.976,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifEvidenceColumn[1]/ClassicSerifFeatureexperience[0]/ListNode[1]",
- "entityName" : null,
- "entityKind" : "ListNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifEvidenceColumn[1]/ClassicSerifFeatureexperience[0]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 317.638,
- "computedY" : 605.877,
- "placementX" : 317.638,
- "placementY" : 605.877,
- "placementWidth" : 252.641,
- "placementHeight" : 50.345,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 252.641,
- "contentHeight" : 50.345,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifEvidenceColumn[1]/ClassicSerifFeatureselectedprojects[1]",
- "entityName" : "ClassicSerifFeatureselectedprojects",
- "entityKind" : "SectionNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifEvidenceColumn[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 307.638,
- "computedY" : 503.342,
- "placementX" : 307.638,
- "placementY" : 503.342,
- "placementWidth" : 270.85,
- "placementHeight" : 85.535,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 270.85,
- "contentHeight" : 85.535,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 9.0,
- "right" : 10.0,
- "bottom" : 10.0,
- "left" : 10.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifEvidenceColumn[1]/ClassicSerifFeatureselectedprojects[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifEvidenceColumn[1]/ClassicSerifFeatureselectedprojects[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 317.638,
- "computedY" : 567.687,
- "placementX" : 317.638,
- "placementY" : 567.687,
- "placementWidth" : 133.722,
- "placementHeight" : 12.19,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 133.722,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifEvidenceColumn[1]/ClassicSerifFeatureselectedprojects[1]/ListNode[1]",
- "entityName" : null,
- "entityKind" : "ListNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifFirstPageGrid[2]/ClassicSerifEvidenceColumn[1]/ClassicSerifFeatureselectedprojects[1]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 317.638,
- "computedY" : 513.342,
- "placementX" : 317.638,
- "placementY" : 513.342,
- "placementWidth" : 250.85,
- "placementHeight" : 50.345,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 250.85,
- "contentHeight" : 50.345,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifDetailsPage[3]",
- "entityName" : "ClassicSerifDetailsPage",
- "entityKind" : "PageBreakNode",
- "parentPath" : "ClassicSerifRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 826.89,
- "placementX" : 15.0,
- "placementY" : 826.89,
- "placementWidth" : 0.0,
- "placementHeight" : 0.0,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 0.0,
- "contentHeight" : 0.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifexperience[4]",
- "entityName" : "ClassicSerifexperience",
- "entityKind" : "SectionNode",
- "parentPath" : "ClassicSerifRoot[0]",
- "childIndex" : 4,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 763.85,
- "placementX" : 15.0,
- "placementY" : 763.85,
- "placementWidth" : 390.204,
- "placementHeight" : 55.04,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 390.204,
- "contentHeight" : 55.04,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifexperience[4]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifexperience[4]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 806.7,
- "placementX" : 15.0,
- "placementY" : 806.7,
- "placementWidth" : 79.976,
- "placementHeight" : 12.19,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 79.976,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifexperience[4]/ClassicSerifexperienceRule[1]",
- "entityName" : "ClassicSerifexperienceRule",
- "entityKind" : "LineNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifexperience[4]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 801.7,
- "placementX" : 15.0,
- "placementY" : 801.7,
- "placementWidth" : 72.0,
- "placementHeight" : 1.0,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 72.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifexperience[4]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifexperience[4]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 782.775,
- "placementX" : 15.0,
- "placementY" : 782.775,
- "placementWidth" : 375.408,
- "placementHeight" : 11.925,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 375.408,
- "contentHeight" : 11.925,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifexperience[4]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifexperience[4]",
- "childIndex" : 3,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 765.85,
- "placementX" : 15.0,
- "placementY" : 765.85,
- "placementWidth" : 390.204,
- "placementHeight" : 11.925,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 390.204,
- "contentHeight" : 11.925,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifprojects[5]",
- "entityName" : "ClassicSerifprojects",
- "entityKind" : "SectionNode",
- "parentPath" : "ClassicSerifRoot[0]",
- "childIndex" : 5,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 700.81,
- "placementX" : 15.0,
- "placementY" : 700.81,
- "placementWidth" : 327.069,
- "placementHeight" : 55.04,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 327.069,
- "contentHeight" : 55.04,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifprojects[5]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifprojects[5]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 743.66,
- "placementX" : 15.0,
- "placementY" : 743.66,
- "placementWidth" : 62.808,
- "placementHeight" : 12.19,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 62.808,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifprojects[5]/ClassicSerifprojectsRule[1]",
- "entityName" : "ClassicSerifprojectsRule",
- "entityKind" : "LineNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifprojects[5]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 738.66,
- "placementX" : 15.0,
- "placementY" : 738.66,
- "placementWidth" : 72.0,
- "placementHeight" : 1.0,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 72.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifprojects[5]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifprojects[5]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 719.735,
- "placementX" : 15.0,
- "placementY" : 719.735,
- "placementWidth" : 327.069,
- "placementHeight" : 11.925,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 327.069,
- "contentHeight" : 11.925,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifprojects[5]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifprojects[5]",
- "childIndex" : 3,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 702.81,
- "placementX" : 15.0,
- "placementY" : 702.81,
- "placementWidth" : 315.198,
- "placementHeight" : 11.925,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 315.198,
- "contentHeight" : 11.925,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifeducation[6]",
- "entityName" : "ClassicSerifeducation",
- "entityKind" : "SectionNode",
- "parentPath" : "ClassicSerifRoot[0]",
- "childIndex" : 6,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 637.77,
- "placementX" : 15.0,
- "placementY" : 637.77,
- "placementWidth" : 224.325,
- "placementHeight" : 55.04,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 224.325,
- "contentHeight" : 55.04,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifeducation[6]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifeducation[6]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 680.62,
- "placementX" : 15.0,
- "placementY" : 680.62,
- "placementWidth" : 74.952,
- "placementHeight" : 12.19,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 74.952,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifeducation[6]/ClassicSerifeducationRule[1]",
- "entityName" : "ClassicSerifeducationRule",
- "entityKind" : "LineNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifeducation[6]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 675.62,
- "placementX" : 15.0,
- "placementY" : 675.62,
- "placementWidth" : 72.0,
- "placementHeight" : 1.0,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 72.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifeducation[6]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifeducation[6]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 656.695,
- "placementX" : 15.0,
- "placementY" : 656.695,
- "placementWidth" : 224.325,
- "placementHeight" : 11.925,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 224.325,
- "contentHeight" : 11.925,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifeducation[6]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifeducation[6]",
- "childIndex" : 3,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 639.77,
- "placementX" : 15.0,
- "placementY" : 639.77,
- "placementWidth" : 201.96,
- "placementHeight" : 11.925,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 201.96,
- "contentHeight" : 11.925,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifadditional[7]",
- "entityName" : "ClassicSerifadditional",
- "entityKind" : "SectionNode",
- "parentPath" : "ClassicSerifRoot[0]",
- "childIndex" : 7,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 574.73,
- "placementX" : 15.0,
- "placementY" : 574.73,
- "placementWidth" : 300.438,
- "placementHeight" : 55.04,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 300.438,
- "contentHeight" : 55.04,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifadditional[7]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifadditional[7]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 617.58,
- "placementX" : 15.0,
- "placementY" : 617.58,
- "placementWidth" : 81.567,
- "placementHeight" : 12.19,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 81.567,
- "contentHeight" : 12.19,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifadditional[7]/ClassicSerifadditionalRule[1]",
- "entityName" : "ClassicSerifadditionalRule",
- "entityKind" : "LineNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifadditional[7]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 612.58,
- "placementX" : 15.0,
- "placementY" : 612.58,
- "placementWidth" : 72.0,
- "placementHeight" : 1.0,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 72.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifadditional[7]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifadditional[7]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 593.655,
- "placementX" : 15.0,
- "placementY" : 593.655,
- "placementWidth" : 300.438,
- "placementHeight" : 11.925,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 300.438,
- "contentHeight" : 11.925,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ClassicSerifRoot[0]/ClassicSerifadditional[7]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ClassicSerifRoot[0]/ClassicSerifadditional[7]",
- "childIndex" : 3,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 576.73,
- "placementX" : 15.0,
- "placementY" : 576.73,
- "placementWidth" : 286.704,
- "placementHeight" : 11.925,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 286.704,
- "contentHeight" : 11.925,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_compact_mono.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_compact_mono.json
deleted file mode 100644
index ee81ecd3e..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_compact_mono.json
+++ /dev/null
@@ -1,1037 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "CompactMonoRoot[0]",
- "entityName" : "CompactMonoRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 499.74,
- "placementX" : 15.0,
- "placementY" : 499.74,
- "placementWidth" : 570.276,
- "placementHeight" : 327.15,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 327.15,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoHeader[0]",
- "entityName" : "CompactMonoHeader",
- "entityKind" : "SectionNode",
- "parentPath" : "CompactMonoRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 750.38,
- "placementX" : 15.0,
- "placementY" : 750.38,
- "placementWidth" : 570.276,
- "placementHeight" : 76.51,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 76.51,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 13.0,
- "right" : 16.0,
- "bottom" : 14.0,
- "left" : 16.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoHeader[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 31.0,
- "computedY" : 783.34,
- "placementX" : 31.0,
- "placementY" : 783.34,
- "placementWidth" : 225.6,
- "placementHeight" : 30.55,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 225.6,
- "contentHeight" : 30.55,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoHeader[0]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoHeader[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 31.0,
- "computedY" : 769.38,
- "placementX" : 31.0,
- "placementY" : 769.38,
- "placementWidth" : 283.047,
- "placementHeight" : 9.96,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 283.047,
- "contentHeight" : 9.96,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoHeader[0]/CompactMonoHeaderWidthRule[2]",
- "entityName" : "CompactMonoHeaderWidthRule",
- "entityKind" : "LineNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoHeader[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 31.0,
- "computedY" : 764.38,
- "placementX" : 31.0,
- "placementY" : 764.38,
- "placementWidth" : 538.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 538.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]",
- "entityName" : "CompactMonoBody",
- "entityKind" : "RowNode",
- "parentPath" : "CompactMonoRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 499.74,
- "placementX" : 15.0,
- "placementY" : 499.74,
- "placementWidth" : 570.276,
- "placementHeight" : 241.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 241.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]",
- "entityName" : "CompactMonoRail",
- "entityKind" : "SectionNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 499.74,
- "placementX" : 15.0,
- "placementY" : 499.74,
- "placementWidth" : 178.657,
- "placementHeight" : 241.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 178.657,
- "contentHeight" : 241.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 11.0,
- "right" : 11.0,
- "bottom" : 13.0,
- "left" : 11.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoskills[0]",
- "entityName" : "CompactMonoskills",
- "entityKind" : "SectionNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 26.0,
- "computedY" : 655.58,
- "placementX" : 26.0,
- "placementY" : 655.58,
- "placementWidth" : 156.657,
- "placementHeight" : 74.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 156.657,
- "contentHeight" : 74.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoskills[0]/CompactMonoLabelTick[0]",
- "entityName" : "CompactMonoLabelTick",
- "entityKind" : "ShapeNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoskills[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 26.0,
- "computedY" : 728.18,
- "placementX" : 26.0,
- "placementY" : 728.18,
- "placementWidth" : 22.0,
- "placementHeight" : 2.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 22.0,
- "contentHeight" : 2.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoskills[0]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoskills[0]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 26.0,
- "computedY" : 713.78,
- "placementX" : 26.0,
- "placementY" : 713.78,
- "placementWidth" : 28.8,
- "placementHeight" : 10.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 28.8,
- "contentHeight" : 10.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoskills[0]/ListNode[2]",
- "entityName" : null,
- "entityKind" : "ListNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoskills[0]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 26.0,
- "computedY" : 657.58,
- "placementX" : 26.0,
- "placementY" : 657.58,
- "placementWidth" : 156.657,
- "placementHeight" : 52.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 156.657,
- "contentHeight" : 52.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoeducation[1]",
- "entityName" : "CompactMonoeducation",
- "entityKind" : "SectionNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 26.0,
- "computedY" : 584.16,
- "placementX" : 26.0,
- "placementY" : 584.16,
- "placementWidth" : 152.273,
- "placementHeight" : 63.42,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 152.273,
- "contentHeight" : 63.42,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoeducation[1]/CompactMonoLabelTick[0]",
- "entityName" : "CompactMonoLabelTick",
- "entityKind" : "ShapeNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoeducation[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 26.0,
- "computedY" : 645.38,
- "placementX" : 26.0,
- "placementY" : 645.38,
- "placementWidth" : 22.0,
- "placementHeight" : 2.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 22.0,
- "contentHeight" : 2.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoeducation[1]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoeducation[1]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 26.0,
- "computedY" : 630.98,
- "placementX" : 26.0,
- "placementY" : 630.98,
- "placementWidth" : 43.2,
- "placementHeight" : 10.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 43.2,
- "contentHeight" : 10.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoeducation[1]/ListNode[2]",
- "entityName" : null,
- "entityKind" : "ListNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoeducation[1]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 26.0,
- "computedY" : 586.16,
- "placementX" : 26.0,
- "placementY" : 586.16,
- "placementWidth" : 152.273,
- "placementHeight" : 40.82,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 152.273,
- "contentHeight" : 40.82,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoadditional[2]",
- "entityName" : "CompactMonoadditional",
- "entityKind" : "SectionNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 26.0,
- "computedY" : 512.74,
- "placementX" : 26.0,
- "placementY" : 512.74,
- "placementWidth" : 145.786,
- "placementHeight" : 63.42,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 145.786,
- "contentHeight" : 63.42,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoadditional[2]/CompactMonoLabelTick[0]",
- "entityName" : "CompactMonoLabelTick",
- "entityKind" : "ShapeNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoadditional[2]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 26.0,
- "computedY" : 573.96,
- "placementX" : 26.0,
- "placementY" : 573.96,
- "placementWidth" : 22.0,
- "placementHeight" : 2.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 22.0,
- "contentHeight" : 2.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoadditional[2]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoadditional[2]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 26.0,
- "computedY" : 559.56,
- "placementX" : 26.0,
- "placementY" : 559.56,
- "placementWidth" : 48.0,
- "placementHeight" : 10.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 48.0,
- "contentHeight" : 10.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoadditional[2]/ListNode[2]",
- "entityName" : null,
- "entityKind" : "ListNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoRail[0]/CompactMonoadditional[2]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 26.0,
- "computedY" : 514.74,
- "placementX" : 26.0,
- "placementY" : 514.74,
- "placementWidth" : 145.786,
- "placementHeight" : 40.82,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 145.786,
- "contentHeight" : 40.82,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]",
- "entityName" : "CompactMonoMain",
- "entityKind" : "SectionNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 209.79,
- "computedY" : 523.54,
- "placementX" : 209.79,
- "placementY" : 523.54,
- "placementWidth" : 370.492,
- "placementHeight" : 217.84,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 370.492,
- "contentHeight" : 217.84,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoprofile[0]",
- "entityName" : "CompactMonoprofile",
- "entityKind" : "SectionNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 209.79,
- "computedY" : 679.73,
- "placementX" : 209.79,
- "placementY" : 679.73,
- "placementWidth" : 350.702,
- "placementHeight" : 61.65,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 350.702,
- "contentHeight" : 61.65,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 9.0,
- "right" : 10.0,
- "bottom" : 10.0,
- "left" : 11.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoprofile[0]/CompactMonoLabelTick[0]",
- "entityName" : "CompactMonoLabelTick",
- "entityKind" : "ShapeNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoprofile[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 220.79,
- "computedY" : 730.18,
- "placementX" : 220.79,
- "placementY" : 730.18,
- "placementWidth" : 22.0,
- "placementHeight" : 2.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 22.0,
- "contentHeight" : 2.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoprofile[0]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoprofile[0]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 220.79,
- "computedY" : 715.26,
- "placementX" : 220.79,
- "placementY" : 715.26,
- "placementWidth" : 35.28,
- "placementHeight" : 10.92,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 35.28,
- "contentHeight" : 10.92,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoprofile[0]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoprofile[0]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 220.79,
- "computedY" : 689.73,
- "placementX" : 220.79,
- "placementY" : 689.73,
- "placementWidth" : 329.702,
- "placementHeight" : 21.53,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 329.702,
- "contentHeight" : 21.53,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoexperience[1]",
- "entityName" : "CompactMonoexperience",
- "entityKind" : "SectionNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 209.79,
- "computedY" : 595.94,
- "placementX" : 209.79,
- "placementY" : 595.94,
- "placementWidth" : 370.492,
- "placementHeight" : 75.79,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 370.492,
- "contentHeight" : 75.79,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 9.0,
- "right" : 10.0,
- "bottom" : 10.0,
- "left" : 11.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoexperience[1]/CompactMonoLabelTick[0]",
- "entityName" : "CompactMonoLabelTick",
- "entityKind" : "ShapeNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoexperience[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 220.79,
- "computedY" : 660.53,
- "placementX" : 220.79,
- "placementY" : 660.53,
- "placementWidth" : 22.0,
- "placementHeight" : 2.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 22.0,
- "contentHeight" : 2.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoexperience[1]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoexperience[1]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 220.79,
- "computedY" : 645.61,
- "placementX" : 220.79,
- "placementY" : 645.61,
- "placementWidth" : 50.4,
- "placementHeight" : 10.92,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 50.4,
- "contentHeight" : 10.92,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoexperience[1]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoexperience[1]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 220.79,
- "computedY" : 631.47,
- "placementX" : 220.79,
- "placementY" : 631.47,
- "placementWidth" : 349.492,
- "placementHeight" : 10.14,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 349.492,
- "contentHeight" : 10.14,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoexperience[1]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoexperience[1]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 220.79,
- "computedY" : 605.94,
- "placementX" : 220.79,
- "placementY" : 605.94,
- "placementWidth" : 326.466,
- "placementHeight" : 21.53,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 326.466,
- "contentHeight" : 21.53,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoselectedprojects[2]",
- "entityName" : "CompactMonoselectedprojects",
- "entityKind" : "SectionNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 209.79,
- "computedY" : 523.54,
- "placementX" : 209.79,
- "placementY" : 523.54,
- "placementWidth" : 326.434,
- "placementHeight" : 64.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 326.434,
- "contentHeight" : 64.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 9.0,
- "right" : 10.0,
- "bottom" : 10.0,
- "left" : 11.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoselectedprojects[2]/CompactMonoLabelTick[0]",
- "entityName" : "CompactMonoLabelTick",
- "entityKind" : "ShapeNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoselectedprojects[2]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 220.79,
- "computedY" : 576.74,
- "placementX" : 220.79,
- "placementY" : 576.74,
- "placementWidth" : 22.0,
- "placementHeight" : 2.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 22.0,
- "contentHeight" : 2.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoselectedprojects[2]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoselectedprojects[2]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 220.79,
- "computedY" : 561.82,
- "placementX" : 220.79,
- "placementY" : 561.82,
- "placementWidth" : 85.68,
- "placementHeight" : 10.92,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 85.68,
- "contentHeight" : 10.92,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoselectedprojects[2]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoselectedprojects[2]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 220.79,
- "computedY" : 547.68,
- "placementX" : 220.79,
- "placementY" : 547.68,
- "placementWidth" : 305.434,
- "placementHeight" : 10.14,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 305.434,
- "contentHeight" : 10.14,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoselectedprojects[2]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "CompactMonoRoot[0]/CompactMonoBody[1]/CompactMonoMain[1]/CompactMonoselectedprojects[2]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 220.79,
- "computedY" : 533.54,
- "placementX" : 220.79,
- "placementY" : 533.54,
- "placementWidth" : 289.041,
- "placementHeight" : 10.14,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 289.041,
- "contentHeight" : 10.14,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_editorial_blue.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_editorial_blue.json
deleted file mode 100644
index fb9981e1e..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_editorial_blue.json
+++ /dev/null
@@ -1,1397 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "EditorialBlueRoot[0]",
- "entityName" : "EditorialBlueRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 363.615,
- "placementX" : 15.0,
- "placementY" : 363.615,
- "placementWidth" : 570.276,
- "placementHeight" : 463.275,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 463.275,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueHeader[0]",
- "entityName" : "EditorialBlueHeader",
- "entityKind" : "SectionNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 770.64,
- "placementX" : 15.0,
- "placementY" : 770.64,
- "placementWidth" : 570.276,
- "placementHeight" : 56.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 56.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueHeader[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 804.54,
- "placementX" : 15.0,
- "placementY" : 804.54,
- "placementWidth" : 570.276,
- "placementHeight" : 20.35,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 20.35,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueHeader[0]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueHeader[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 793.29,
- "placementX" : 15.0,
- "placementY" : 793.29,
- "placementWidth" : 570.276,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueHeader[0]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueHeader[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 782.965,
- "placementX" : 15.0,
- "placementY" : 782.965,
- "placementWidth" : 570.276,
- "placementHeight" : 8.325,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 8.325,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueHeader[0]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueHeader[0]",
- "childIndex" : 3,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 772.64,
- "placementX" : 15.0,
- "placementY" : 772.64,
- "placementWidth" : 570.276,
- "placementHeight" : 8.325,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 8.325,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueProfileRuleTop[1]",
- "entityName" : "EditorialBlueProfileRuleTop",
- "entityKind" : "LineNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 761.64,
- "placementX" : 15.0,
- "placementY" : 761.64,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueProfile[2]",
- "entityName" : "EditorialBlueProfile",
- "entityKind" : "SectionNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 739.465,
- "placementX" : 15.0,
- "placementY" : 739.465,
- "placementWidth" : 137.522,
- "placementHeight" : 22.175,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 137.522,
- "contentHeight" : 22.175,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueProfile[2]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueProfile[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 745.465,
- "placementX" : 15.0,
- "placementY" : 745.465,
- "placementWidth" : 137.522,
- "placementHeight" : 10.175,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 137.522,
- "contentHeight" : 10.175,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueProfileRuleBottom[3]",
- "entityName" : "EditorialBlueProfileRuleBottom",
- "entityKind" : "LineNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 738.465,
- "placementX" : 15.0,
- "placementY" : 738.465,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueProfileBody[4]",
- "entityName" : "EditorialBlueProfileBody",
- "entityKind" : "SectionNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 4,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 721.585,
- "placementX" : 15.0,
- "placementY" : 721.585,
- "placementWidth" : 446.045,
- "placementHeight" : 16.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 446.045,
- "contentHeight" : 16.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueProfileBody[4]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueProfileBody[4]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 721.585,
- "placementX" : 15.0,
- "placementY" : 721.585,
- "placementWidth" : 446.045,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 446.045,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueExperience[5]",
- "entityName" : "EditorialBlueExperience",
- "entityKind" : "SectionNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 5,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 699.41,
- "placementX" : 15.0,
- "placementY" : 699.41,
- "placementWidth" : 129.569,
- "placementHeight" : 22.175,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 129.569,
- "contentHeight" : 22.175,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueExperience[5]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueExperience[5]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 705.41,
- "placementX" : 15.0,
- "placementY" : 705.41,
- "placementWidth" : 129.569,
- "placementHeight" : 10.175,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 129.569,
- "contentHeight" : 10.175,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueExperienceRuleBottom[6]",
- "entityName" : "EditorialBlueExperienceRuleBottom",
- "entityKind" : "LineNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 6,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 698.41,
- "placementX" : 15.0,
- "placementY" : 698.41,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueExperienceBody[7]",
- "entityName" : "EditorialBlueExperienceBody",
- "entityKind" : "SectionNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 7,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 636.67,
- "placementX" : 15.0,
- "placementY" : 636.67,
- "placementWidth" : 418.77,
- "placementHeight" : 61.74,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 418.77,
- "contentHeight" : 61.74,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueExperienceBody[7]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueExperienceBody[7]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 678.235,
- "placementX" : 15.0,
- "placementY" : 678.235,
- "placementWidth" : 378.389,
- "placementHeight" : 10.175,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 378.389,
- "contentHeight" : 10.175,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueExperienceBody[7]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueExperienceBody[7]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 665.54,
- "placementX" : 15.0,
- "placementY" : 665.54,
- "placementWidth" : 80.962,
- "placementHeight" : 8.695,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 80.962,
- "contentHeight" : 8.695,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueExperienceBody[7]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueExperienceBody[7]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 649.365,
- "placementX" : 15.0,
- "placementY" : 649.365,
- "placementWidth" : 418.77,
- "placementHeight" : 10.175,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 418.77,
- "contentHeight" : 10.175,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueExperienceBody[7]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueExperienceBody[7]",
- "childIndex" : 3,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 636.67,
- "placementX" : 15.0,
- "placementY" : 636.67,
- "placementWidth" : 65.838,
- "placementHeight" : 8.695,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 65.838,
- "contentHeight" : 8.695,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueProjects[8]",
- "entityName" : "EditorialBlueProjects",
- "entityKind" : "SectionNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 8,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 614.495,
- "placementX" : 15.0,
- "placementY" : 614.495,
- "placementWidth" : 59.29,
- "placementHeight" : 22.175,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 59.29,
- "contentHeight" : 22.175,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueProjects[8]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueProjects[8]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 620.495,
- "placementX" : 15.0,
- "placementY" : 620.495,
- "placementWidth" : 59.29,
- "placementHeight" : 10.175,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 59.29,
- "contentHeight" : 10.175,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueProjectsRuleBottom[9]",
- "entityName" : "EditorialBlueProjectsRuleBottom",
- "entityKind" : "LineNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 9,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 613.495,
- "placementX" : 15.0,
- "placementY" : 613.495,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueProjectsBody[10]",
- "entityName" : "EditorialBlueProjectsBody",
- "entityKind" : "SectionNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 10,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 578.885,
- "placementX" : 15.0,
- "placementY" : 578.885,
- "placementWidth" : 414.704,
- "placementHeight" : 34.61,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 414.704,
- "contentHeight" : 34.61,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueProjectsBody[10]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueProjectsBody[10]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 593.69,
- "placementX" : 15.0,
- "placementY" : 593.69,
- "placementWidth" : 414.704,
- "placementHeight" : 9.805,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 414.704,
- "contentHeight" : 9.805,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueProjectsBody[10]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueProjectsBody[10]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 578.885,
- "placementX" : 15.0,
- "placementY" : 578.885,
- "placementWidth" : 392.889,
- "placementHeight" : 9.805,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 392.889,
- "contentHeight" : 9.805,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueEducation[11]",
- "entityName" : "EditorialBlueEducation",
- "entityKind" : "SectionNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 11,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 556.71,
- "placementX" : 15.0,
- "placementY" : 556.71,
- "placementWidth" : 65.384,
- "placementHeight" : 22.175,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 65.384,
- "contentHeight" : 22.175,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueEducation[11]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueEducation[11]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 562.71,
- "placementX" : 15.0,
- "placementY" : 562.71,
- "placementWidth" : 65.384,
- "placementHeight" : 10.175,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 65.384,
- "contentHeight" : 10.175,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueEducationRuleBottom[12]",
- "entityName" : "EditorialBlueEducationRuleBottom",
- "entityKind" : "LineNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 12,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 555.71,
- "placementX" : 15.0,
- "placementY" : 555.71,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueEducationBody[13]",
- "entityName" : "EditorialBlueEducationBody",
- "entityKind" : "SectionNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 13,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 521.1,
- "placementX" : 15.0,
- "placementY" : 521.1,
- "placementWidth" : 277.912,
- "placementHeight" : 34.61,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 277.912,
- "contentHeight" : 34.61,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueEducationBody[13]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueEducationBody[13]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 535.905,
- "placementX" : 15.0,
- "placementY" : 535.905,
- "placementWidth" : 277.912,
- "placementHeight" : 9.805,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 277.912,
- "contentHeight" : 9.805,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueEducationBody[13]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueEducationBody[13]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 521.1,
- "placementX" : 15.0,
- "placementY" : 521.1,
- "placementWidth" : 250.257,
- "placementHeight" : 9.805,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 250.257,
- "contentHeight" : 9.805,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueSkills[14]",
- "entityName" : "EditorialBlueSkills",
- "entityKind" : "SectionNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 14,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 498.925,
- "placementX" : 15.0,
- "placementY" : 498.925,
- "placementWidth" : 64.79,
- "placementHeight" : 22.175,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 64.79,
- "contentHeight" : 22.175,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueSkills[14]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueSkills[14]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 504.925,
- "placementX" : 15.0,
- "placementY" : 504.925,
- "placementWidth" : 64.79,
- "placementHeight" : 10.175,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 64.79,
- "contentHeight" : 10.175,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueSkillsRuleBottom[15]",
- "entityName" : "EditorialBlueSkillsRuleBottom",
- "entityKind" : "LineNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 15,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 497.925,
- "placementX" : 15.0,
- "placementY" : 497.925,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueSkillsBody[16]",
- "entityName" : "EditorialBlueSkillsBody",
- "entityKind" : "SectionNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 16,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 434.95,
- "placementX" : 15.0,
- "placementY" : 434.95,
- "placementWidth" : 454.753,
- "placementHeight" : 62.975,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 454.753,
- "contentHeight" : 62.975,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueSkillsBody[16]/EditorialBlueSkillsTable[0]",
- "entityName" : "EditorialBlueSkillsTable",
- "entityKind" : "TableNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueSkillsBody[16]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 434.95,
- "placementX" : 15.0,
- "placementY" : 434.95,
- "placementWidth" : 454.753,
- "placementHeight" : 54.975,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 454.753,
- "contentHeight" : 54.975,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueAdditional[17]",
- "entityName" : "EditorialBlueAdditional",
- "entityKind" : "SectionNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 17,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 412.775,
- "placementX" : 15.0,
- "placementY" : 412.775,
- "placementWidth" : 67.826,
- "placementHeight" : 22.175,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 67.826,
- "contentHeight" : 22.175,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueAdditional[17]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueAdditional[17]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 418.775,
- "placementX" : 15.0,
- "placementY" : 418.775,
- "placementWidth" : 67.826,
- "placementHeight" : 10.175,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 67.826,
- "contentHeight" : 10.175,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueAdditionalRuleBottom[18]",
- "entityName" : "EditorialBlueAdditionalRuleBottom",
- "entityKind" : "LineNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 18,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 411.775,
- "placementX" : 15.0,
- "placementY" : 411.775,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueAdditionalBody[19]",
- "entityName" : "EditorialBlueAdditionalBody",
- "entityKind" : "SectionNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 19,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 382.385,
- "placementX" : 15.0,
- "placementY" : 382.385,
- "placementWidth" : 313.988,
- "placementHeight" : 29.39,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 313.988,
- "contentHeight" : 29.39,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueAdditionalBody[19]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueAdditionalBody[19]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 394.08,
- "placementX" : 15.0,
- "placementY" : 394.08,
- "placementWidth" : 313.988,
- "placementHeight" : 8.695,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 313.988,
- "contentHeight" : 8.695,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueAdditionalBody[19]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueAdditionalBody[19]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 382.385,
- "placementX" : 15.0,
- "placementY" : 382.385,
- "placementWidth" : 294.126,
- "placementHeight" : 8.695,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 294.126,
- "contentHeight" : 8.695,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueFooterRule[20]",
- "entityName" : "EditorialBlueFooterRule",
- "entityKind" : "LineNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 20,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 375.385,
- "placementX" : 15.0,
- "placementY" : 375.385,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueFooter[21]",
- "entityName" : "EditorialBlueFooter",
- "entityKind" : "SectionNode",
- "parentPath" : "EditorialBlueRoot[0]",
- "childIndex" : 21,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 363.615,
- "placementX" : 15.0,
- "placementY" : 363.615,
- "placementWidth" : 570.276,
- "placementHeight" : 11.77,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 11.77,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EditorialBlueRoot[0]/EditorialBlueFooter[21]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EditorialBlueRoot[0]/EditorialBlueFooter[21]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 363.615,
- "placementX" : 15.0,
- "placementY" : 363.615,
- "placementWidth" : 570.276,
- "placementHeight" : 7.77,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 7.77,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_engineering_resume.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_engineering_resume.json
deleted file mode 100644
index d83273ced..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_engineering_resume.json
+++ /dev/null
@@ -1,1517 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "EngineeringResumeRoot[0]",
- "entityName" : "EngineeringResumeRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 519.93,
- "placementX" : 15.0,
- "placementY" : 519.93,
- "placementWidth" : 570.276,
- "placementHeight" : 306.96,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 306.96,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]",
- "entityName" : "EngineeringResumeHeader",
- "entityKind" : "SectionNode",
- "parentPath" : "EngineeringResumeRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 749.69,
- "placementX" : 15.0,
- "placementY" : 749.69,
- "placementWidth" : 570.276,
- "placementHeight" : 77.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 77.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 13.0,
- "right" : 15.0,
- "bottom" : 13.0,
- "left" : 15.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]",
- "entityName" : "EngineeringResumeHeaderRow",
- "entityKind" : "RowNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 30.0,
- "computedY" : 762.69,
- "placementX" : 30.0,
- "placementY" : 762.69,
- "placementWidth" : 540.276,
- "placementHeight" : 51.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 540.276,
- "contentHeight" : 51.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]/EngineeringResumeIdentity[0]",
- "entityName" : "EngineeringResumeIdentity",
- "entityKind" : "SectionNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 30.0,
- "computedY" : 772.37,
- "placementX" : 30.0,
- "placementY" : 772.37,
- "placementWidth" : 236.278,
- "placementHeight" : 41.52,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 236.278,
- "contentHeight" : 41.52,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]/EngineeringResumeIdentity[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]/EngineeringResumeIdentity[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 30.0,
- "computedY" : 784.49,
- "placementX" : 30.0,
- "placementY" : 784.49,
- "placementWidth" : 236.278,
- "placementHeight" : 29.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 236.278,
- "contentHeight" : 29.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]/EngineeringResumeIdentity[0]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]/EngineeringResumeIdentity[0]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 30.0,
- "computedY" : 772.37,
- "placementX" : 30.0,
- "placementY" : 772.37,
- "placementWidth" : 192.82,
- "placementHeight" : 9.12,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 192.82,
- "contentHeight" : 9.12,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]/EngineeringResumeContact[1]",
- "entityName" : "EngineeringResumeContact",
- "entityKind" : "SectionNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 345.758,
- "computedY" : 762.69,
- "placementX" : 345.758,
- "placementY" : 762.69,
- "placementWidth" : 224.517,
- "placementHeight" : 51.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 224.517,
- "contentHeight" : 51.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]/EngineeringResumeContact[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]/EngineeringResumeContact[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 345.758,
- "computedY" : 805.25,
- "placementX" : 345.758,
- "placementY" : 805.25,
- "placementWidth" : 224.517,
- "placementHeight" : 8.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 224.517,
- "contentHeight" : 8.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]/EngineeringResumeContact[1]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]/EngineeringResumeContact[1]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 345.758,
- "computedY" : 794.61,
- "placementX" : 345.758,
- "placementY" : 794.61,
- "placementWidth" : 224.517,
- "placementHeight" : 8.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 224.517,
- "contentHeight" : 8.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]/EngineeringResumeContact[1]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]/EngineeringResumeContact[1]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 345.758,
- "computedY" : 783.97,
- "placementX" : 345.758,
- "placementY" : 783.97,
- "placementWidth" : 224.517,
- "placementHeight" : 8.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 224.517,
- "contentHeight" : 8.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]/EngineeringResumeContact[1]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]/EngineeringResumeContact[1]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 345.758,
- "computedY" : 773.33,
- "placementX" : 345.758,
- "placementY" : 773.33,
- "placementWidth" : 224.517,
- "placementHeight" : 8.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 224.517,
- "contentHeight" : 8.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]/EngineeringResumeContact[1]/ParagraphNode[4]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeHeader[0]/EngineeringResumeHeaderRow[0]/EngineeringResumeContact[1]",
- "childIndex" : 4,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 345.758,
- "computedY" : 762.69,
- "placementX" : 345.758,
- "placementY" : 762.69,
- "placementWidth" : 224.517,
- "placementHeight" : 8.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 224.517,
- "contentHeight" : 8.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]",
- "entityName" : "EngineeringResumeBody",
- "entityKind" : "RowNode",
- "parentPath" : "EngineeringResumeRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 519.93,
- "placementX" : 15.0,
- "placementY" : 519.93,
- "placementWidth" : 570.276,
- "placementHeight" : 221.76,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 221.76,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]",
- "entityName" : "EngineeringResumeRail",
- "entityKind" : "SectionNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 520.97,
- "placementX" : 15.0,
- "placementY" : 520.97,
- "placementWidth" : 175.913,
- "placementHeight" : 220.72,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 175.913,
- "contentHeight" : 220.72,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 10.0,
- "right" : 10.0,
- "bottom" : 11.0,
- "left" : 10.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeSkills[0]",
- "entityName" : "EngineeringResumeSkills",
- "entityKind" : "SectionNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 25.0,
- "computedY" : 659.01,
- "placementX" : 25.0,
- "placementY" : 659.01,
- "placementWidth" : 141.298,
- "placementHeight" : 72.68,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 141.298,
- "contentHeight" : 72.68,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeSkills[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeSkills[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 722.81,
- "placementX" : 25.0,
- "placementY" : 722.81,
- "placementWidth" : 42.269,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 42.269,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeSkills[0]/LineNode[1]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeSkills[0]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 718.81,
- "placementX" : 25.0,
- "placementY" : 718.81,
- "placementWidth" : 82.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 82.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeSkills[0]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeSkills[0]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 705.53,
- "placementX" : 25.0,
- "placementY" : 705.53,
- "placementWidth" : 110.759,
- "placementHeight" : 8.28,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 110.759,
- "contentHeight" : 8.28,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 1.8,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeSkills[0]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeSkills[0]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 683.17,
- "placementX" : 25.0,
- "placementY" : 683.17,
- "placementWidth" : 141.298,
- "placementHeight" : 17.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 141.298,
- "contentHeight" : 17.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 1.8,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeSkills[0]/ParagraphNode[4]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeSkills[0]",
- "childIndex" : 4,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 660.81,
- "placementX" : 25.0,
- "placementY" : 660.81,
- "placementWidth" : 120.778,
- "placementHeight" : 17.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 120.778,
- "contentHeight" : 17.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 1.8,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeEducation[1]",
- "entityName" : "EngineeringResumeEducation",
- "entityKind" : "SectionNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 25.0,
- "computedY" : 599.81,
- "placementX" : 25.0,
- "placementY" : 599.81,
- "placementWidth" : 155.913,
- "placementHeight" : 51.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 155.913,
- "contentHeight" : 51.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeEducation[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeEducation[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 642.13,
- "placementX" : 25.0,
- "placementY" : 642.13,
- "placementWidth" : 34.38,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 34.38,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeEducation[1]/LineNode[1]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeEducation[1]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 638.13,
- "placementX" : 25.0,
- "placementY" : 638.13,
- "placementWidth" : 82.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 82.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeEducation[1]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeEducation[1]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 615.75,
- "placementX" : 25.0,
- "placementY" : 615.75,
- "placementWidth" : 153.089,
- "placementHeight" : 17.38,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 153.089,
- "contentHeight" : 17.38,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.3,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeEducation[1]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeEducation[1]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 602.11,
- "placementX" : 25.0,
- "placementY" : 602.11,
- "placementWidth" : 155.913,
- "placementHeight" : 8.34,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 155.913,
- "contentHeight" : 8.34,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.3,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeAdditional[2]",
- "entityName" : "EngineeringResumeAdditional",
- "entityKind" : "SectionNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 25.0,
- "computedY" : 531.97,
- "placementX" : 25.0,
- "placementY" : 531.97,
- "placementWidth" : 153.671,
- "placementHeight" : 59.84,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 153.671,
- "contentHeight" : 59.84,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeAdditional[2]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeAdditional[2]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 582.93,
- "placementX" : 25.0,
- "placementY" : 582.93,
- "placementWidth" : 28.771,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 28.771,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeAdditional[2]/LineNode[1]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeAdditional[2]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 578.93,
- "placementX" : 25.0,
- "placementY" : 578.93,
- "placementWidth" : 82.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 82.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeAdditional[2]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeAdditional[2]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 556.25,
- "placementX" : 25.0,
- "placementY" : 556.25,
- "placementWidth" : 153.671,
- "placementHeight" : 17.68,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 153.671,
- "contentHeight" : 17.68,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 1.8,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeAdditional[2]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeRail[0]/EngineeringResumeAdditional[2]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 533.77,
- "placementX" : 25.0,
- "placementY" : 533.77,
- "placementWidth" : 123.043,
- "placementHeight" : 17.68,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 123.043,
- "contentHeight" : 17.68,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 1.8,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]",
- "entityName" : "EngineeringResumeMain",
- "entityKind" : "SectionNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 205.154,
- "computedY" : 519.93,
- "placementX" : 205.154,
- "placementY" : 519.93,
- "placementWidth" : 353.382,
- "placementHeight" : 221.76,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 353.382,
- "contentHeight" : 221.76,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProfile[0]",
- "entityName" : "EngineeringResumeProfile",
- "entityKind" : "SectionNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 205.154,
- "computedY" : 692.29,
- "placementX" : 205.154,
- "placementY" : 692.29,
- "placementWidth" : 353.382,
- "placementHeight" : 49.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 353.382,
- "contentHeight" : 49.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 10.0,
- "bottom" : 8.0,
- "left" : 10.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProfile[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProfile[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 215.154,
- "computedY" : 724.09,
- "placementX" : 215.154,
- "placementY" : 724.09,
- "placementWidth" : 80.976,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 80.976,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProfile[0]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProfile[0]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 215.154,
- "computedY" : 700.29,
- "placementX" : 215.154,
- "placementY" : 700.29,
- "placementWidth" : 333.382,
- "placementHeight" : 19.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 333.382,
- "contentHeight" : 19.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]",
- "entityName" : "EngineeringResumeExperience",
- "entityKind" : "SectionNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 205.154,
- "computedY" : 591.93,
- "placementX" : 205.154,
- "placementY" : 591.93,
- "placementWidth" : 281.027,
- "placementHeight" : 92.36,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 281.027,
- "contentHeight" : 92.36,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 205.154,
- "computedY" : 674.93,
- "placementX" : 205.154,
- "placementY" : 674.93,
- "placementWidth" : 90.792,
- "placementHeight" : 9.36,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 90.792,
- "contentHeight" : 9.36,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]/LineNode[1]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 205.154,
- "computedY" : 668.93,
- "placementX" : 205.154,
- "placementY" : 668.93,
- "placementWidth" : 176.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 176.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 1.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]/EngineeringResumeRoleCard[2]",
- "entityName" : "EngineeringResumeRoleCard",
- "entityKind" : "SectionNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 205.154,
- "computedY" : 629.93,
- "placementX" : 205.154,
- "placementY" : 629.93,
- "placementWidth" : 258.926,
- "placementHeight" : 33.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 258.926,
- "contentHeight" : 33.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 6.0,
- "right" : 8.0,
- "bottom" : 6.0,
- "left" : 8.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]/EngineeringResumeRoleCard[2]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]/EngineeringResumeRoleCard[2]",
- "childIndex" : 0,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 213.154,
- "computedY" : 647.33,
- "placementX" : 213.154,
- "placementY" : 647.33,
- "placementWidth" : 242.926,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 242.926,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]/EngineeringResumeRoleCard[2]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]/EngineeringResumeRoleCard[2]",
- "childIndex" : 1,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 213.154,
- "computedY" : 635.93,
- "placementX" : 213.154,
- "placementY" : 635.93,
- "placementWidth" : 60.529,
- "placementHeight" : 8.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 60.529,
- "contentHeight" : 8.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]/EngineeringResumeRoleCard[3]",
- "entityName" : "EngineeringResumeRoleCard",
- "entityKind" : "SectionNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 205.154,
- "computedY" : 591.93,
- "placementX" : 205.154,
- "placementY" : 591.93,
- "placementWidth" : 281.027,
- "placementHeight" : 33.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 281.027,
- "contentHeight" : 33.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 6.0,
- "right" : 8.0,
- "bottom" : 6.0,
- "left" : 8.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]/EngineeringResumeRoleCard[3]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]/EngineeringResumeRoleCard[3]",
- "childIndex" : 0,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 213.154,
- "computedY" : 609.33,
- "placementX" : 213.154,
- "placementY" : 609.33,
- "placementWidth" : 265.027,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 265.027,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]/EngineeringResumeRoleCard[3]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeExperience[1]/EngineeringResumeRoleCard[3]",
- "childIndex" : 1,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 213.154,
- "computedY" : 597.93,
- "placementX" : 213.154,
- "placementY" : 597.93,
- "placementWidth" : 47.866,
- "placementHeight" : 8.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 47.866,
- "contentHeight" : 8.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProjects[2]",
- "entityName" : "EngineeringResumeProjects",
- "entityKind" : "SectionNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 205.154,
- "computedY" : 519.93,
- "placementX" : 205.154,
- "placementY" : 519.93,
- "placementWidth" : 289.337,
- "placementHeight" : 64.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 289.337,
- "contentHeight" : 64.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProjects[2]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProjects[2]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 205.154,
- "computedY" : 574.57,
- "placementX" : 205.154,
- "placementY" : 574.57,
- "placementWidth" : 77.314,
- "placementHeight" : 9.36,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 77.314,
- "contentHeight" : 9.36,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProjects[2]/LineNode[1]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProjects[2]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 205.154,
- "computedY" : 568.57,
- "placementX" : 205.154,
- "placementY" : 568.57,
- "placementWidth" : 176.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 176.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 1.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProjects[2]/EngineeringResumeProjectCard[2]",
- "entityName" : "EngineeringResumeProjectCard",
- "entityKind" : "SectionNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProjects[2]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 205.154,
- "computedY" : 543.75,
- "placementX" : 205.154,
- "placementY" : 543.75,
- "placementWidth" : 289.337,
- "placementHeight" : 18.82,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 289.337,
- "contentHeight" : 18.82,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 5.0,
- "right" : 8.0,
- "bottom" : 5.0,
- "left" : 8.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProjects[2]/EngineeringResumeProjectCard[2]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProjects[2]/EngineeringResumeProjectCard[2]",
- "childIndex" : 0,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 213.154,
- "computedY" : 548.75,
- "placementX" : 213.154,
- "placementY" : 548.75,
- "placementWidth" : 273.337,
- "placementHeight" : 8.82,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 273.337,
- "contentHeight" : 8.82,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProjects[2]/EngineeringResumeProjectCard[3]",
- "entityName" : "EngineeringResumeProjectCard",
- "entityKind" : "SectionNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProjects[2]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 205.154,
- "computedY" : 519.93,
- "placementX" : 205.154,
- "placementY" : 519.93,
- "placementWidth" : 275.46,
- "placementHeight" : 18.82,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 275.46,
- "contentHeight" : 18.82,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 5.0,
- "right" : 8.0,
- "bottom" : 5.0,
- "left" : 8.0
- }
- }, {
- "path" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProjects[2]/EngineeringResumeProjectCard[3]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "EngineeringResumeRoot[0]/EngineeringResumeBody[1]/EngineeringResumeMain[1]/EngineeringResumeProjects[2]/EngineeringResumeProjectCard[3]",
- "childIndex" : 0,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 213.154,
- "computedY" : 524.93,
- "placementX" : 213.154,
- "placementY" : 524.93,
- "placementWidth" : 259.46,
- "placementHeight" : 8.82,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 259.46,
- "contentHeight" : 8.82,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_executive.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_executive.json
deleted file mode 100644
index 5ee738278..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_executive.json
+++ /dev/null
@@ -1,857 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "ExecutiveRoot[0]",
- "entityName" : "ExecutiveRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 390.35,
- "placementX" : 15.0,
- "placementY" : 390.35,
- "placementWidth" : 570.276,
- "placementHeight" : 436.54,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 436.54,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/ExecutiveHeader[0]",
- "entityName" : "ExecutiveHeader",
- "entityKind" : "SectionNode",
- "parentPath" : "ExecutiveRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 755.87,
- "placementX" : 15.0,
- "placementY" : 755.87,
- "placementWidth" : 570.276,
- "placementHeight" : 71.02,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 71.02,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/ExecutiveHeader[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/ExecutiveHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 793.29,
- "placementX" : 15.0,
- "placementY" : 793.29,
- "placementWidth" : 258.48,
- "placementHeight" : 33.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 258.48,
- "contentHeight" : 33.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/ExecutiveHeader[0]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/ExecutiveHeader[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 778.37,
- "placementX" : 15.0,
- "placementY" : 778.37,
- "placementWidth" : 129.921,
- "placementHeight" : 10.92,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 129.921,
- "contentHeight" : 10.92,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/ExecutiveHeader[0]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/ExecutiveHeader[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 763.97,
- "placementX" : 15.0,
- "placementY" : 763.97,
- "placementWidth" : 153.995,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 153.995,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/ExecutiveHeader[0]/ExecutiveHeaderRule[3]",
- "entityName" : "ExecutiveHeaderRule",
- "entityKind" : "LineNode",
- "parentPath" : "ExecutiveRoot[0]/ExecutiveHeader[0]",
- "childIndex" : 3,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 755.87,
- "placementX" : 15.0,
- "placementY" : 755.87,
- "placementWidth" : 570.276,
- "placementHeight" : 1.1,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.1,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveprofessionalsummary[1]",
- "entityName" : "Executiveprofessionalsummary",
- "entityKind" : "SectionNode",
- "parentPath" : "ExecutiveRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 710.35,
- "placementX" : 15.0,
- "placementY" : 710.35,
- "placementWidth" : 441.475,
- "placementHeight" : 37.52,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 441.475,
- "contentHeight" : 37.52,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveprofessionalsummary[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/Executiveprofessionalsummary[1]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 726.75,
- "placementX" : 15.0,
- "placementY" : 726.75,
- "placementWidth" : 138.834,
- "placementHeight" : 15.12,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 138.834,
- "contentHeight" : 15.12,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveprofessionalsummary[1]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/Executiveprofessionalsummary[1]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 710.35,
- "placementX" : 15.0,
- "placementY" : 710.35,
- "placementWidth" : 441.475,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 441.475,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executivetechnicalskills[2]",
- "entityName" : "Executivetechnicalskills",
- "entityKind" : "SectionNode",
- "parentPath" : "ExecutiveRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 638.03,
- "placementX" : 15.0,
- "placementY" : 638.03,
- "placementWidth" : 284.544,
- "placementHeight" : 64.32,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 284.544,
- "contentHeight" : 64.32,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executivetechnicalskills[2]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/Executivetechnicalskills[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 681.23,
- "placementX" : 15.0,
- "placementY" : 681.23,
- "placementWidth" : 97.589,
- "placementHeight" : 15.12,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 97.589,
- "contentHeight" : 15.12,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executivetechnicalskills[2]/ListNode[1]",
- "entityName" : null,
- "entityKind" : "ListNode",
- "parentPath" : "ExecutiveRoot[0]/Executivetechnicalskills[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 638.03,
- "placementX" : 15.0,
- "placementY" : 638.03,
- "placementWidth" : 284.544,
- "placementHeight" : 38.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 284.544,
- "contentHeight" : 38.2,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveeducationcertifications[3]",
- "entityName" : "Executiveeducationcertifications",
- "entityKind" : "SectionNode",
- "parentPath" : "ExecutiveRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 576.11,
- "placementX" : 15.0,
- "placementY" : 576.11,
- "placementWidth" : 240.939,
- "placementHeight" : 53.92,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 240.939,
- "contentHeight" : 53.92,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveeducationcertifications[3]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/Executiveeducationcertifications[3]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 608.91,
- "placementX" : 15.0,
- "placementY" : 608.91,
- "placementWidth" : 165.661,
- "placementHeight" : 15.12,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 165.661,
- "contentHeight" : 15.12,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveeducationcertifications[3]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/Executiveeducationcertifications[3]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 592.51,
- "placementX" : 15.0,
- "placementY" : 592.51,
- "placementWidth" : 240.939,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 240.939,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveeducationcertifications[3]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/Executiveeducationcertifications[3]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 576.11,
- "placementX" : 15.0,
- "placementY" : 576.11,
- "placementWidth" : 214.719,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 214.719,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveprojects[4]",
- "entityName" : "Executiveprojects",
- "entityKind" : "SectionNode",
- "parentPath" : "ExecutiveRoot[0]",
- "childIndex" : 4,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 514.19,
- "placementX" : 15.0,
- "placementY" : 514.19,
- "placementWidth" : 344.537,
- "placementHeight" : 53.92,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 344.537,
- "contentHeight" : 53.92,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveprojects[4]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/Executiveprojects[4]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 546.99,
- "placementX" : 15.0,
- "placementY" : 546.99,
- "placementWidth" : 55.609,
- "placementHeight" : 15.12,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 55.609,
- "contentHeight" : 15.12,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveprojects[4]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/Executiveprojects[4]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 530.59,
- "placementX" : 15.0,
- "placementY" : 530.59,
- "placementWidth" : 344.537,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 344.537,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveprojects[4]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/Executiveprojects[4]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 514.19,
- "placementX" : 15.0,
- "placementY" : 514.19,
- "placementWidth" : 326.107,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 326.107,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveprofessionalexperience[5]",
- "entityName" : "Executiveprofessionalexperience",
- "entityKind" : "SectionNode",
- "parentPath" : "ExecutiveRoot[0]",
- "childIndex" : 5,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 452.27,
- "placementX" : 15.0,
- "placementY" : 452.27,
- "placementWidth" : 408.614,
- "placementHeight" : 53.92,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 408.614,
- "contentHeight" : 53.92,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveprofessionalexperience[5]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/Executiveprofessionalexperience[5]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 485.07,
- "placementX" : 15.0,
- "placementY" : 485.07,
- "placementWidth" : 146.912,
- "placementHeight" : 15.12,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 146.912,
- "contentHeight" : 15.12,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveprofessionalexperience[5]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/Executiveprofessionalexperience[5]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 468.67,
- "placementX" : 15.0,
- "placementY" : 468.67,
- "placementWidth" : 392.92,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 392.92,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveprofessionalexperience[5]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/Executiveprofessionalexperience[5]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 452.27,
- "placementX" : 15.0,
- "placementY" : 452.27,
- "placementWidth" : 408.614,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 408.614,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveadditionalinformation[6]",
- "entityName" : "Executiveadditionalinformation",
- "entityKind" : "SectionNode",
- "parentPath" : "ExecutiveRoot[0]",
- "childIndex" : 6,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 390.35,
- "placementX" : 15.0,
- "placementY" : 390.35,
- "placementWidth" : 310.698,
- "placementHeight" : 53.92,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 310.698,
- "contentHeight" : 53.92,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveadditionalinformation[6]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/Executiveadditionalinformation[6]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 423.15,
- "placementX" : 15.0,
- "placementY" : 423.15,
- "placementWidth" : 145.228,
- "placementHeight" : 15.12,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 145.228,
- "contentHeight" : 15.12,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveadditionalinformation[6]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/Executiveadditionalinformation[6]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 406.75,
- "placementX" : 15.0,
- "placementY" : 406.75,
- "placementWidth" : 310.698,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 310.698,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ExecutiveRoot[0]/Executiveadditionalinformation[6]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "ExecutiveRoot[0]/Executiveadditionalinformation[6]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 390.35,
- "placementX" : 15.0,
- "placementY" : 390.35,
- "placementWidth" : 294.595,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 294.595,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_modern_professional.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_modern_professional.json
deleted file mode 100644
index a6b11c771..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_modern_professional.json
+++ /dev/null
@@ -1,1067 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "layout.singleColumn[0]",
- "entityName" : "layout.singleColumn",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 432.845,
- "placementX" : 15.0,
- "placementY" : 432.845,
- "placementWidth" : 570.276,
- "placementHeight" : 394.045,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 394.045,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Header[0]",
- "entityName" : "Header",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.singleColumn[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 777.415,
- "placementX" : 15.0,
- "placementY" : 777.415,
- "placementWidth" : 570.276,
- "placementHeight" : 49.475,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 49.475,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Header[0]/Header.name[0]",
- "entityName" : "Header.name",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Header[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 800.99,
- "placementX" : 15.0,
- "placementY" : 800.99,
- "placementWidth" : 570.276,
- "placementHeight" : 25.9,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 25.9,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 3.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Header[0]/Header.contact[1]",
- "entityName" : "Header.contact",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Header[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 789.665,
- "placementX" : 15.0,
- "placementY" : 789.665,
- "placementWidth" : 570.276,
- "placementHeight" : 8.325,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 8.325,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 3.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Header[0]/Header.links[2]",
- "entityName" : "Header.links",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Header[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 777.415,
- "placementX" : 15.0,
- "placementY" : 777.415,
- "placementWidth" : 570.276,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Professional Summary[1]",
- "entityName" : "Professional Summary",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.singleColumn[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 739.07,
- "placementX" : 15.0,
- "placementY" : 739.07,
- "placementWidth" : 476.63,
- "placementHeight" : 31.345,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 476.63,
- "contentHeight" : 31.345,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Professional Summary[1]/Professional Summary.heading[0]",
- "entityName" : "Professional Summary.heading",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Professional Summary[1]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 750.32,
- "placementX" : 15.0,
- "placementY" : 750.32,
- "placementWidth" : 188.564,
- "placementHeight" : 16.095,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 188.564,
- "contentHeight" : 16.095,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Professional Summary[1]/Professional Summary.body[1]",
- "entityName" : "Professional Summary.body",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Professional Summary[1]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 739.07,
- "placementX" : 15.0,
- "placementY" : 739.07,
- "placementWidth" : 476.63,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 476.63,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 12.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Technical Skills[2]",
- "entityName" : "Technical Skills",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.singleColumn[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 678.225,
- "placementX" : 15.0,
- "placementY" : 678.225,
- "placementWidth" : 314.51,
- "placementHeight" : 53.845,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 314.51,
- "contentHeight" : 53.845,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Technical Skills[2]/Technical Skills.heading[0]",
- "entityName" : "Technical Skills.heading",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Technical Skills[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 711.975,
- "placementX" : 15.0,
- "placementY" : 711.975,
- "placementWidth" : 130.57,
- "placementHeight" : 16.095,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 130.57,
- "contentHeight" : 16.095,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Technical Skills[2]/Technical Skills.bullet[1]",
- "entityName" : "Technical Skills.bullet",
- "entityKind" : "ListNode",
- "parentPath" : "layout.singleColumn[0]/Technical Skills[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 678.225,
- "placementX" : 15.0,
- "placementY" : 678.225,
- "placementWidth" : 314.51,
- "placementHeight" : 31.75,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 314.51,
- "contentHeight" : 31.75,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 12.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Education & Certifications[3]",
- "entityName" : "Education & Certifications",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.singleColumn[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 606.13,
- "placementX" : 15.0,
- "placementY" : 606.13,
- "placementWidth" : 217.535,
- "placementHeight" : 65.095,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 217.535,
- "contentHeight" : 65.095,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Education & Certifications[3]/Education & Certifications.heading[0]",
- "entityName" : "Education & Certifications.heading",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Education & Certifications[3]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 651.13,
- "placementX" : 15.0,
- "placementY" : 651.13,
- "placementWidth" : 217.535,
- "placementHeight" : 16.095,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 217.535,
- "contentHeight" : 16.095,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Education & Certifications[3]/Education & Certifications.body[1]",
- "entityName" : "Education & Certifications.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.singleColumn[0]/Education & Certifications[3]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 606.13,
- "placementX" : 15.0,
- "placementY" : 606.13,
- "placementWidth" : 164.43,
- "placementHeight" : 43.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 164.43,
- "contentHeight" : 43.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 12.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Education & Certifications[3]/Education & Certifications.body[1]/Education & Certifications.item[0].title[0]",
- "entityName" : "Education & Certifications.item[0].title",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Education & Certifications[3]/Education & Certifications.body[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 27.0,
- "computedY" : 639.88,
- "placementX" : 27.0,
- "placementY" : 639.88,
- "placementWidth" : 111.14,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 111.14,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Education & Certifications[3]/Education & Certifications.body[1]/Education & Certifications.item[0].body[1]",
- "entityName" : "Education & Certifications.item[0].body",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Education & Certifications[3]/Education & Certifications.body[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 27.0,
- "computedY" : 628.63,
- "placementX" : 27.0,
- "placementY" : 628.63,
- "placementWidth" : 152.43,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 152.43,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 12.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Education & Certifications[3]/Education & Certifications.body[1]/Education & Certifications.item[1].title[2]",
- "entityName" : "Education & Certifications.item[1].title",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Education & Certifications[3]/Education & Certifications.body[1]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 27.0,
- "computedY" : 617.38,
- "placementX" : 27.0,
- "placementY" : 617.38,
- "placementWidth" : 117.27,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 117.27,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Education & Certifications[3]/Education & Certifications.body[1]/Education & Certifications.item[1].body[3]",
- "entityName" : "Education & Certifications.item[1].body",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Education & Certifications[3]/Education & Certifications.body[1]",
- "childIndex" : 3,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 27.0,
- "computedY" : 606.13,
- "placementX" : 27.0,
- "placementY" : 606.13,
- "placementWidth" : 121.87,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 121.87,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 12.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Projects[4]",
- "entityName" : "Projects",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.singleColumn[0]",
- "childIndex" : 4,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 534.035,
- "placementX" : 15.0,
- "placementY" : 534.035,
- "placementWidth" : 311.35,
- "placementHeight" : 65.095,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 311.35,
- "contentHeight" : 65.095,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Projects[4]/Projects.heading[0]",
- "entityName" : "Projects.heading",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Projects[4]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 579.035,
- "placementX" : 15.0,
- "placementY" : 579.035,
- "placementWidth" : 68.66,
- "placementHeight" : 16.095,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 68.66,
- "contentHeight" : 16.095,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Projects[4]/Projects.body[1]",
- "entityName" : "Projects.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.singleColumn[0]/Projects[4]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 534.035,
- "placementX" : 15.0,
- "placementY" : 534.035,
- "placementWidth" : 311.35,
- "placementHeight" : 43.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 311.35,
- "contentHeight" : 43.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 12.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Projects[4]/Projects.body[1]/Projects.item[0].title[0]",
- "entityName" : "Projects.item[0].title",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Projects[4]/Projects.body[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 27.0,
- "computedY" : 567.785,
- "placementX" : 27.0,
- "placementY" : 567.785,
- "placementWidth" : 75.01,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 75.01,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Projects[4]/Projects.body[1]/Projects.item[0].body[1]",
- "entityName" : "Projects.item[0].body",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Projects[4]/Projects.body[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 27.0,
- "computedY" : 556.535,
- "placementX" : 27.0,
- "placementY" : 556.535,
- "placementWidth" : 299.35,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 299.35,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 12.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Projects[4]/Projects.body[1]/Projects.item[1].title[2]",
- "entityName" : "Projects.item[1].title",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Projects[4]/Projects.body[1]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 27.0,
- "computedY" : 545.285,
- "placementX" : 27.0,
- "placementY" : 545.285,
- "placementWidth" : 77.79,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 77.79,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Projects[4]/Projects.body[1]/Projects.item[1].body[3]",
- "entityName" : "Projects.item[1].body",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Projects[4]/Projects.body[1]",
- "childIndex" : 3,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 27.0,
- "computedY" : 534.035,
- "placementX" : 27.0,
- "placementY" : 534.035,
- "placementWidth" : 274.36,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 274.36,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 12.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Professional Experience[5]",
- "entityName" : "Professional Experience",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.singleColumn[0]",
- "childIndex" : 5,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 482.44,
- "placementX" : 15.0,
- "placementY" : 482.44,
- "placementWidth" : 455.91,
- "placementHeight" : 44.595,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 455.91,
- "contentHeight" : 44.595,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Professional Experience[5]/Professional Experience.heading[0]",
- "entityName" : "Professional Experience.heading",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Professional Experience[5]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 506.94,
- "placementX" : 15.0,
- "placementY" : 506.94,
- "placementWidth" : 202.118,
- "placementHeight" : 16.095,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 202.118,
- "contentHeight" : 16.095,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Professional Experience[5]/Professional Experience.body[1]",
- "entityName" : "Professional Experience.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.singleColumn[0]/Professional Experience[5]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 482.44,
- "placementX" : 15.0,
- "placementY" : 482.44,
- "placementWidth" : 455.91,
- "placementHeight" : 22.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 455.91,
- "contentHeight" : 22.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 12.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Professional Experience[5]/Professional Experience.body[1]/Professional Experience.paragraph[0][0]",
- "entityName" : "Professional Experience.paragraph[0]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Professional Experience[5]/Professional Experience.body[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 27.0,
- "computedY" : 495.69,
- "placementX" : 27.0,
- "placementY" : 495.69,
- "placementWidth" : 428.31,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 428.31,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Professional Experience[5]/Professional Experience.body[1]/Professional Experience.paragraph[1][1]",
- "entityName" : "Professional Experience.paragraph[1]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Professional Experience[5]/Professional Experience.body[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 27.0,
- "computedY" : 482.44,
- "placementX" : 27.0,
- "placementY" : 482.44,
- "placementWidth" : 443.91,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 443.91,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Additional Information[6]",
- "entityName" : "Additional Information",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.singleColumn[0]",
- "childIndex" : 6,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 432.845,
- "placementX" : 15.0,
- "placementY" : 432.845,
- "placementWidth" : 346.03,
- "placementHeight" : 42.595,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 346.03,
- "contentHeight" : 42.595,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Additional Information[6]/Additional Information.heading[0]",
- "entityName" : "Additional Information.heading",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Additional Information[6]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 455.345,
- "placementX" : 15.0,
- "placementY" : 455.345,
- "placementWidth" : 185.606,
- "placementHeight" : 16.095,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 185.606,
- "contentHeight" : 16.095,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Additional Information[6]/Additional Information.body[1]",
- "entityName" : "Additional Information.body",
- "entityKind" : "ContainerNode",
- "parentPath" : "layout.singleColumn[0]/Additional Information[6]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 432.845,
- "placementX" : 15.0,
- "placementY" : 432.845,
- "placementWidth" : 346.03,
- "placementHeight" : 20.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 346.03,
- "contentHeight" : 20.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 12.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Additional Information[6]/Additional Information.body[1]/Additional Information.entry[0][0]",
- "entityName" : "Additional Information.entry[0]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Additional Information[6]/Additional Information.body[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 27.0,
- "computedY" : 444.095,
- "placementX" : 27.0,
- "placementY" : 444.095,
- "placementWidth" : 334.03,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 334.03,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "layout.singleColumn[0]/Additional Information[6]/Additional Information.body[1]/Additional Information.entry[1][1]",
- "entityName" : "Additional Information.entry[1]",
- "entityKind" : "ParagraphNode",
- "parentPath" : "layout.singleColumn[0]/Additional Information[6]/Additional Information.body[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 27.0,
- "computedY" : 432.845,
- "placementX" : 27.0,
- "placementY" : 432.845,
- "placementWidth" : 312.9,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 312.9,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_monogram_sidebar.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_monogram_sidebar.json
deleted file mode 100644
index 0ca30fbba..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_monogram_sidebar.json
+++ /dev/null
@@ -1,1487 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "MonogramSidebarRoot[0]",
- "entityName" : "MonogramSidebarRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 58.32,
- "placementX" : 15.0,
- "placementY" : 58.32,
- "placementWidth" : 570.276,
- "placementHeight" : 768.57,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 768.57,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]",
- "entityName" : "MonogramSidebarFrame",
- "entityKind" : "RowNode",
- "parentPath" : "MonogramSidebarRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 58.32,
- "placementX" : 15.0,
- "placementY" : 58.32,
- "placementWidth" : 570.276,
- "placementHeight" : 768.57,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 768.57,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "entityName" : "MonogramSidebarSidebar",
- "entityKind" : "SectionNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 58.32,
- "placementX" : 15.0,
- "placementY" : 58.32,
- "placementWidth" : 188.191,
- "placementHeight" : 768.57,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 188.191,
- "contentHeight" : 768.57,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 36.0,
- "right" : 13.0,
- "bottom" : 0.0,
- "left" : 13.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/MonogramFrame[0]",
- "entityName" : "MonogramFrame",
- "entityKind" : "LayerStackNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 668.89,
- "placementX" : 28.0,
- "placementY" : 668.89,
- "placementWidth" : 162.191,
- "placementHeight" : 122.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 122.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 42.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/MonogramFrame[0]/MonogramSpace[0]",
- "entityName" : "MonogramSpace",
- "entityKind" : "SpacerNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/MonogramFrame[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 28.0,
- "computedY" : 668.89,
- "placementX" : 28.0,
- "placementY" : 668.89,
- "placementWidth" : 162.191,
- "placementHeight" : 122.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 122.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/MonogramFrame[0]/MonogramBadge[1]",
- "entityName" : "MonogramBadge",
- "entityKind" : "LayerStackNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/MonogramFrame[0]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 48.095,
- "computedY" : 668.89,
- "placementX" : 48.095,
- "placementY" : 668.89,
- "placementWidth" : 122.0,
- "placementHeight" : 122.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 122.0,
- "contentHeight" : 122.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/MonogramFrame[0]/MonogramBadge[1]/MonogramRing[0]",
- "entityName" : "MonogramRing",
- "entityKind" : "EllipseNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/MonogramFrame[0]/MonogramBadge[1]",
- "childIndex" : 0,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 48.095,
- "computedY" : 668.89,
- "placementX" : 48.095,
- "placementY" : 668.89,
- "placementWidth" : 122.0,
- "placementHeight" : 122.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 122.0,
- "contentHeight" : 122.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/MonogramFrame[0]/MonogramBadge[1]/MonogramInitials[1]",
- "entityName" : "MonogramInitials",
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/MonogramFrame[0]/MonogramBadge[1]",
- "childIndex" : 1,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 92.98,
- "computedY" : 715.315,
- "placementX" : 92.98,
- "placementY" : 715.315,
- "placementWidth" : 32.23,
- "placementHeight" : 29.15,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 32.23,
- "contentHeight" : 29.15,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 603.29,
- "placementX" : 28.0,
- "placementY" : 603.29,
- "placementWidth" : 162.191,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/LineNode[2]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 50.095,
- "computedY" : 593.29,
- "placementX" : 50.095,
- "placementY" : 593.29,
- "placementWidth" : 118.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 118.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 1.0,
- "right" : 22.095,
- "bottom" : 2.0,
- "left" : 22.095
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 3,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 561.29,
- "placementX" : 28.0,
- "placementY" : 561.29,
- "placementWidth" : 162.191,
- "placementHeight" : 18.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 18.0,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[4]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 4,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 544.41,
- "placementX" : 28.0,
- "placementY" : 544.41,
- "placementWidth" : 162.191,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[5]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 5,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 514.41,
- "placementX" : 28.0,
- "placementY" : 514.41,
- "placementWidth" : 162.191,
- "placementHeight" : 18.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 18.0,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[6]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 6,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 497.53,
- "placementX" : 28.0,
- "placementY" : 497.53,
- "placementWidth" : 162.191,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[7]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 7,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 467.53,
- "placementX" : 28.0,
- "placementY" : 467.53,
- "placementWidth" : 162.191,
- "placementHeight" : 18.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 18.0,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[8]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 8,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 450.65,
- "placementX" : 28.0,
- "placementY" : 450.65,
- "placementWidth" : 162.191,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[9]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 9,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 420.65,
- "placementX" : 28.0,
- "placementY" : 420.65,
- "placementWidth" : 162.191,
- "placementHeight" : 18.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 18.0,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[10]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 10,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 403.77,
- "placementX" : 28.0,
- "placementY" : 403.77,
- "placementWidth" : 162.191,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[11]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 11,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 373.77,
- "placementX" : 28.0,
- "placementY" : 373.77,
- "placementWidth" : 162.191,
- "placementHeight" : 18.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 18.0,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[12]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 12,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 356.89,
- "placementX" : 28.0,
- "placementY" : 356.89,
- "placementWidth" : 162.191,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[13]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 13,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 322.49,
- "placementX" : 28.0,
- "placementY" : 322.49,
- "placementWidth" : 162.191,
- "placementHeight" : 20.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 20.4,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/LineNode[14]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 14,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 50.095,
- "computedY" : 312.49,
- "placementX" : 50.095,
- "placementY" : 312.49,
- "placementWidth" : 118.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 118.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 1.0,
- "right" : 22.095,
- "bottom" : 2.0,
- "left" : 22.095
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[15]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 15,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 287.37,
- "placementX" : 28.0,
- "placementY" : 287.37,
- "placementWidth" : 162.191,
- "placementHeight" : 9.12,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 9.12,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[16]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 16,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 270.73,
- "placementX" : 28.0,
- "placementY" : 270.73,
- "placementWidth" : 162.191,
- "placementHeight" : 8.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 8.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[17]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 17,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 247.61,
- "placementX" : 28.0,
- "placementY" : 247.61,
- "placementWidth" : 162.191,
- "placementHeight" : 9.12,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 9.12,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[18]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 18,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 230.97,
- "placementX" : 28.0,
- "placementY" : 230.97,
- "placementWidth" : 162.191,
- "placementHeight" : 8.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 8.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[19]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 19,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 207.37,
- "placementX" : 28.0,
- "placementY" : 207.37,
- "placementWidth" : 162.191,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/LineNode[20]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 20,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 50.095,
- "computedY" : 197.37,
- "placementX" : 50.095,
- "placementY" : 197.37,
- "placementWidth" : 118.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 118.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 1.0,
- "right" : 22.095,
- "bottom" : 2.0,
- "left" : 22.095
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[21]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 21,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 177.49,
- "placementX" : 28.0,
- "placementY" : 177.49,
- "placementWidth" : 162.191,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[22]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 22,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 159.61,
- "placementX" : 28.0,
- "placementY" : 159.61,
- "placementWidth" : 162.191,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[23]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 23,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 141.73,
- "placementX" : 28.0,
- "placementY" : 141.73,
- "placementWidth" : 162.191,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[24]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 24,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 123.85,
- "placementX" : 28.0,
- "placementY" : 123.85,
- "placementWidth" : 162.191,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[25]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 25,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 105.97,
- "placementX" : 28.0,
- "placementY" : 105.97,
- "placementWidth" : 162.191,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[26]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 26,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 88.09,
- "placementX" : 28.0,
- "placementY" : 88.09,
- "placementWidth" : 162.191,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/ParagraphNode[27]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 27,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 70.21,
- "placementX" : 28.0,
- "placementY" : 70.21,
- "placementWidth" : 162.191,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]/SidebarBgFiller[28]",
- "entityName" : "SidebarBgFiller",
- "entityKind" : "ShapeNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarSidebar[0]",
- "childIndex" : 28,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 28.0,
- "computedY" : 58.32,
- "placementX" : 28.0,
- "placementY" : 58.32,
- "placementWidth" : 162.191,
- "placementHeight" : 3.89,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 162.191,
- "contentHeight" : 3.89,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]",
- "entityName" : "MonogramSidebarMain",
- "entityKind" : "SectionNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 203.191,
- "computedY" : 455.591,
- "placementX" : 203.191,
- "placementY" : 455.591,
- "placementWidth" : 382.085,
- "placementHeight" : 371.298,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 382.085,
- "contentHeight" : 371.298,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 38.0,
- "right" : 20.0,
- "bottom" : 24.0,
- "left" : 18.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 221.191,
- "computedY" : 749.896,
- "placementX" : 221.191,
- "placementY" : 749.896,
- "placementWidth" : 344.085,
- "placementHeight" : 38.994,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 344.085,
- "contentHeight" : 38.994,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 6.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 221.191,
- "computedY" : 699.901,
- "placementX" : 221.191,
- "placementY" : 699.901,
- "placementWidth" : 344.085,
- "placementHeight" : 38.994,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 344.085,
- "contentHeight" : 38.994,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 221.191,
- "computedY" : 674.021,
- "placementX" : 221.191,
- "placementY" : 674.021,
- "placementWidth" : 344.085,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 344.085,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 12.0,
- "right" : 0.0,
- "bottom" : 22.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]",
- "childIndex" : 3,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 221.191,
- "computedY" : 630.221,
- "placementX" : 221.191,
- "placementY" : 630.221,
- "placementWidth" : 156.852,
- "placementHeight" : 10.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 156.852,
- "contentHeight" : 10.8,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]/LineNode[4]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]",
- "childIndex" : 4,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 221.191,
- "computedY" : 623.221,
- "placementX" : 221.191,
- "placementY" : 623.221,
- "placementWidth" : 355.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 355.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]/ParagraphNode[5]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]",
- "childIndex" : 5,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 221.191,
- "computedY" : 590.871,
- "placementX" : 221.191,
- "placementY" : 590.871,
- "placementWidth" : 322.628,
- "placementHeight" : 19.35,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 322.628,
- "contentHeight" : 19.35,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 12.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]/ParagraphNode[6]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]",
- "childIndex" : 6,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 221.191,
- "computedY" : 557.071,
- "placementX" : 221.191,
- "placementY" : 557.071,
- "placementWidth" : 170.568,
- "placementHeight" : 10.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 170.568,
- "contentHeight" : 10.8,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]/LineNode[7]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]",
- "childIndex" : 7,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 221.191,
- "computedY" : 550.071,
- "placementX" : 221.191,
- "placementY" : 550.071,
- "placementWidth" : 355.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 355.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 4.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]/ParagraphNode[8]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]",
- "childIndex" : 8,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 221.191,
- "computedY" : 526.711,
- "placementX" : 221.191,
- "placementY" : 526.711,
- "placementWidth" : 203.315,
- "placementHeight" : 9.36,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 203.315,
- "contentHeight" : 9.36,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]/ParagraphNode[9]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]",
- "childIndex" : 9,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 221.191,
- "computedY" : 512.831,
- "placementX" : 221.191,
- "placementY" : 512.831,
- "placementWidth" : 258.46,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 258.46,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]/ParagraphNode[10]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]",
- "childIndex" : 10,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 221.191,
- "computedY" : 493.471,
- "placementX" : 221.191,
- "placementY" : 493.471,
- "placementWidth" : 154.892,
- "placementHeight" : 9.36,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 154.892,
- "contentHeight" : 9.36,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]/ParagraphNode[11]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "MonogramSidebarRoot[0]/MonogramSidebarFrame[0]/MonogramSidebarMain[1]",
- "childIndex" : 11,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 221.191,
- "computedY" : 479.591,
- "placementX" : 221.191,
- "placementY" : 479.591,
- "placementWidth" : 341.133,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 341.133,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_nordic_clean.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_nordic_clean.json
deleted file mode 100644
index 68f5214d2..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_nordic_clean.json
+++ /dev/null
@@ -1,1397 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "NordicCleanRoot[0]",
- "entityName" : "NordicCleanRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 517.84,
- "placementX" : 15.0,
- "placementY" : 517.84,
- "placementWidth" : 570.276,
- "placementHeight" : 309.05,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 309.05,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanHeader[0]",
- "entityName" : "NordicCleanHeader",
- "entityKind" : "RowNode",
- "parentPath" : "NordicCleanRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 771.49,
- "placementX" : 15.0,
- "placementY" : 771.49,
- "placementWidth" : 570.276,
- "placementHeight" : 55.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 55.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanIdentity[0]",
- "entityName" : "NordicCleanIdentity",
- "entityKind" : "SectionNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 773.65,
- "placementX" : 15.0,
- "placementY" : 773.65,
- "placementWidth" : 260.388,
- "placementHeight" : 53.24,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 260.388,
- "contentHeight" : 53.24,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanIdentity[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanIdentity[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 15.0,
- "computedY" : 793.49,
- "placementX" : 15.0,
- "placementY" : 793.49,
- "placementWidth" : 260.388,
- "placementHeight" : 32.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 260.388,
- "contentHeight" : 32.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanIdentity[0]/NordicCleanNameAccent[1]",
- "entityName" : "NordicCleanNameAccent",
- "entityKind" : "ShapeNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanIdentity[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 15.0,
- "computedY" : 787.89,
- "placementX" : 15.0,
- "placementY" : 787.89,
- "placementWidth" : 64.0,
- "placementHeight" : 2.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 64.0,
- "contentHeight" : 2.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanIdentity[0]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanIdentity[0]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 15.0,
- "computedY" : 775.65,
- "placementX" : 15.0,
- "placementY" : 775.65,
- "placementWidth" : 104.574,
- "placementHeight" : 9.24,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 104.574,
- "contentHeight" : 9.24,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanContact[1]",
- "entityName" : "NordicCleanContact",
- "entityKind" : "SectionNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanHeader[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 362.765,
- "computedY" : 771.49,
- "placementX" : 362.765,
- "placementY" : 771.49,
- "placementWidth" : 222.51,
- "placementHeight" : 55.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 222.51,
- "contentHeight" : 55.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanContact[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanContact[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 362.765,
- "computedY" : 815.01,
- "placementX" : 362.765,
- "placementY" : 815.01,
- "placementWidth" : 222.51,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 222.51,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanContact[1]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanContact[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 362.765,
- "computedY" : 804.13,
- "placementX" : 362.765,
- "placementY" : 804.13,
- "placementWidth" : 222.51,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 222.51,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanContact[1]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanContact[1]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 362.765,
- "computedY" : 793.25,
- "placementX" : 362.765,
- "placementY" : 793.25,
- "placementWidth" : 222.51,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 222.51,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanContact[1]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanContact[1]",
- "childIndex" : 3,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 362.765,
- "computedY" : 782.37,
- "placementX" : 362.765,
- "placementY" : 782.37,
- "placementWidth" : 222.51,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 222.51,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanContact[1]/ParagraphNode[4]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanHeader[0]/NordicCleanContact[1]",
- "childIndex" : 4,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 362.765,
- "computedY" : 771.49,
- "placementX" : 362.765,
- "placementY" : 771.49,
- "placementWidth" : 222.51,
- "placementHeight" : 8.88,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 222.51,
- "contentHeight" : 8.88,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanProfile[1]",
- "entityName" : "NordicCleanProfile",
- "entityKind" : "SectionNode",
- "parentPath" : "NordicCleanRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 725.47,
- "placementX" : 15.0,
- "placementY" : 725.47,
- "placementWidth" : 384.797,
- "placementHeight" : 39.02,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 384.797,
- "contentHeight" : 39.02,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 10.0,
- "bottom" : 8.0,
- "left" : 10.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanProfile[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanProfile[1]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 25.0,
- "computedY" : 746.89,
- "placementX" : 25.0,
- "placementY" : 746.89,
- "placementWidth" : 30.488,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 30.488,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanProfile[1]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanProfile[1]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 25.0,
- "computedY" : 733.47,
- "placementX" : 25.0,
- "placementY" : 733.47,
- "placementWidth" : 364.797,
- "placementHeight" : 9.42,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 364.797,
- "contentHeight" : 9.42,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]",
- "entityName" : "NordicCleanBody",
- "entityKind" : "RowNode",
- "parentPath" : "NordicCleanRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 517.84,
- "placementX" : 15.0,
- "placementY" : 517.84,
- "placementWidth" : 570.276,
- "placementHeight" : 200.63,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 200.63,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]",
- "entityName" : "NordicCleanRail",
- "entityKind" : "SectionNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 517.84,
- "placementX" : 15.0,
- "placementY" : 517.84,
- "placementWidth" : 197.06,
- "placementHeight" : 200.63,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 197.06,
- "contentHeight" : 200.63,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 9.0,
- "right" : 10.0,
- "bottom" : 9.0,
- "left" : 10.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanSkills[0]",
- "entityName" : "NordicCleanSkills",
- "entityKind" : "SectionNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 25.0,
- "computedY" : 645.38,
- "placementX" : 25.0,
- "placementY" : 645.38,
- "placementWidth" : 167.789,
- "placementHeight" : 64.09,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 167.789,
- "contentHeight" : 64.09,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanSkills[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanSkills[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 700.35,
- "placementX" : 25.0,
- "placementY" : 700.35,
- "placementWidth" : 24.495,
- "placementHeight" : 9.12,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 24.495,
- "contentHeight" : 9.12,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanSkills[0]/LineNode[1]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanSkills[0]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 696.25,
- "placementX" : 25.0,
- "placementY" : 696.25,
- "placementWidth" : 82.0,
- "placementHeight" : 1.1,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 82.0,
- "contentHeight" : 1.1,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanSkills[0]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanSkills[0]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 682.67,
- "placementX" : 25.0,
- "placementY" : 682.67,
- "placementWidth" : 114.772,
- "placementHeight" : 8.58,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 114.772,
- "contentHeight" : 8.58,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 1.5,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanSkills[0]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanSkills[0]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 659.96,
- "placementX" : 25.0,
- "placementY" : 659.96,
- "placementWidth" : 167.789,
- "placementHeight" : 18.21,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 167.789,
- "contentHeight" : 18.21,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 1.5,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanSkills[0]/ParagraphNode[4]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanSkills[0]",
- "childIndex" : 4,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 646.88,
- "placementX" : 25.0,
- "placementY" : 646.88,
- "placementWidth" : 163.985,
- "placementHeight" : 8.58,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 163.985,
- "contentHeight" : 8.58,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 1.5,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanEducation[1]",
- "entityName" : "NordicCleanEducation",
- "entityKind" : "SectionNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 25.0,
- "computedY" : 595.24,
- "placementX" : 25.0,
- "placementY" : 595.24,
- "placementWidth" : 177.06,
- "placementHeight" : 42.14,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 177.06,
- "contentHeight" : 42.14,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanEducation[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanEducation[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 628.26,
- "placementX" : 25.0,
- "placementY" : 628.26,
- "placementWidth" : 39.854,
- "placementHeight" : 9.12,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 39.854,
- "contentHeight" : 9.12,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanEducation[1]/LineNode[1]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanEducation[1]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 624.16,
- "placementX" : 25.0,
- "placementY" : 624.16,
- "placementWidth" : 82.0,
- "placementHeight" : 1.1,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 82.0,
- "contentHeight" : 1.1,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanEducation[1]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanEducation[1]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 610.7,
- "placementX" : 25.0,
- "placementY" : 610.7,
- "placementWidth" : 177.06,
- "placementHeight" : 8.46,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 177.06,
- "contentHeight" : 8.46,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanEducation[1]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanEducation[1]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 597.24,
- "placementX" : 25.0,
- "placementY" : 597.24,
- "placementWidth" : 158.793,
- "placementHeight" : 8.46,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 158.793,
- "contentHeight" : 8.46,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanadditional[2]",
- "entityName" : "NordicCleanadditional",
- "entityKind" : "SectionNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 25.0,
- "computedY" : 526.84,
- "placementX" : 25.0,
- "placementY" : 526.84,
- "placementWidth" : 165.97,
- "placementHeight" : 60.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 165.97,
- "contentHeight" : 60.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanadditional[2]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanadditional[2]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 578.12,
- "placementX" : 25.0,
- "placementY" : 578.12,
- "placementWidth" : 42.157,
- "placementHeight" : 9.12,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 42.157,
- "contentHeight" : 9.12,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanadditional[2]/LineNode[1]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanadditional[2]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 574.02,
- "placementX" : 25.0,
- "placementY" : 574.02,
- "placementWidth" : 82.0,
- "placementHeight" : 1.1,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 82.0,
- "contentHeight" : 1.1,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanadditional[2]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanadditional[2]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 550.93,
- "placementX" : 25.0,
- "placementY" : 550.93,
- "placementWidth" : 165.97,
- "placementHeight" : 18.09,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 165.97,
- "contentHeight" : 18.09,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 1.5,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanadditional[2]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanRail[0]/NordicCleanadditional[2]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 528.34,
- "placementX" : 25.0,
- "placementY" : 528.34,
- "placementWidth" : 126.352,
- "placementHeight" : 18.09,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 126.352,
- "contentHeight" : 18.09,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 1.5,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]",
- "entityName" : "NordicCleanMain",
- "entityKind" : "SectionNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 229.899,
- "computedY" : 600.91,
- "placementX" : 229.899,
- "placementY" : 600.91,
- "placementWidth" : 273.399,
- "placementHeight" : 117.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 273.399,
- "contentHeight" : 117.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanExperience[0]",
- "entityName" : "NordicCleanExperience",
- "entityKind" : "SectionNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 229.899,
- "computedY" : 654.77,
- "placementX" : 229.899,
- "placementY" : 654.77,
- "placementWidth" : 272.037,
- "placementHeight" : 63.7,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 272.037,
- "contentHeight" : 63.7,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanExperience[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanExperience[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 229.899,
- "computedY" : 709.35,
- "placementX" : 229.899,
- "placementY" : 709.35,
- "placementWidth" : 43.426,
- "placementHeight" : 9.12,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 43.426,
- "contentHeight" : 9.12,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanExperience[0]/LineNode[1]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanExperience[0]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 229.899,
- "computedY" : 705.25,
- "placementX" : 229.899,
- "placementY" : 705.25,
- "placementWidth" : 130.0,
- "placementHeight" : 1.1,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 130.0,
- "contentHeight" : 1.1,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanExperience[0]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanExperience[0]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 229.899,
- "computedY" : 690.65,
- "placementX" : 229.899,
- "placementY" : 690.65,
- "placementWidth" : 248.337,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 248.337,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanExperience[0]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanExperience[0]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 229.899,
- "computedY" : 679.01,
- "placementX" : 229.899,
- "placementY" : 679.01,
- "placementWidth" : 62.258,
- "placementHeight" : 8.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 62.258,
- "contentHeight" : 8.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanExperience[0]/ParagraphNode[4]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanExperience[0]",
- "childIndex" : 4,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 229.899,
- "computedY" : 666.41,
- "placementX" : 229.899,
- "placementY" : 666.41,
- "placementWidth" : 272.037,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 272.037,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanExperience[0]/ParagraphNode[5]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanExperience[0]",
- "childIndex" : 5,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 229.899,
- "computedY" : 654.77,
- "placementX" : 229.899,
- "placementY" : 654.77,
- "placementWidth" : 49.234,
- "placementHeight" : 8.64,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 49.234,
- "contentHeight" : 8.64,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanProjects[1]",
- "entityName" : "NordicCleanProjects",
- "entityKind" : "SectionNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 229.899,
- "computedY" : 600.91,
- "placementX" : 229.899,
- "placementY" : 600.91,
- "placementWidth" : 273.399,
- "placementHeight" : 44.86,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 273.399,
- "contentHeight" : 44.86,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanProjects[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanProjects[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 229.899,
- "computedY" : 636.65,
- "placementX" : 229.899,
- "placementY" : 636.65,
- "placementWidth" : 73.849,
- "placementHeight" : 9.12,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 73.849,
- "contentHeight" : 9.12,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanProjects[1]/LineNode[1]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanProjects[1]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 229.899,
- "computedY" : 632.55,
- "placementX" : 229.899,
- "placementY" : 632.55,
- "placementWidth" : 130.0,
- "placementHeight" : 1.1,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 130.0,
- "contentHeight" : 1.1,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 2.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanProjects[1]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanProjects[1]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 229.899,
- "computedY" : 618.73,
- "placementX" : 229.899,
- "placementY" : 618.73,
- "placementWidth" : 273.399,
- "placementHeight" : 8.82,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 273.399,
- "contentHeight" : 8.82,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 3.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanProjects[1]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "NordicCleanRoot[0]/NordicCleanBody[2]/NordicCleanMain[1]/NordicCleanProjects[1]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 229.899,
- "computedY" : 603.91,
- "placementX" : 229.899,
- "placementY" : 603.91,
- "placementWidth" : 259.522,
- "placementHeight" : 8.82,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 259.522,
- "contentHeight" : 8.82,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 3.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_panel.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_panel.json
deleted file mode 100644
index 7cd3fc0e8..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_panel.json
+++ /dev/null
@@ -1,1097 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "PanelRoot[0]",
- "entityName" : "PanelRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 361.81,
- "placementX" : 15.0,
- "placementY" : 361.81,
- "placementWidth" : 570.276,
- "placementHeight" : 465.08,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 465.08,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelHeader[0]",
- "entityName" : "PanelHeader",
- "entityKind" : "SectionNode",
- "parentPath" : "PanelRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 738.73,
- "placementX" : 15.0,
- "placementY" : 738.73,
- "placementWidth" : 570.276,
- "placementHeight" : 88.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 88.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 14.0,
- "right" : 16.0,
- "bottom" : 14.0,
- "left" : 16.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelHeader[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PanelHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 31.0,
- "computedY" : 782.09,
- "placementX" : 31.0,
- "placementY" : 782.09,
- "placementWidth" : 538.276,
- "placementHeight" : 30.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 538.276,
- "contentHeight" : 30.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelHeader[0]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PanelHeader[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 31.0,
- "computedY" : 767.41,
- "placementX" : 31.0,
- "placementY" : 767.41,
- "placementWidth" : 538.276,
- "placementHeight" : 10.68,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 538.276,
- "contentHeight" : 10.68,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelHeader[0]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PanelHeader[0]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 31.0,
- "computedY" : 752.73,
- "placementX" : 31.0,
- "placementY" : 752.73,
- "placementWidth" : 538.276,
- "placementHeight" : 10.68,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 538.276,
- "contentHeight" : 10.68,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelprofileCard[1]",
- "entityName" : "PanelprofileCard",
- "entityKind" : "SectionNode",
- "parentPath" : "PanelRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 669.69,
- "placementX" : 15.0,
- "placementY" : 669.69,
- "placementWidth" : 456.827,
- "placementHeight" : 59.04,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 456.827,
- "contentHeight" : 59.04,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 10.0,
- "right" : 10.0,
- "bottom" : 10.0,
- "left" : 10.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelprofileCard[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PanelprofileCard[1]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 25.0,
- "computedY" : 704.17,
- "placementX" : 25.0,
- "placementY" : 704.17,
- "placementWidth" : 40.789,
- "placementHeight" : 14.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 40.789,
- "contentHeight" : 14.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelprofileCard[1]/PanelprofileAccent[1]",
- "entityName" : "PanelprofileAccent",
- "entityKind" : "ShapeNode",
- "parentPath" : "PanelRoot[0]/PanelprofileCard[1]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 25.0,
- "computedY" : 696.97,
- "placementX" : 25.0,
- "placementY" : 696.97,
- "placementWidth" : 54.0,
- "placementHeight" : 2.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 54.0,
- "contentHeight" : 2.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelprofileCard[1]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PanelprofileCard[1]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 25.0,
- "computedY" : 679.69,
- "placementX" : 25.0,
- "placementY" : 679.69,
- "placementWidth" : 436.827,
- "placementHeight" : 11.28,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 436.827,
- "contentHeight" : 11.28,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]",
- "entityName" : "PanelStackedCards",
- "entityKind" : "RowNode",
- "parentPath" : "PanelRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 448.13,
- "placementX" : 15.0,
- "placementY" : 448.13,
- "placementWidth" : 570.276,
- "placementHeight" : 211.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 211.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]",
- "entityName" : "PanelStackedLeft",
- "entityKind" : "SectionNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 474.29,
- "placementX" : 15.0,
- "placementY" : 474.29,
- "placementWidth" : 258.403,
- "placementHeight" : 185.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 258.403,
- "contentHeight" : 185.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]/PanelskillsCard[0]",
- "entityName" : "PanelskillsCard",
- "entityKind" : "SectionNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 15.0,
- "computedY" : 559.61,
- "placementX" : 15.0,
- "placementY" : 559.61,
- "placementWidth" : 248.448,
- "placementHeight" : 100.08,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 248.448,
- "contentHeight" : 100.08,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 10.0,
- "right" : 10.0,
- "bottom" : 10.0,
- "left" : 10.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]/PanelskillsCard[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]/PanelskillsCard[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 635.13,
- "placementX" : 25.0,
- "placementY" : 635.13,
- "placementWidth" : 33.03,
- "placementHeight" : 14.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 33.03,
- "contentHeight" : 14.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]/PanelskillsCard[0]/PanelskillsAccent[1]",
- "entityName" : "PanelskillsAccent",
- "entityKind" : "ShapeNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]/PanelskillsCard[0]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 627.93,
- "placementX" : 25.0,
- "placementY" : 627.93,
- "placementWidth" : 54.0,
- "placementHeight" : 2.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 54.0,
- "contentHeight" : 2.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]/PanelskillsCard[0]/ListNode[2]",
- "entityName" : null,
- "entityKind" : "ListNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]/PanelskillsCard[0]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 569.61,
- "placementX" : 25.0,
- "placementY" : 569.61,
- "placementWidth" : 228.448,
- "placementHeight" : 52.32,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 228.448,
- "contentHeight" : 52.32,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]/PaneleducationCard[1]",
- "entityName" : "PaneleducationCard",
- "entityKind" : "SectionNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 15.0,
- "computedY" : 474.29,
- "placementX" : 15.0,
- "placementY" : 474.29,
- "placementWidth" : 258.403,
- "placementHeight" : 76.32,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 258.403,
- "contentHeight" : 76.32,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 10.0,
- "right" : 10.0,
- "bottom" : 10.0,
- "left" : 10.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]/PaneleducationCard[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]/PaneleducationCard[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 526.05,
- "placementX" : 25.0,
- "placementY" : 526.05,
- "placementWidth" : 61.318,
- "placementHeight" : 14.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 61.318,
- "contentHeight" : 14.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]/PaneleducationCard[1]/PaneleducationAccent[1]",
- "entityName" : "PaneleducationAccent",
- "entityKind" : "ShapeNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]/PaneleducationCard[1]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 518.85,
- "placementX" : 25.0,
- "placementY" : 518.85,
- "placementWidth" : 54.0,
- "placementHeight" : 2.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 54.0,
- "contentHeight" : 2.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]/PaneleducationCard[1]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]/PaneleducationCard[1]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 501.57,
- "placementX" : 25.0,
- "placementY" : 501.57,
- "placementWidth" : 238.403,
- "placementHeight" : 11.28,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 238.403,
- "contentHeight" : 11.28,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]/PaneleducationCard[1]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedLeft[0]/PaneleducationCard[1]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 25.0,
- "computedY" : 484.29,
- "placementX" : 25.0,
- "placementY" : 484.29,
- "placementWidth" : 212.459,
- "placementHeight" : 11.28,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 212.459,
- "contentHeight" : 11.28,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]",
- "entityName" : "PanelStackedRight",
- "entityKind" : "SectionNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 306.138,
- "computedY" : 448.13,
- "placementX" : 306.138,
- "placementY" : 448.13,
- "placementWidth" : 272.531,
- "placementHeight" : 211.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 272.531,
- "contentHeight" : 211.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelexperienceCard[0]",
- "entityName" : "PanelexperienceCard",
- "entityKind" : "SectionNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 306.138,
- "computedY" : 558.41,
- "placementX" : 306.138,
- "placementY" : 558.41,
- "placementWidth" : 272.531,
- "placementHeight" : 101.28,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 272.531,
- "contentHeight" : 101.28,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 10.0,
- "right" : 10.0,
- "bottom" : 10.0,
- "left" : 10.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelexperienceCard[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelexperienceCard[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 316.138,
- "computedY" : 635.13,
- "placementX" : 316.138,
- "placementY" : 635.13,
- "placementWidth" : 62.026,
- "placementHeight" : 14.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 62.026,
- "contentHeight" : 14.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelexperienceCard[0]/PanelexperienceAccent[1]",
- "entityName" : "PanelexperienceAccent",
- "entityKind" : "ShapeNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelexperienceCard[0]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 316.138,
- "computedY" : 627.93,
- "placementX" : 316.138,
- "placementY" : 627.93,
- "placementWidth" : 54.0,
- "placementHeight" : 2.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 54.0,
- "contentHeight" : 2.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelexperienceCard[0]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelexperienceCard[0]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 316.138,
- "computedY" : 598.17,
- "placementX" : 316.138,
- "placementY" : 598.17,
- "placementWidth" : 252.531,
- "placementHeight" : 23.76,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 252.531,
- "contentHeight" : 23.76,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelexperienceCard[0]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelexperienceCard[0]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 316.138,
- "computedY" : 568.41,
- "placementX" : 316.138,
- "placementY" : 568.41,
- "placementWidth" : 231.832,
- "placementHeight" : 23.76,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 231.832,
- "contentHeight" : 23.76,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelprojectsCard[1]",
- "entityName" : "PanelprojectsCard",
- "entityKind" : "SectionNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 306.138,
- "computedY" : 448.13,
- "placementX" : 306.138,
- "placementY" : 448.13,
- "placementWidth" : 270.087,
- "placementHeight" : 101.28,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 270.087,
- "contentHeight" : 101.28,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 10.0,
- "right" : 10.0,
- "bottom" : 10.0,
- "left" : 10.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelprojectsCard[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelprojectsCard[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 316.138,
- "computedY" : 524.85,
- "placementX" : 316.138,
- "placementY" : 524.85,
- "placementWidth" : 53.55,
- "placementHeight" : 14.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 53.55,
- "contentHeight" : 14.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelprojectsCard[1]/PanelprojectsAccent[1]",
- "entityName" : "PanelprojectsAccent",
- "entityKind" : "ShapeNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelprojectsCard[1]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 316.138,
- "computedY" : 517.65,
- "placementX" : 316.138,
- "placementY" : 517.65,
- "placementWidth" : 54.0,
- "placementHeight" : 2.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 54.0,
- "contentHeight" : 2.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelprojectsCard[1]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelprojectsCard[1]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 316.138,
- "computedY" : 487.89,
- "placementX" : 316.138,
- "placementY" : 487.89,
- "placementWidth" : 250.087,
- "placementHeight" : 23.76,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 250.087,
- "contentHeight" : 23.76,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelprojectsCard[1]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PanelStackedCards[2]/PanelStackedRight[1]/PanelprojectsCard[1]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 316.138,
- "computedY" : 458.13,
- "placementX" : 316.138,
- "placementY" : 458.13,
- "placementWidth" : 243.037,
- "placementHeight" : 23.76,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 243.037,
- "contentHeight" : 23.76,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PaneladditionalCard[3]",
- "entityName" : "PaneladditionalCard",
- "entityKind" : "SectionNode",
- "parentPath" : "PanelRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 361.81,
- "placementX" : 15.0,
- "placementY" : 361.81,
- "placementWidth" : 328.16,
- "placementHeight" : 76.32,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 328.16,
- "contentHeight" : 76.32,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 10.0,
- "right" : 10.0,
- "bottom" : 10.0,
- "left" : 10.0
- }
- }, {
- "path" : "PanelRoot[0]/PaneladditionalCard[3]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PaneladditionalCard[3]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 25.0,
- "computedY" : 413.57,
- "placementX" : 25.0,
- "placementY" : 413.57,
- "placementWidth" : 63.69,
- "placementHeight" : 14.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 63.69,
- "contentHeight" : 14.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PaneladditionalCard[3]/PaneladditionalAccent[1]",
- "entityName" : "PaneladditionalAccent",
- "entityKind" : "ShapeNode",
- "parentPath" : "PanelRoot[0]/PaneladditionalCard[3]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 25.0,
- "computedY" : 406.37,
- "placementX" : 25.0,
- "placementY" : 406.37,
- "placementWidth" : 54.0,
- "placementHeight" : 2.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 54.0,
- "contentHeight" : 2.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PaneladditionalCard[3]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PaneladditionalCard[3]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 25.0,
- "computedY" : 389.09,
- "placementX" : 25.0,
- "placementY" : 389.09,
- "placementWidth" : 308.16,
- "placementHeight" : 11.28,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 308.16,
- "contentHeight" : 11.28,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "PanelRoot[0]/PaneladditionalCard[3]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "PanelRoot[0]/PaneladditionalCard[3]",
- "childIndex" : 3,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 25.0,
- "computedY" : 371.81,
- "placementX" : 25.0,
- "placementY" : 371.81,
- "placementWidth" : 292.359,
- "placementHeight" : 11.28,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 292.359,
- "contentHeight" : 11.28,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_sidebar_portrait.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_sidebar_portrait.json
deleted file mode 100644
index 83753c241..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_sidebar_portrait.json
+++ /dev/null
@@ -1,2297 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "SidebarPortraitRoot[0]",
- "entityName" : "SidebarPortraitRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 154.68,
- "placementX" : 15.0,
- "placementY" : 154.68,
- "placementWidth" : 570.276,
- "placementHeight" : 672.21,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 672.21,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]",
- "entityName" : "SidebarPortraitBodyRow",
- "entityKind" : "RowNode",
- "parentPath" : "SidebarPortraitRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 154.68,
- "placementX" : 15.0,
- "placementY" : 154.68,
- "placementWidth" : 570.276,
- "placementHeight" : 672.21,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 672.21,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "entityName" : "SidebarPortraitBodySidebar",
- "entityKind" : "SectionNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 154.68,
- "placementX" : 15.0,
- "placementY" : 154.68,
- "placementWidth" : 193.894,
- "placementHeight" : 672.21,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 193.894,
- "contentHeight" : 672.21,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 54.0,
- "right" : 20.0,
- "bottom" : 45.45,
- "left" : 26.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]",
- "entityName" : "SidebarPortraitPhoto",
- "entityKind" : "LayerStackNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 89.494,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 89.494,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 29.2,
- "bottom" : 17.0,
- "left" : 29.2
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "entityName" : "SvgIcon",
- "entityKind" : "LayerStackNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 89.494,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 89.494,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer0[0]",
- "entityName" : "SvgLayer0",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 0,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer1[1]",
- "entityName" : "SvgLayer1",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 1,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer2[2]",
- "entityName" : "SvgLayer2",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 2,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer3[3]",
- "entityName" : "SvgLayer3",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 3,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer4[4]",
- "entityName" : "SvgLayer4",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 4,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer5[5]",
- "entityName" : "SvgLayer5",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 5,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer6[6]",
- "entityName" : "SvgLayer6",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 6,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer7[7]",
- "entityName" : "SvgLayer7",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 7,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer8[8]",
- "entityName" : "SvgLayer8",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 8,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer9[9]",
- "entityName" : "SvgLayer9",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 9,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer10[10]",
- "entityName" : "SvgLayer10",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 10,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer11[11]",
- "entityName" : "SvgLayer11",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 11,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer12[12]",
- "entityName" : "SvgLayer12",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 12,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer13[13]",
- "entityName" : "SvgLayer13",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 13,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer14[14]",
- "entityName" : "SvgLayer14",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 14,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer15[15]",
- "entityName" : "SvgLayer15",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 15,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer16[16]",
- "entityName" : "SvgLayer16",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 16,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer17[17]",
- "entityName" : "SvgLayer17",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 17,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer18[18]",
- "entityName" : "SvgLayer18",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 18,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer19[19]",
- "entityName" : "SvgLayer19",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 19,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer20[20]",
- "entityName" : "SvgLayer20",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 20,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer21[21]",
- "entityName" : "SvgLayer21",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 21,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer22[22]",
- "entityName" : "SvgLayer22",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 22,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer23[23]",
- "entityName" : "SvgLayer23",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 23,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer24[24]",
- "entityName" : "SvgLayer24",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 24,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer25[25]",
- "entityName" : "SvgLayer25",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 25,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer26[26]",
- "entityName" : "SvgLayer26",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 26,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer27[27]",
- "entityName" : "SvgLayer27",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 27,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer28[28]",
- "entityName" : "SvgLayer28",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 28,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer29[29]",
- "entityName" : "SvgLayer29",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 29,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer30[30]",
- "entityName" : "SvgLayer30",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 30,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer31[31]",
- "entityName" : "SvgLayer31",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 31,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer32[32]",
- "entityName" : "SvgLayer32",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 32,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer33[33]",
- "entityName" : "SvgLayer33",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 33,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer34[34]",
- "entityName" : "SvgLayer34",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 34,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer35[35]",
- "entityName" : "SvgLayer35",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 35,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]/SvgLayer36[36]",
- "entityName" : "SvgLayer36",
- "entityKind" : "Path",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/SidebarPortraitPhoto[0]/SvgIcon[0]",
- "childIndex" : 36,
- "depth" : 6,
- "layer" : 6,
- "computedX" : 70.2,
- "computedY" : 674.89,
- "placementX" : 70.2,
- "placementY" : 674.89,
- "placementWidth" : 98.0,
- "placementHeight" : 98.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.0,
- "contentHeight" : 98.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 635.89,
- "placementX" : 41.0,
- "placementY" : 635.89,
- "placementWidth" : 83.206,
- "placementHeight" : 10.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 83.206,
- "contentHeight" : 10.0,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 613.89,
- "placementX" : 41.0,
- "placementY" : 613.89,
- "placementWidth" : 78.375,
- "placementHeight" : 10.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 78.375,
- "contentHeight" : 10.0,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 3,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 591.89,
- "placementX" : 41.0,
- "placementY" : 591.89,
- "placementWidth" : 57.459,
- "placementHeight" : 10.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 57.459,
- "contentHeight" : 10.0,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[4]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 4,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 569.89,
- "placementX" : 41.0,
- "placementY" : 569.89,
- "placementWidth" : 45.341,
- "placementHeight" : 10.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 45.341,
- "contentHeight" : 10.0,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[5]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 5,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 547.89,
- "placementX" : 41.0,
- "placementY" : 547.89,
- "placementWidth" : 40.909,
- "placementHeight" : 10.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 40.909,
- "contentHeight" : 10.0,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/LineNode[6]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 6,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 525.89,
- "placementX" : 41.0,
- "placementY" : 525.89,
- "placementWidth" : 50.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 50.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 12.0,
- "right" : 0.0,
- "bottom" : 7.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[7]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 7,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 496.93,
- "placementX" : 41.0,
- "placementY" : 496.93,
- "placementWidth" : 84.845,
- "placementHeight" : 12.96,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 84.845,
- "contentHeight" : 12.96,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[8]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 8,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 471.85,
- "placementX" : 41.0,
- "placementY" : 471.85,
- "placementWidth" : 103.555,
- "placementHeight" : 10.08,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 103.555,
- "contentHeight" : 10.08,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[9]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 9,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 453.49,
- "placementX" : 41.0,
- "placementY" : 453.49,
- "placementWidth" : 111.033,
- "placementHeight" : 9.36,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 111.033,
- "contentHeight" : 9.36,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[10]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 10,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 428.41,
- "placementX" : 41.0,
- "placementY" : 428.41,
- "placementWidth" : 120.767,
- "placementHeight" : 10.08,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 120.767,
- "contentHeight" : 10.08,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[11]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 11,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 410.05,
- "placementX" : 41.0,
- "placementY" : 410.05,
- "placementWidth" : 85.176,
- "placementHeight" : 9.36,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 85.176,
- "contentHeight" : 9.36,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/LineNode[12]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 12,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 388.05,
- "placementX" : 41.0,
- "placementY" : 388.05,
- "placementWidth" : 50.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 50.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 12.0,
- "right" : 0.0,
- "bottom" : 7.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[13]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 13,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 359.09,
- "placementX" : 41.0,
- "placementY" : 359.09,
- "placementWidth" : 80.568,
- "placementHeight" : 12.96,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 80.568,
- "contentHeight" : 12.96,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[14]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 14,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 337.49,
- "placementX" : 41.0,
- "placementY" : 337.49,
- "placementWidth" : 26.792,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 26.792,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[15]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 15,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 315.89,
- "placementX" : 41.0,
- "placementY" : 315.89,
- "placementWidth" : 29.12,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 29.12,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[16]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 16,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 294.29,
- "placementX" : 41.0,
- "placementY" : 294.29,
- "placementWidth" : 24.224,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 24.224,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[17]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 17,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 272.69,
- "placementX" : 41.0,
- "placementY" : 272.69,
- "placementWidth" : 36.688,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 36.688,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[18]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 18,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 251.09,
- "placementX" : 41.0,
- "placementY" : 251.09,
- "placementWidth" : 87.992,
- "placementHeight" : 9.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 87.992,
- "contentHeight" : 9.6,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/LineNode[19]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 19,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 229.09,
- "placementX" : 41.0,
- "placementY" : 229.09,
- "placementWidth" : 50.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 50.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 12.0,
- "right" : 0.0,
- "bottom" : 7.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]/ParagraphNode[20]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodySidebar[0]",
- "childIndex" : 20,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 41.0,
- "computedY" : 200.13,
- "placementX" : 41.0,
- "placementY" : 200.13,
- "placementWidth" : 85.795,
- "placementHeight" : 12.96,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 85.795,
- "contentHeight" : 12.96,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]",
- "entityName" : "SidebarPortraitBodyMain",
- "entityKind" : "SectionNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 208.894,
- "computedY" : 401.585,
- "placementX" : 208.894,
- "placementY" : 401.585,
- "placementWidth" : 376.382,
- "placementHeight" : 425.305,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 376.382,
- "contentHeight" : 425.305,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitHero[0]",
- "entityName" : "SidebarPortraitHero",
- "entityKind" : "SectionNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 208.894,
- "computedY" : 693.415,
- "placementX" : 208.894,
- "placementY" : 693.415,
- "placementWidth" : 376.382,
- "placementHeight" : 63.475,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 376.382,
- "contentHeight" : 63.475,
- "margin" : {
- "top" : 70.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 34.0,
- "bottom" : 6.0,
- "left" : 34.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitHero[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitHero[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 242.894,
- "computedY" : 712.495,
- "placementX" : 242.894,
- "placementY" : 712.495,
- "placementWidth" : 308.382,
- "placementHeight" : 36.395,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 308.382,
- "contentHeight" : 36.395,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitHero[0]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitHero[0]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 242.894,
- "computedY" : 699.415,
- "placementX" : 242.894,
- "placementY" : 699.415,
- "placementWidth" : 308.382,
- "placementHeight" : 10.08,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 308.382,
- "contentHeight" : 10.08,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]",
- "entityName" : "SidebarPortraitContent",
- "entityKind" : "SectionNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 208.894,
- "computedY" : 401.585,
- "placementX" : 208.894,
- "placementY" : 401.585,
- "placementWidth" : 376.382,
- "placementHeight" : 291.83,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 376.382,
- "contentHeight" : 291.83,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 24.0,
- "right" : 34.0,
- "bottom" : 24.0,
- "left" : 34.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 242.894,
- "computedY" : 647.015,
- "placementX" : 242.894,
- "placementY" : 647.015,
- "placementWidth" : 195.456,
- "placementHeight" : 14.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 195.456,
- "contentHeight" : 14.4,
- "margin" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]/LineNode[1]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 242.894,
- "computedY" : 634.015,
- "placementX" : 242.894,
- "placementY" : 634.015,
- "placementWidth" : 346.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 346.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 7.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 242.894,
- "computedY" : 591.105,
- "placementX" : 242.894,
- "placementY" : 591.105,
- "placementWidth" : 274.301,
- "placementHeight" : 23.91,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 274.301,
- "contentHeight" : 23.91,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 242.894,
- "computedY" : 558.705,
- "placementX" : 242.894,
- "placementY" : 558.705,
- "placementWidth" : 97.8,
- "placementHeight" : 14.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 97.8,
- "contentHeight" : 14.4,
- "margin" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]/LineNode[4]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]",
- "childIndex" : 4,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 242.894,
- "computedY" : 545.705,
- "placementX" : 242.894,
- "placementY" : 545.705,
- "placementWidth" : 346.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 346.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 7.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]/ParagraphNode[5]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]",
- "childIndex" : 5,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 242.894,
- "computedY" : 508.705,
- "placementX" : 242.894,
- "placementY" : 508.705,
- "placementWidth" : 144.58,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 144.58,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]/ParagraphNode[6]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]",
- "childIndex" : 6,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 242.894,
- "computedY" : 487.665,
- "placementX" : 242.894,
- "placementY" : 487.665,
- "placementWidth" : 275.016,
- "placementHeight" : 11.04,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 275.016,
- "contentHeight" : 11.04,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]/ParagraphNode[7]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]",
- "childIndex" : 7,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 242.894,
- "computedY" : 457.665,
- "placementX" : 242.894,
- "placementY" : 457.665,
- "placementWidth" : 106.63,
- "placementHeight" : 12.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 106.63,
- "contentHeight" : 12.0,
- "margin" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]/ParagraphNode[8]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "SidebarPortraitRoot[0]/SidebarPortraitBodyRow[0]/SidebarPortraitBodyMain[1]/SidebarPortraitContent[1]",
- "childIndex" : 8,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 242.894,
- "computedY" : 425.585,
- "placementX" : 242.894,
- "placementY" : 425.585,
- "placementWidth" : 276.248,
- "placementHeight" : 22.08,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 276.248,
- "contentHeight" : 22.08,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_timeline_minimal.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_timeline_minimal.json
deleted file mode 100644
index 5b53f6b72..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/template_v2_cv_timeline_minimal.json
+++ /dev/null
@@ -1,1757 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 570.276,
- "innerHeight" : 811.89,
- "margin" : {
- "top" : 15.0,
- "right" : 10.0,
- "bottom" : 15.0,
- "left" : 15.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "TimelineMinimalRoot[0]",
- "entityName" : "TimelineMinimalRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 15.0,
- "computedY" : 68.39,
- "placementX" : 15.0,
- "placementY" : 68.39,
- "placementWidth" : 570.276,
- "placementHeight" : 758.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 758.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]",
- "entityName" : "TimelineMinimalHeader",
- "entityKind" : "RowNode",
- "parentPath" : "TimelineMinimalRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 762.39,
- "placementX" : 15.0,
- "placementY" : 762.39,
- "placementWidth" : 570.276,
- "placementHeight" : 64.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 64.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]/TimelineMinimalName[0]",
- "entityName" : "TimelineMinimalName",
- "entityKind" : "SectionNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 777.89,
- "placementX" : 15.0,
- "placementY" : 777.89,
- "placementWidth" : 279.664,
- "placementHeight" : 49.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 279.664,
- "contentHeight" : 49.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]/TimelineMinimalName[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]/TimelineMinimalName[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 15.0,
- "computedY" : 793.29,
- "placementX" : 15.0,
- "placementY" : 793.29,
- "placementWidth" : 279.664,
- "placementHeight" : 33.6,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 279.664,
- "contentHeight" : 33.6,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]/TimelineMinimalName[0]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]/TimelineMinimalName[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 15.0,
- "computedY" : 777.89,
- "placementX" : 15.0,
- "placementY" : 777.89,
- "placementWidth" : 71.355,
- "placementHeight" : 11.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 71.355,
- "contentHeight" : 11.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]/TimelineMinimalContact[1]",
- "entityName" : "TimelineMinimalContact",
- "entityKind" : "SectionNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 370.345,
- "computedY" : 762.39,
- "placementX" : 370.345,
- "placementY" : 762.39,
- "placementWidth" : 214.931,
- "placementHeight" : 64.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 214.931,
- "contentHeight" : 64.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]/TimelineMinimalContact[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]/TimelineMinimalContact[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 370.345,
- "computedY" : 816.39,
- "placementX" : 370.345,
- "placementY" : 816.39,
- "placementWidth" : 214.931,
- "placementHeight" : 10.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 214.931,
- "contentHeight" : 10.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]/TimelineMinimalContact[1]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]/TimelineMinimalContact[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 370.345,
- "computedY" : 802.89,
- "placementX" : 370.345,
- "placementY" : 802.89,
- "placementWidth" : 214.931,
- "placementHeight" : 10.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 214.931,
- "contentHeight" : 10.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]/TimelineMinimalContact[1]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]/TimelineMinimalContact[1]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 370.345,
- "computedY" : 789.39,
- "placementX" : 370.345,
- "placementY" : 789.39,
- "placementWidth" : 214.931,
- "placementHeight" : 10.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 214.931,
- "contentHeight" : 10.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]/TimelineMinimalContact[1]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]/TimelineMinimalContact[1]",
- "childIndex" : 3,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 370.345,
- "computedY" : 775.89,
- "placementX" : 370.345,
- "placementY" : 775.89,
- "placementWidth" : 214.931,
- "placementHeight" : 10.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 214.931,
- "contentHeight" : 10.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]/TimelineMinimalContact[1]/ParagraphNode[4]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalHeader[0]/TimelineMinimalContact[1]",
- "childIndex" : 4,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 370.345,
- "computedY" : 762.39,
- "placementX" : 370.345,
- "placementY" : 762.39,
- "placementWidth" : 214.931,
- "placementHeight" : 10.5,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 214.931,
- "contentHeight" : 10.5,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalHeaderRule[1]",
- "entityName" : "TimelineMinimalHeaderRule",
- "entityKind" : "LineNode",
- "parentPath" : "TimelineMinimalRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 749.39,
- "placementX" : 15.0,
- "placementY" : 749.39,
- "placementWidth" : 570.276,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]",
- "entityName" : "TimelineMinimalBody",
- "entityKind" : "RowNode",
- "parentPath" : "TimelineMinimalRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 15.0,
- "computedY" : 68.39,
- "placementX" : 15.0,
- "placementY" : 68.39,
- "placementWidth" : 570.276,
- "placementHeight" : 669.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 570.276,
- "contentHeight" : 669.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]",
- "entityName" : "TimelineMinimalSidebar",
- "entityKind" : "SectionNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 15.0,
- "computedY" : 297.39,
- "placementX" : 15.0,
- "placementY" : 297.39,
- "placementWidth" : 151.733,
- "placementHeight" : 440.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 151.733,
- "contentHeight" : 440.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebareducation[0]",
- "entityName" : "TimelineMinimalSidebareducation",
- "entityKind" : "SectionNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 15.0,
- "computedY" : 660.39,
- "placementX" : 15.0,
- "placementY" : 660.39,
- "placementWidth" : 151.733,
- "placementHeight" : 77.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 151.733,
- "contentHeight" : 77.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebareducation[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebareducation[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 722.39,
- "placementX" : 15.0,
- "placementY" : 722.39,
- "placementWidth" : 50.3,
- "placementHeight" : 15.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 50.3,
- "contentHeight" : 15.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebareducation[0]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebareducation[0]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 697.39,
- "placementX" : 15.0,
- "placementY" : 697.39,
- "placementWidth" : 126.458,
- "placementHeight" : 19.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 126.458,
- "contentHeight" : 19.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebareducation[0]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebareducation[0]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 672.39,
- "placementX" : 15.0,
- "placementY" : 672.39,
- "placementWidth" : 151.733,
- "placementHeight" : 19.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 151.733,
- "contentHeight" : 19.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebareducation[0]/LineNode[3]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebareducation[0]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 660.39,
- "placementX" : 15.0,
- "placementY" : 660.39,
- "placementWidth" : 118.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 118.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarskills[1]",
- "entityName" : "TimelineMinimalSidebarskills",
- "entityKind" : "SectionNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 15.0,
- "computedY" : 558.39,
- "placementX" : 15.0,
- "placementY" : 558.39,
- "placementWidth" : 133.305,
- "placementHeight" : 92.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 133.305,
- "contentHeight" : 92.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarskills[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarskills[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 635.39,
- "placementX" : 15.0,
- "placementY" : 635.39,
- "placementWidth" : 30.763,
- "placementHeight" : 15.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 30.763,
- "contentHeight" : 15.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarskills[1]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarskills[1]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 620.39,
- "placementX" : 15.0,
- "placementY" : 620.39,
- "placementWidth" : 121.875,
- "placementHeight" : 9.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 121.875,
- "contentHeight" : 9.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarskills[1]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarskills[1]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 595.39,
- "placementX" : 15.0,
- "placementY" : 595.39,
- "placementWidth" : 124.313,
- "placementHeight" : 19.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 124.313,
- "contentHeight" : 19.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarskills[1]/ParagraphNode[3]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarskills[1]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 570.39,
- "placementX" : 15.0,
- "placementY" : 570.39,
- "placementWidth" : 133.305,
- "placementHeight" : 19.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 133.305,
- "contentHeight" : 19.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarskills[1]/LineNode[4]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarskills[1]",
- "childIndex" : 4,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 558.39,
- "placementX" : 15.0,
- "placementY" : 558.39,
- "placementWidth" : 118.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 118.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarexpertise[2]",
- "entityName" : "TimelineMinimalSidebarexpertise",
- "entityKind" : "SectionNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 15.0,
- "computedY" : 471.39,
- "placementX" : 15.0,
- "placementY" : 471.39,
- "placementWidth" : 149.64,
- "placementHeight" : 77.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 149.64,
- "contentHeight" : 77.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarexpertise[2]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarexpertise[2]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 533.39,
- "placementX" : 15.0,
- "placementY" : 533.39,
- "placementWidth" : 48.338,
- "placementHeight" : 15.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 48.338,
- "contentHeight" : 15.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarexpertise[2]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarexpertise[2]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 508.39,
- "placementX" : 15.0,
- "placementY" : 508.39,
- "placementWidth" : 135.068,
- "placementHeight" : 19.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 135.068,
- "contentHeight" : 19.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarexpertise[2]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarexpertise[2]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 483.39,
- "placementX" : 15.0,
- "placementY" : 483.39,
- "placementWidth" : 149.64,
- "placementHeight" : 19.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 149.64,
- "contentHeight" : 19.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarexpertise[2]/LineNode[3]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarexpertise[2]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 471.39,
- "placementX" : 15.0,
- "placementY" : 471.39,
- "placementWidth" : 118.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 118.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarlanguages[3]",
- "entityName" : "TimelineMinimalSidebarlanguages",
- "entityKind" : "SectionNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]",
- "childIndex" : 3,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 15.0,
- "computedY" : 384.39,
- "placementX" : 15.0,
- "placementY" : 384.39,
- "placementWidth" : 144.84,
- "placementHeight" : 77.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 144.84,
- "contentHeight" : 77.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarlanguages[3]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarlanguages[3]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 446.39,
- "placementX" : 15.0,
- "placementY" : 446.39,
- "placementWidth" : 52.488,
- "placementHeight" : 15.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 52.488,
- "contentHeight" : 15.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarlanguages[3]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarlanguages[3]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 421.39,
- "placementX" : 15.0,
- "placementY" : 421.39,
- "placementWidth" : 144.84,
- "placementHeight" : 19.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 144.84,
- "contentHeight" : 19.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarlanguages[3]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarlanguages[3]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 396.39,
- "placementX" : 15.0,
- "placementY" : 396.39,
- "placementWidth" : 135.008,
- "placementHeight" : 19.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 135.008,
- "contentHeight" : 19.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarlanguages[3]/LineNode[3]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarlanguages[3]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 384.39,
- "placementX" : 15.0,
- "placementY" : 384.39,
- "placementWidth" : 118.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 118.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarinterests[4]",
- "entityName" : "TimelineMinimalSidebarinterests",
- "entityKind" : "SectionNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]",
- "childIndex" : 4,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 15.0,
- "computedY" : 297.39,
- "placementX" : 15.0,
- "placementY" : 297.39,
- "placementWidth" : 144.84,
- "placementHeight" : 77.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 144.84,
- "contentHeight" : 77.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarinterests[4]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarinterests[4]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 359.39,
- "placementX" : 15.0,
- "placementY" : 359.39,
- "placementWidth" : 48.938,
- "placementHeight" : 15.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 48.938,
- "contentHeight" : 15.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarinterests[4]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarinterests[4]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 334.39,
- "placementX" : 15.0,
- "placementY" : 334.39,
- "placementWidth" : 144.84,
- "placementHeight" : 19.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 144.84,
- "contentHeight" : 19.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarinterests[4]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarinterests[4]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 309.39,
- "placementX" : 15.0,
- "placementY" : 309.39,
- "placementWidth" : 135.008,
- "placementHeight" : 19.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 135.008,
- "contentHeight" : 19.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarinterests[4]/LineNode[3]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalSidebar[0]/TimelineMinimalSidebarinterests[4]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 15.0,
- "computedY" : 297.39,
- "placementX" : 15.0,
- "placementY" : 297.39,
- "placementWidth" : 118.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 118.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalAxis[1]",
- "entityName" : "TimelineMinimalAxis",
- "entityKind" : "SectionNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 184.202,
- "computedY" : 68.39,
- "placementX" : 184.202,
- "placementY" : 68.39,
- "placementWidth" : 7.0,
- "placementHeight" : 669.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 7.0,
- "contentHeight" : 669.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 28.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalAxis[1]/LineNode[0]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalAxis[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 187.202,
- "computedY" : 554.39,
- "placementX" : 187.202,
- "placementY" : 554.39,
- "placementWidth" : 1.0,
- "placementHeight" : 155.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 1.0,
- "contentHeight" : 155.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 3.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalAxis[1]/EllipseNode[1]",
- "entityName" : null,
- "entityKind" : "EllipseNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalAxis[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 184.202,
- "computedY" : 547.39,
- "placementX" : 184.202,
- "placementY" : 547.39,
- "placementWidth" : 7.0,
- "placementHeight" : 7.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 7.0,
- "contentHeight" : 7.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalAxis[1]/LineNode[2]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalAxis[1]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 187.202,
- "computedY" : 392.39,
- "placementX" : 187.202,
- "placementY" : 392.39,
- "placementWidth" : 1.0,
- "placementHeight" : 155.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 1.0,
- "contentHeight" : 155.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 3.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalAxis[1]/EllipseNode[3]",
- "entityName" : null,
- "entityKind" : "EllipseNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalAxis[1]",
- "childIndex" : 3,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 184.202,
- "computedY" : 385.39,
- "placementX" : 184.202,
- "placementY" : 385.39,
- "placementWidth" : 7.0,
- "placementHeight" : 7.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 7.0,
- "contentHeight" : 7.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalAxis[1]/LineNode[4]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalAxis[1]",
- "childIndex" : 4,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 187.202,
- "computedY" : 230.39,
- "placementX" : 187.202,
- "placementY" : 230.39,
- "placementWidth" : 1.0,
- "placementHeight" : 155.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 1.0,
- "contentHeight" : 155.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 3.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalAxis[1]/EllipseNode[5]",
- "entityName" : null,
- "entityKind" : "EllipseNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalAxis[1]",
- "childIndex" : 5,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 184.202,
- "computedY" : 223.39,
- "placementX" : 184.202,
- "placementY" : 223.39,
- "placementWidth" : 7.0,
- "placementHeight" : 7.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 7.0,
- "contentHeight" : 7.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalAxis[1]/LineNode[6]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalAxis[1]",
- "childIndex" : 6,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 187.202,
- "computedY" : 68.39,
- "placementX" : 187.202,
- "placementY" : 68.39,
- "placementWidth" : 1.0,
- "placementHeight" : 155.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 1.0,
- "contentHeight" : 155.0,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 3.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]",
- "entityName" : "TimelineMinimalMain",
- "entityKind" : "SectionNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 225.045,
- "computedY" : 615.91,
- "placementX" : 225.045,
- "placementY" : 615.91,
- "placementWidth" : 339.834,
- "placementHeight" : 121.48,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 339.834,
- "contentHeight" : 121.48,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]/TimelineMinimalMainprofessionalprofile[0]",
- "entityName" : "TimelineMinimalMainprofessionalprofile",
- "entityKind" : "SectionNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 225.045,
- "computedY" : 683.83,
- "placementX" : 225.045,
- "placementY" : 683.83,
- "placementWidth" : 339.834,
- "placementHeight" : 53.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 339.834,
- "contentHeight" : 53.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]/TimelineMinimalMainprofessionalprofile[0]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]/TimelineMinimalMainprofessionalprofile[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 225.045,
- "computedY" : 721.19,
- "placementX" : 225.045,
- "placementY" : 721.19,
- "placementWidth" : 113.467,
- "placementHeight" : 16.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 113.467,
- "contentHeight" : 16.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]/TimelineMinimalMainprofessionalprofile[0]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]/TimelineMinimalMainprofessionalprofile[0]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 225.045,
- "computedY" : 695.83,
- "placementX" : 225.045,
- "placementY" : 695.83,
- "placementWidth" : 339.834,
- "placementHeight" : 20.36,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 339.834,
- "contentHeight" : 20.36,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]/TimelineMinimalMainprofessionalprofile[0]/LineNode[2]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]/TimelineMinimalMainprofessionalprofile[0]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 225.045,
- "computedY" : 683.83,
- "placementX" : 225.045,
- "placementY" : 683.83,
- "placementWidth" : 300.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 300.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]/TimelineMinimalMainworkexperience[1]",
- "entityName" : "TimelineMinimalMainworkexperience",
- "entityKind" : "SectionNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 225.045,
- "computedY" : 615.91,
- "placementX" : 225.045,
- "placementY" : 615.91,
- "placementWidth" : 335.494,
- "placementHeight" : 56.92,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 335.494,
- "contentHeight" : 56.92,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]/TimelineMinimalMainworkexperience[1]/ParagraphNode[0]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]/TimelineMinimalMainworkexperience[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 225.045,
- "computedY" : 656.63,
- "placementX" : 225.045,
- "placementY" : 656.63,
- "placementWidth" : 90.383,
- "placementHeight" : 16.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 90.383,
- "contentHeight" : 16.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]/TimelineMinimalMainworkexperience[1]/ParagraphNode[1]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]/TimelineMinimalMainworkexperience[1]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 225.045,
- "computedY" : 642.27,
- "placementX" : 225.045,
- "placementY" : 642.27,
- "placementWidth" : 322.608,
- "placementHeight" : 9.36,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 322.608,
- "contentHeight" : 9.36,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]/TimelineMinimalMainworkexperience[1]/ParagraphNode[2]",
- "entityName" : null,
- "entityKind" : "ParagraphNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]/TimelineMinimalMainworkexperience[1]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 225.045,
- "computedY" : 627.91,
- "placementX" : 225.045,
- "placementY" : 627.91,
- "placementWidth" : 335.494,
- "placementHeight" : 9.36,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 335.494,
- "contentHeight" : 9.36,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]/TimelineMinimalMainworkexperience[1]/LineNode[3]",
- "entityName" : null,
- "entityKind" : "LineNode",
- "parentPath" : "TimelineMinimalRoot[0]/TimelineMinimalBody[2]/TimelineMinimalMain[2]/TimelineMinimalMainworkexperience[1]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 225.045,
- "computedY" : 615.91,
- "placementX" : 225.045,
- "placementY" : 615.91,
- "placementWidth" : 300.0,
- "placementHeight" : 1.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 300.0,
- "contentHeight" : 1.0,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/invoice/invoice_standard_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/invoice/invoice_standard_layout.json
deleted file mode 100644
index 51afb77df..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/invoice/invoice_standard_layout.json
+++ /dev/null
@@ -1,1517 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 551.276,
- "innerHeight" : 797.89,
- "margin" : {
- "top" : 22.0,
- "right" : 22.0,
- "bottom" : 22.0,
- "left" : 22.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "InvoiceRoot[0]",
- "entityName" : "InvoiceRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 22.0,
- "computedY" : 221.33,
- "placementX" : 22.0,
- "placementY" : 221.33,
- "placementWidth" : 551.276,
- "placementHeight" : 598.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 551.276,
- "contentHeight" : 598.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceHeader[0]",
- "entityName" : "InvoiceHeader",
- "entityKind" : "RowNode",
- "parentPath" : "InvoiceRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 737.36,
- "placementX" : 22.0,
- "placementY" : 737.36,
- "placementWidth" : 551.276,
- "placementHeight" : 82.53,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 551.276,
- "contentHeight" : 82.53,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceHeader[0]/InvoiceHeaderMeta[0]",
- "entityName" : "InvoiceHeaderMeta",
- "entityKind" : "SectionNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 766.15,
- "placementX" : 22.0,
- "placementY" : 766.15,
- "placementWidth" : 182.0,
- "placementHeight" : 53.74,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 182.0,
- "contentHeight" : 53.74,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceHeader[0]/InvoiceHeaderMeta[0]/InvoiceHeaderMetaTable[0]",
- "entityName" : "InvoiceHeaderMetaTable",
- "entityKind" : "TableNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceHeader[0]/InvoiceHeaderMeta[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 766.15,
- "placementX" : 22.0,
- "placementY" : 766.15,
- "placementWidth" : 182.0,
- "placementHeight" : 53.74,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 182.0,
- "contentHeight" : 53.74,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceHeader[0]/InvoiceHeaderTitle[1]",
- "entityName" : "InvoiceHeaderTitle",
- "entityKind" : "SectionNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceHeader[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 222.0,
- "computedY" : 737.36,
- "placementX" : 222.0,
- "placementY" : 737.36,
- "placementWidth" : 148.122,
- "placementHeight" : 82.53,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 148.122,
- "contentHeight" : 82.53,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceHeader[0]/InvoiceHeaderTitle[1]/InvoiceTitle[0]",
- "entityName" : "InvoiceTitle",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceHeader[0]/InvoiceHeaderTitle[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 222.0,
- "computedY" : 780.69,
- "placementX" : 222.0,
- "placementY" : 780.69,
- "placementWidth" : 104.944,
- "placementHeight" : 39.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 104.944,
- "contentHeight" : 39.2,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceHeader[0]/InvoiceHeaderTitle[1]/InvoiceNumber[1]",
- "entityName" : "InvoiceNumber",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceHeader[0]/InvoiceHeaderTitle[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 222.0,
- "computedY" : 759.885,
- "placementX" : 222.0,
- "placementY" : 759.885,
- "placementWidth" : 109.583,
- "placementHeight" : 9.805,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 109.583,
- "contentHeight" : 9.805,
- "margin" : {
- "top" : 11.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceHeader[0]/InvoiceHeaderTitle[1]/InvoiceStatus[2]",
- "entityName" : "InvoiceStatus",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceHeader[0]/InvoiceHeaderTitle[1]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 222.0,
- "computedY" : 750.06,
- "placementX" : 222.0,
- "placementY" : 750.06,
- "placementWidth" : 68.508,
- "placementHeight" : 8.325,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 68.508,
- "contentHeight" : 8.325,
- "margin" : {
- "top" : 1.5,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceHeader[0]/InvoiceHeaderTitle[1]/InvoiceReference[3]",
- "entityName" : "InvoiceReference",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceHeader[0]/InvoiceHeaderTitle[1]",
- "childIndex" : 3,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 222.0,
- "computedY" : 737.36,
- "placementX" : 222.0,
- "placementY" : 737.36,
- "placementWidth" : 148.122,
- "placementHeight" : 11.7,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 148.122,
- "contentHeight" : 11.7,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceRule[1]",
- "entityName" : "InvoiceRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "InvoiceRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 706.16,
- "placementX" : 22.0,
- "placementY" : 706.16,
- "placementWidth" : 551.276,
- "placementHeight" : 17.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 551.276,
- "contentHeight" : 17.2,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]",
- "entityName" : "InvoiceParties",
- "entityKind" : "RowNode",
- "parentPath" : "InvoiceRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 609.9,
- "placementX" : 22.0,
- "placementY" : 609.9,
- "placementWidth" : 551.276,
- "placementHeight" : 86.26,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 551.276,
- "contentHeight" : 86.26,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]",
- "entityName" : "InvoiceBillTo",
- "entityKind" : "SectionNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 609.9,
- "placementX" : 22.0,
- "placementY" : 609.9,
- "placementWidth" : 137.108,
- "placementHeight" : 86.26,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 137.108,
- "contentHeight" : 86.26,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]/InvoiceBILLTOHeading[0]",
- "entityName" : "InvoiceBILLTOHeading",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 688.297,
- "placementX" : 22.0,
- "placementY" : 688.297,
- "placementWidth" : 33.057,
- "placementHeight" : 7.863,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 33.057,
- "contentHeight" : 7.863,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]/InvoiceBILLTOName[1]",
- "entityName" : "InvoiceBILLTOName",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 671.955,
- "placementX" : 22.0,
- "placementY" : 671.955,
- "placementWidth" : 94.284,
- "placementHeight" : 9.343,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 94.284,
- "contentHeight" : 9.343,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]/InvoiceBILLTOAddress[2]",
- "entityName" : "InvoiceBILLTOAddress",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 661.612,
- "placementX" : 22.0,
- "placementY" : 661.612,
- "placementWidth" : 88.133,
- "placementHeight" : 9.343,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 88.133,
- "contentHeight" : 9.343,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]/InvoiceBILLTOAddress[3]",
- "entityName" : "InvoiceBILLTOAddress",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]",
- "childIndex" : 3,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 651.27,
- "placementX" : 22.0,
- "placementY" : 651.27,
- "placementWidth" : 87.577,
- "placementHeight" : 9.343,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 87.577,
- "contentHeight" : 9.343,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]/InvoiceBILLTOAddress[4]",
- "entityName" : "InvoiceBILLTOAddress",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]",
- "childIndex" : 4,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 640.927,
- "placementX" : 22.0,
- "placementY" : 640.927,
- "placementWidth" : 72.407,
- "placementHeight" : 9.343,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 72.407,
- "contentHeight" : 9.343,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]/InvoiceBILLTOEmail[5]",
- "entityName" : "InvoiceBILLTOEmail",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]",
- "childIndex" : 5,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 630.585,
- "placementX" : 22.0,
- "placementY" : 630.585,
- "placementWidth" : 137.108,
- "placementHeight" : 9.343,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 137.108,
- "contentHeight" : 9.343,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]/InvoiceBILLTOPhone[6]",
- "entityName" : "InvoiceBILLTOPhone",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]",
- "childIndex" : 6,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 620.242,
- "placementX" : 22.0,
- "placementY" : 620.242,
- "placementWidth" : 116.524,
- "placementHeight" : 9.343,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 116.524,
- "contentHeight" : 9.343,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]/InvoiceBILLTOTax ID[7]",
- "entityName" : "InvoiceBILLTOTax ID",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceBillTo[0]",
- "childIndex" : 7,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 609.9,
- "placementX" : 22.0,
- "placementY" : 609.9,
- "placementWidth" : 92.607,
- "placementHeight" : 9.343,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 92.607,
- "contentHeight" : 9.343,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]",
- "entityName" : "InvoiceFrom",
- "entityKind" : "SectionNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 195.0,
- "computedY" : 609.9,
- "placementX" : 195.0,
- "placementY" : 609.9,
- "placementWidth" : 152.823,
- "placementHeight" : 86.26,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 152.823,
- "contentHeight" : 86.26,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]/InvoiceFROMHeading[0]",
- "entityName" : "InvoiceFROMHeading",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 195.0,
- "computedY" : 688.297,
- "placementX" : 195.0,
- "placementY" : 688.297,
- "placementWidth" : 25.024,
- "placementHeight" : 7.863,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 25.024,
- "contentHeight" : 7.863,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]/InvoiceFROMName[1]",
- "entityName" : "InvoiceFROMName",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 195.0,
- "computedY" : 671.955,
- "placementX" : 195.0,
- "placementY" : 671.955,
- "placementWidth" : 109.989,
- "placementHeight" : 9.343,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 109.989,
- "contentHeight" : 9.343,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]/InvoiceFROMAddress[2]",
- "entityName" : "InvoiceFROMAddress",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 195.0,
- "computedY" : 661.612,
- "placementX" : 195.0,
- "placementY" : 661.612,
- "placementWidth" : 74.114,
- "placementHeight" : 9.343,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 74.114,
- "contentHeight" : 9.343,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]/InvoiceFROMAddress[3]",
- "entityName" : "InvoiceFROMAddress",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]",
- "childIndex" : 3,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 195.0,
- "computedY" : 651.27,
- "placementX" : 195.0,
- "placementY" : 651.27,
- "placementWidth" : 53.338,
- "placementHeight" : 9.343,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 53.338,
- "contentHeight" : 9.343,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]/InvoiceFROMAddress[4]",
- "entityName" : "InvoiceFROMAddress",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]",
- "childIndex" : 4,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 195.0,
- "computedY" : 640.927,
- "placementX" : 195.0,
- "placementY" : 640.927,
- "placementWidth" : 49.955,
- "placementHeight" : 9.343,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 49.955,
- "contentHeight" : 9.343,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]/InvoiceFROMEmail[5]",
- "entityName" : "InvoiceFROMEmail",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]",
- "childIndex" : 5,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 195.0,
- "computedY" : 630.585,
- "placementX" : 195.0,
- "placementY" : 630.585,
- "placementWidth" : 152.823,
- "placementHeight" : 9.343,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 152.823,
- "contentHeight" : 9.343,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]/InvoiceFROMPhone[6]",
- "entityName" : "InvoiceFROMPhone",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]",
- "childIndex" : 6,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 195.0,
- "computedY" : 620.242,
- "placementX" : 195.0,
- "placementY" : 620.242,
- "placementWidth" : 116.524,
- "placementHeight" : 9.343,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 116.524,
- "contentHeight" : 9.343,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]/InvoiceFROMTax ID[7]",
- "entityName" : "InvoiceFROMTax ID",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceParties[2]/InvoiceFrom[1]",
- "childIndex" : 7,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 195.0,
- "computedY" : 609.9,
- "placementX" : 195.0,
- "placementY" : 609.9,
- "placementWidth" : 98.243,
- "placementHeight" : 9.343,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 98.243,
- "contentHeight" : 9.343,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]",
- "entityName" : "InvoiceItems",
- "entityKind" : "SectionNode",
- "parentPath" : "InvoiceRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 276.932,
- "placementX" : 22.0,
- "placementY" : 276.932,
- "placementWidth" : 551.276,
- "placementHeight" : 322.968,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 551.276,
- "contentHeight" : 322.968,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceItemsTitle[0]",
- "entityName" : "InvoiceItemsTitle",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 586.037,
- "placementX" : 22.0,
- "placementY" : 586.037,
- "placementWidth" : 47.702,
- "placementHeight" : 7.863,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 47.702,
- "contentHeight" : 7.863,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceItemsRule[1]",
- "entityName" : "InvoiceItemsRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 558.837,
- "placementX" : 22.0,
- "placementY" : 558.837,
- "placementWidth" : 128.0,
- "placementHeight" : 17.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 128.0,
- "contentHeight" : 17.2,
- "margin" : {
- "top" : 10.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceItemsTable[2]",
- "entityName" : "InvoiceItemsTable",
- "entityKind" : "TableNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 427.827,
- "placementX" : 22.0,
- "placementY" : 427.827,
- "placementWidth" : 551.276,
- "placementHeight" : 117.01,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 551.276,
- "contentHeight" : 117.01,
- "margin" : {
- "top" : 14.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]",
- "entityName" : "InvoiceSummaryNotes",
- "entityKind" : "RowNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]",
- "childIndex" : 3,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 276.932,
- "placementX" : 22.0,
- "placementY" : 276.932,
- "placementWidth" : 551.276,
- "placementHeight" : 132.895,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 551.276,
- "contentHeight" : 132.895,
- "margin" : {
- "top" : 18.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceSummaryColumn[0]",
- "entityName" : "InvoiceSummaryColumn",
- "entityKind" : "SectionNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 339.8,
- "placementX" : 22.0,
- "placementY" : 339.8,
- "placementWidth" : 206.0,
- "placementHeight" : 70.028,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 206.0,
- "contentHeight" : 70.028,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceSummaryColumn[0]/InvoiceSummary[0]",
- "entityName" : "InvoiceSummary",
- "entityKind" : "TableNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceSummaryColumn[0]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 22.0,
- "computedY" : 339.8,
- "placementX" : 22.0,
- "placementY" : 339.8,
- "placementWidth" : 206.0,
- "placementHeight" : 70.028,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 206.0,
- "contentHeight" : 70.028,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]",
- "entityName" : "InvoiceNotesColumn",
- "entityKind" : "SectionNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 246.0,
- "computedY" : 276.932,
- "placementX" : 246.0,
- "placementY" : 276.932,
- "placementWidth" : 308.376,
- "placementHeight" : 132.895,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 308.376,
- "contentHeight" : 132.895,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]/InvoiceNotesHeading[0]",
- "entityName" : "InvoiceNotesHeading",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]",
- "childIndex" : 0,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 246.0,
- "computedY" : 401.965,
- "placementX" : 246.0,
- "placementY" : 401.965,
- "placementWidth" : 29.283,
- "placementHeight" : 7.863,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 29.283,
- "contentHeight" : 7.863,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]/InvoiceNotesRule[1]",
- "entityName" : "InvoiceNotesRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]",
- "childIndex" : 1,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 246.0,
- "computedY" : 382.965,
- "placementX" : 246.0,
- "placementY" : 382.965,
- "placementWidth" : 128.0,
- "placementHeight" : 17.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 128.0,
- "contentHeight" : 17.0,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]/InvoiceNotesBody[2]",
- "entityName" : "InvoiceNotesBody",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]",
- "childIndex" : 2,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 246.0,
- "computedY" : 371.27,
- "placementX" : 246.0,
- "placementY" : 371.27,
- "placementWidth" : 256.0,
- "placementHeight" : 8.695,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 256.0,
- "contentHeight" : 8.695,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]/InvoiceNotesBody[3]",
- "entityName" : "InvoiceNotesBody",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]",
- "childIndex" : 3,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 246.0,
- "computedY" : 359.575,
- "placementX" : 246.0,
- "placementY" : 359.575,
- "placementWidth" : 306.13,
- "placementHeight" : 8.695,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 306.13,
- "contentHeight" : 8.695,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]/InvoicePaymentTermsHeading[4]",
- "entityName" : "InvoicePaymentTermsHeading",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]",
- "childIndex" : 4,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 246.0,
- "computedY" : 342.712,
- "placementX" : 246.0,
- "placementY" : 342.712,
- "placementWidth" : 73.67,
- "placementHeight" : 7.863,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 73.67,
- "contentHeight" : 7.863,
- "margin" : {
- "top" : 9.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]/InvoicePaymentTermsRule[5]",
- "entityName" : "InvoicePaymentTermsRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]",
- "childIndex" : 5,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 246.0,
- "computedY" : 323.712,
- "placementX" : 246.0,
- "placementY" : 323.712,
- "placementWidth" : 128.0,
- "placementHeight" : 17.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 128.0,
- "contentHeight" : 17.0,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]/InvoicePaymentTermsBody[6]",
- "entityName" : "InvoicePaymentTermsBody",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]",
- "childIndex" : 6,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 246.0,
- "computedY" : 312.017,
- "placementX" : 246.0,
- "placementY" : 312.017,
- "placementWidth" : 158.832,
- "placementHeight" : 8.695,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 158.832,
- "contentHeight" : 8.695,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]/InvoicePaymentTermsBody[7]",
- "entityName" : "InvoicePaymentTermsBody",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]",
- "childIndex" : 7,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 246.0,
- "computedY" : 300.322,
- "placementX" : 246.0,
- "placementY" : 300.322,
- "placementWidth" : 308.376,
- "placementHeight" : 8.695,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 308.376,
- "contentHeight" : 8.695,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]/InvoicePaymentTermsBody[8]",
- "entityName" : "InvoicePaymentTermsBody",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]",
- "childIndex" : 8,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 246.0,
- "computedY" : 288.627,
- "placementX" : 246.0,
- "placementY" : 288.627,
- "placementWidth" : 29.779,
- "placementHeight" : 8.695,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 29.779,
- "contentHeight" : 8.695,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]/InvoicePaymentTermsBody[9]",
- "entityName" : "InvoicePaymentTermsBody",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceItems[3]/InvoiceSummaryNotes[3]/InvoiceNotesColumn[1]",
- "childIndex" : 9,
- "depth" : 5,
- "layer" : 5,
- "computedX" : 246.0,
- "computedY" : 276.932,
- "placementX" : 246.0,
- "placementY" : 276.932,
- "placementWidth" : 273.756,
- "placementHeight" : 8.695,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 273.756,
- "contentHeight" : 8.695,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceFooter[4]",
- "entityName" : "InvoiceFooter",
- "entityKind" : "SectionNode",
- "parentPath" : "InvoiceRoot[0]",
- "childIndex" : 4,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 221.33,
- "placementX" : 22.0,
- "placementY" : 221.33,
- "placementWidth" : 551.276,
- "placementHeight" : 45.603,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 551.276,
- "contentHeight" : 45.603,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceFooter[4]/InvoiceFooterRule[0]",
- "entityName" : "InvoiceFooterRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceFooter[4]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 243.932,
- "placementX" : 22.0,
- "placementY" : 243.932,
- "placementWidth" : 551.276,
- "placementHeight" : 17.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 551.276,
- "contentHeight" : 17.0,
- "margin" : {
- "top" : 6.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "InvoiceRoot[0]/InvoiceFooter[4]/InvoiceFooter[1]",
- "entityName" : "InvoiceFooter",
- "entityKind" : "ParagraphNode",
- "parentPath" : "InvoiceRoot[0]/InvoiceFooter[4]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 221.33,
- "placementX" : 22.0,
- "placementY" : 221.33,
- "placementWidth" : 312.21,
- "placementHeight" : 8.603,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 312.21,
- "contentHeight" : 8.603,
- "margin" : {
- "top" : 14.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/proposal/proposal_long_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/proposal/proposal_long_layout.json
deleted file mode 100644
index 60e6da533..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/proposal/proposal_long_layout.json
+++ /dev/null
@@ -1,1907 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 595.276,
- "pageHeight" : 841.89,
- "innerWidth" : 551.276,
- "innerHeight" : 797.89,
- "margin" : {
- "top" : 22.0,
- "right" : 22.0,
- "bottom" : 22.0,
- "left" : 22.0
- }
- },
- "totalPages" : 2,
- "nodes" : [ {
- "path" : "ProposalRoot[0]",
- "entityName" : "ProposalRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 22.0,
- "computedY" : -682.273,
- "placementX" : 22.0,
- "placementY" : -682.273,
- "placementWidth" : 551.276,
- "placementHeight" : 1502.162,
- "startPage" : 0,
- "endPage" : 1,
- "contentWidth" : 551.276,
- "contentHeight" : 1502.162,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalHeader[0]",
- "entityName" : "ProposalHeader",
- "entityKind" : "RowNode",
- "parentPath" : "ProposalRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 752.22,
- "placementX" : 22.0,
- "placementY" : 752.22,
- "placementWidth" : 551.276,
- "placementHeight" : 67.67,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 551.276,
- "contentHeight" : 67.67,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalHeader[0]/ProposalHeaderTitle[0]",
- "entityName" : "ProposalHeaderTitle",
- "entityKind" : "SectionNode",
- "parentPath" : "ProposalRoot[0]/ProposalHeader[0]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 752.22,
- "placementX" : 22.0,
- "placementY" : 752.22,
- "placementWidth" : 230.554,
- "placementHeight" : 67.67,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 230.554,
- "contentHeight" : 67.67,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalHeader[0]/ProposalHeaderTitle[0]/ProposalTitle[0]",
- "entityName" : "ProposalTitle",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalHeader[0]/ProposalHeaderTitle[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 782.09,
- "placementX" : 22.0,
- "placementY" : 782.09,
- "placementWidth" : 122.499,
- "placementHeight" : 37.8,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 122.499,
- "contentHeight" : 37.8,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalHeader[0]/ProposalHeaderTitle[0]/ProposalProjectTitle[1]",
- "entityName" : "ProposalProjectTitle",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalHeader[0]/ProposalHeaderTitle[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 763.545,
- "placementX" : 22.0,
- "placementY" : 763.545,
- "placementWidth" : 230.554,
- "placementHeight" : 10.545,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 230.554,
- "contentHeight" : 10.545,
- "margin" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalHeader[0]/ProposalHeaderTitle[0]/ProposalNumber[2]",
- "entityName" : "ProposalNumber",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalHeader[0]/ProposalHeaderTitle[0]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 752.22,
- "placementX" : 22.0,
- "placementY" : 752.22,
- "placementWidth" : 112.545,
- "placementHeight" : 8.325,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 112.545,
- "contentHeight" : 8.325,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalHeader[0]/ProposalHeaderMeta[1]",
- "entityName" : "ProposalHeaderMeta",
- "entityKind" : "SectionNode",
- "parentPath" : "ProposalRoot[0]/ProposalHeader[0]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 383.276,
- "computedY" : 780.972,
- "placementX" : 383.276,
- "placementY" : 780.972,
- "placementWidth" : 190.0,
- "placementHeight" : 38.917,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 190.0,
- "contentHeight" : 38.917,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalHeader[0]/ProposalHeaderMeta[1]/ProposalHeaderMetaTable[0]",
- "entityName" : "ProposalHeaderMetaTable",
- "entityKind" : "TableNode",
- "parentPath" : "ProposalRoot[0]/ProposalHeader[0]/ProposalHeaderMeta[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 383.276,
- "computedY" : 780.972,
- "placementX" : 383.276,
- "placementY" : 780.972,
- "placementWidth" : 190.0,
- "placementHeight" : 38.917,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 190.0,
- "contentHeight" : 38.917,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalRule[1]",
- "entityName" : "ProposalRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "ProposalRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 725.02,
- "placementX" : 22.0,
- "placementY" : 725.02,
- "placementWidth" : 551.276,
- "placementHeight" : 17.2,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 551.276,
- "contentHeight" : 17.2,
- "margin" : {
- "top" : 3.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]",
- "entityName" : "ProposalParties",
- "entityKind" : "RowNode",
- "parentPath" : "ProposalRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 632.407,
- "placementX" : 22.0,
- "placementY" : 632.407,
- "placementWidth" : 551.276,
- "placementHeight" : 85.612,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 551.276,
- "contentHeight" : 85.612,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]",
- "entityName" : "ProposalPreparedBy",
- "entityKind" : "SectionNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 632.407,
- "placementX" : 22.0,
- "placementY" : 632.407,
- "placementWidth" : 146.87,
- "placementHeight" : 85.612,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 146.87,
- "contentHeight" : 85.612,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]/ProposalPREPAREDBYHeading[0]",
- "entityName" : "ProposalPREPAREDBYHeading",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 710.157,
- "placementX" : 22.0,
- "placementY" : 710.157,
- "placementWidth" : 61.396,
- "placementHeight" : 7.863,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 61.396,
- "contentHeight" : 7.863,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]/ProposalPREPAREDBYName[1]",
- "entityName" : "ProposalPREPAREDBYName",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 693.907,
- "placementX" : 22.0,
- "placementY" : 693.907,
- "placementWidth" : 108.9,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 108.9,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]/ProposalPREPAREDBYAddress[2]",
- "entityName" : "ProposalPREPAREDBYAddress",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 683.657,
- "placementX" : 22.0,
- "placementY" : 683.657,
- "placementWidth" : 73.38,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 73.38,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]/ProposalPREPAREDBYAddress[3]",
- "entityName" : "ProposalPREPAREDBYAddress",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]",
- "childIndex" : 3,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 673.407,
- "placementX" : 22.0,
- "placementY" : 673.407,
- "placementWidth" : 52.81,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 52.81,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]/ProposalPREPAREDBYAddress[4]",
- "entityName" : "ProposalPREPAREDBYAddress",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]",
- "childIndex" : 4,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 663.157,
- "placementX" : 22.0,
- "placementY" : 663.157,
- "placementWidth" : 49.46,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 49.46,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]/ProposalPREPAREDBYEmail[5]",
- "entityName" : "ProposalPREPAREDBYEmail",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]",
- "childIndex" : 5,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 652.907,
- "placementX" : 22.0,
- "placementY" : 652.907,
- "placementWidth" : 146.87,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 146.87,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]/ProposalPREPAREDBYPhone[6]",
- "entityName" : "ProposalPREPAREDBYPhone",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]",
- "childIndex" : 6,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 642.657,
- "placementX" : 22.0,
- "placementY" : 642.657,
- "placementWidth" : 115.37,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 115.37,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]/ProposalPREPAREDBYWeb[7]",
- "entityName" : "ProposalPREPAREDBYWeb",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedBy[0]",
- "childIndex" : 7,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 22.0,
- "computedY" : 632.407,
- "placementX" : 22.0,
- "placementY" : 632.407,
- "placementWidth" : 111.16,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 111.16,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]",
- "entityName" : "ProposalPreparedFor",
- "entityKind" : "SectionNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 306.638,
- "computedY" : 632.407,
- "placementX" : 306.638,
- "placementY" : 632.407,
- "placementWidth" : 160.75,
- "placementHeight" : 85.612,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 160.75,
- "contentHeight" : 85.612,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]/ProposalPREPAREDFORHeading[0]",
- "entityName" : "ProposalPREPAREDFORHeading",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]",
- "childIndex" : 0,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 306.638,
- "computedY" : 710.157,
- "placementX" : 306.638,
- "placementY" : 710.157,
- "placementWidth" : 67.533,
- "placementHeight" : 7.863,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 67.533,
- "contentHeight" : 7.863,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]/ProposalPREPAREDFORName[1]",
- "entityName" : "ProposalPREPAREDFORName",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]",
- "childIndex" : 1,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 306.638,
- "computedY" : 693.907,
- "placementX" : 306.638,
- "placementY" : 693.907,
- "placementWidth" : 93.35,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 93.35,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]/ProposalPREPAREDFORAddress[2]",
- "entityName" : "ProposalPREPAREDFORAddress",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]",
- "childIndex" : 2,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 306.638,
- "computedY" : 683.657,
- "placementX" : 306.638,
- "placementY" : 683.657,
- "placementWidth" : 90.6,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 90.6,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]/ProposalPREPAREDFORAddress[3]",
- "entityName" : "ProposalPREPAREDFORAddress",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]",
- "childIndex" : 3,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 306.638,
- "computedY" : 673.407,
- "placementX" : 306.638,
- "placementY" : 673.407,
- "placementWidth" : 86.71,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 86.71,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]/ProposalPREPAREDFORAddress[4]",
- "entityName" : "ProposalPREPAREDFORAddress",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]",
- "childIndex" : 4,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 306.638,
- "computedY" : 663.157,
- "placementX" : 306.638,
- "placementY" : 663.157,
- "placementWidth" : 71.69,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 71.69,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]/ProposalPREPAREDFOREmail[5]",
- "entityName" : "ProposalPREPAREDFOREmail",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]",
- "childIndex" : 5,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 306.638,
- "computedY" : 652.907,
- "placementX" : 306.638,
- "placementY" : 652.907,
- "placementWidth" : 160.75,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 160.75,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]/ProposalPREPAREDFORPhone[6]",
- "entityName" : "ProposalPREPAREDFORPhone",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]",
- "childIndex" : 6,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 306.638,
- "computedY" : 642.657,
- "placementX" : 306.638,
- "placementY" : 642.657,
- "placementWidth" : 115.37,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 115.37,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]/ProposalPREPAREDFORWeb[7]",
- "entityName" : "ProposalPREPAREDFORWeb",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalParties[2]/ProposalPreparedFor[1]",
- "childIndex" : 7,
- "depth" : 4,
- "layer" : 4,
- "computedX" : 306.638,
- "computedY" : 632.407,
- "placementX" : 306.638,
- "placementY" : 632.407,
- "placementWidth" : 110.04,
- "placementHeight" : 9.25,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 110.04,
- "contentHeight" : 9.25,
- "margin" : {
- "top" : 1.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSummary[3]",
- "entityName" : "ProposalSummary",
- "entityKind" : "SectionNode",
- "parentPath" : "ProposalRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 505.695,
- "placementX" : 22.0,
- "placementY" : 505.695,
- "placementWidth" : 550.21,
- "placementHeight" : 119.712,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 550.21,
- "contentHeight" : 119.712,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSummary[3]/ProposalSummaryTitle[0]",
- "entityName" : "ProposalSummaryTitle",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalSummary[3]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 613.545,
- "placementX" : 22.0,
- "placementY" : 613.545,
- "placementWidth" : 94.452,
- "placementHeight" : 7.863,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 94.452,
- "contentHeight" : 7.863,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSummary[3]/ProposalSummaryRule[1]",
- "entityName" : "ProposalSummaryRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "ProposalRoot[0]/ProposalSummary[3]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 589.445,
- "placementX" : 22.0,
- "placementY" : 589.445,
- "placementWidth" : 170.0,
- "placementHeight" : 17.1,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 170.0,
- "contentHeight" : 17.1,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSummary[3]/ProposalExecutiveSummary[2]",
- "entityName" : "ProposalExecutiveSummary",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalSummary[3]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 505.695,
- "placementX" : 22.0,
- "placementY" : 505.695,
- "placementWidth" : 550.21,
- "placementHeight" : 76.75,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 550.21,
- "contentHeight" : 76.75,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSection0[4]",
- "entityName" : "ProposalSection0",
- "entityKind" : "SectionNode",
- "parentPath" : "ProposalRoot[0]",
- "childIndex" : 4,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 322.832,
- "placementX" : 22.0,
- "placementY" : 322.832,
- "placementWidth" : 550.27,
- "placementHeight" : 175.862,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 550.27,
- "contentHeight" : 175.862,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSection0[4]/ProposalSection0Title[0]",
- "entityName" : "ProposalSection0Title",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalSection0[4]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 486.832,
- "placementX" : 22.0,
- "placementY" : 486.832,
- "placementWidth" : 25.508,
- "placementHeight" : 7.863,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 25.508,
- "contentHeight" : 7.863,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSection0[4]/ProposalSection0Rule[1]",
- "entityName" : "ProposalSection0Rule",
- "entityKind" : "ShapeNode",
- "parentPath" : "ProposalRoot[0]/ProposalSection0[4]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 462.832,
- "placementX" : 22.0,
- "placementY" : 462.832,
- "placementWidth" : 132.0,
- "placementHeight" : 17.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 132.0,
- "contentHeight" : 17.0,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSection0[4]/ProposalSection_0[2]",
- "entityName" : "ProposalSection_0",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalSection0[4]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 322.832,
- "placementX" : 22.0,
- "placementY" : 322.832,
- "placementWidth" : 550.27,
- "placementHeight" : 133.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 550.27,
- "contentHeight" : 133.0,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSection1[5]",
- "entityName" : "ProposalSection1",
- "entityKind" : "SectionNode",
- "parentPath" : "ProposalRoot[0]",
- "childIndex" : 5,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 139.97,
- "placementX" : 22.0,
- "placementY" : 139.97,
- "placementWidth" : 545.26,
- "placementHeight" : 175.862,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 545.26,
- "contentHeight" : 175.862,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSection1[5]/ProposalSection1Title[0]",
- "entityName" : "ProposalSection1Title",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalSection1[5]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 303.97,
- "placementX" : 22.0,
- "placementY" : 303.97,
- "placementWidth" : 50.082,
- "placementHeight" : 7.863,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 50.082,
- "contentHeight" : 7.863,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSection1[5]/ProposalSection1Rule[1]",
- "entityName" : "ProposalSection1Rule",
- "entityKind" : "ShapeNode",
- "parentPath" : "ProposalRoot[0]/ProposalSection1[5]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 279.97,
- "placementX" : 22.0,
- "placementY" : 279.97,
- "placementWidth" : 132.0,
- "placementHeight" : 17.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 132.0,
- "contentHeight" : 17.0,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSection1[5]/ProposalSection_1[2]",
- "entityName" : "ProposalSection_1",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalSection1[5]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 139.97,
- "placementX" : 22.0,
- "placementY" : 139.97,
- "placementWidth" : 545.26,
- "placementHeight" : 133.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 545.26,
- "contentHeight" : 133.0,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSection2[6]",
- "entityName" : "ProposalSection2",
- "entityKind" : "SectionNode",
- "parentPath" : "ProposalRoot[0]",
- "childIndex" : 6,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : -54.143,
- "placementX" : 22.0,
- "placementY" : -54.143,
- "placementWidth" : 544.66,
- "placementHeight" : 187.112,
- "startPage" : 0,
- "endPage" : 1,
- "contentWidth" : 544.66,
- "contentHeight" : 187.112,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSection2[6]/ProposalSection2Title[0]",
- "entityName" : "ProposalSection2Title",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalSection2[6]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 121.107,
- "placementX" : 22.0,
- "placementY" : 121.107,
- "placementWidth" : 103.437,
- "placementHeight" : 7.863,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 103.437,
- "contentHeight" : 7.863,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSection2[6]/ProposalSection2Rule[1]",
- "entityName" : "ProposalSection2Rule",
- "entityKind" : "ShapeNode",
- "parentPath" : "ProposalRoot[0]/ProposalSection2[6]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 97.107,
- "placementX" : 22.0,
- "placementY" : 97.107,
- "placementWidth" : 132.0,
- "placementHeight" : 17.0,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 132.0,
- "contentHeight" : 17.0,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSection2[6]/ProposalSection_2[2]",
- "entityName" : "ProposalSection_2",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalSection2[6]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 24.607,
- "placementX" : 22.0,
- "placementY" : 24.607,
- "placementWidth" : 544.66,
- "placementHeight" : 144.25,
- "startPage" : 0,
- "endPage" : 1,
- "contentWidth" : 544.66,
- "contentHeight" : 144.25,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSection3[7]",
- "entityName" : "ProposalSection3",
- "entityKind" : "SectionNode",
- "parentPath" : "ProposalRoot[0]",
- "childIndex" : 7,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 560.277,
- "placementX" : 22.0,
- "placementY" : 560.277,
- "placementWidth" : 550.81,
- "placementHeight" : 175.862,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 550.81,
- "contentHeight" : 175.862,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSection3[7]/ProposalSection3Title[0]",
- "entityName" : "ProposalSection3Title",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalSection3[7]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 724.277,
- "placementX" : 22.0,
- "placementY" : 724.277,
- "placementWidth" : 82.178,
- "placementHeight" : 7.863,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 82.178,
- "contentHeight" : 7.863,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSection3[7]/ProposalSection3Rule[1]",
- "entityName" : "ProposalSection3Rule",
- "entityKind" : "ShapeNode",
- "parentPath" : "ProposalRoot[0]/ProposalSection3[7]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 700.277,
- "placementX" : 22.0,
- "placementY" : 700.277,
- "placementWidth" : 132.0,
- "placementHeight" : 17.0,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 132.0,
- "contentHeight" : 17.0,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalSection3[7]/ProposalSection_3[2]",
- "entityName" : "ProposalSection_3",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalSection3[7]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 560.277,
- "placementX" : 22.0,
- "placementY" : 560.277,
- "placementWidth" : 550.81,
- "placementHeight" : 133.0,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 550.81,
- "contentHeight" : 133.0,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalTimeline[8]",
- "entityName" : "ProposalTimeline",
- "entityKind" : "SectionNode",
- "parentPath" : "ProposalRoot[0]",
- "childIndex" : 8,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 414.73,
- "placementX" : 22.0,
- "placementY" : 414.73,
- "placementWidth" : 551.276,
- "placementHeight" : 138.547,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 551.276,
- "contentHeight" : 138.547,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalTimeline[8]/ProposalTimelineTitle[0]",
- "entityName" : "ProposalTimelineTitle",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalTimeline[8]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 540.415,
- "placementX" : 22.0,
- "placementY" : 540.415,
- "placementWidth" : 39.67,
- "placementHeight" : 7.863,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 39.67,
- "contentHeight" : 7.863,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalTimeline[8]/ProposalTimelineRule[1]",
- "entityName" : "ProposalTimelineRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "ProposalRoot[0]/ProposalTimeline[8]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 516.415,
- "placementX" : 22.0,
- "placementY" : 516.415,
- "placementWidth" : 132.0,
- "placementHeight" : 17.0,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 132.0,
- "contentHeight" : 17.0,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalTimeline[8]/ProposalTimelineTable[2]",
- "entityName" : "ProposalTimelineTable",
- "entityKind" : "TableNode",
- "parentPath" : "ProposalRoot[0]/ProposalTimeline[8]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 414.73,
- "placementX" : 22.0,
- "placementY" : 414.73,
- "placementWidth" : 551.276,
- "placementHeight" : 94.685,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 551.276,
- "contentHeight" : 94.685,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalPricing[9]",
- "entityName" : "ProposalPricing",
- "entityKind" : "SectionNode",
- "parentPath" : "ProposalRoot[0]",
- "childIndex" : 9,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 246.302,
- "placementX" : 22.0,
- "placementY" : 246.302,
- "placementWidth" : 551.276,
- "placementHeight" : 161.427,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 551.276,
- "contentHeight" : 161.427,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalPricing[9]/ProposalPricingTitle[0]",
- "entityName" : "ProposalPricingTitle",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalPricing[9]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 394.867,
- "placementX" : 22.0,
- "placementY" : 394.867,
- "placementWidth" : 35.42,
- "placementHeight" : 7.863,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 35.42,
- "contentHeight" : 7.863,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalPricing[9]/ProposalPricingRule[1]",
- "entityName" : "ProposalPricingRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "ProposalRoot[0]/ProposalPricing[9]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 370.867,
- "placementX" : 22.0,
- "placementY" : 370.867,
- "placementWidth" : 132.0,
- "placementHeight" : 17.0,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 132.0,
- "contentHeight" : 17.0,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalPricing[9]/ProposalPricingTable[2]",
- "entityName" : "ProposalPricingTable",
- "entityKind" : "TableNode",
- "parentPath" : "ProposalRoot[0]/ProposalPricing[9]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 246.302,
- "placementX" : 22.0,
- "placementY" : 246.302,
- "placementWidth" : 551.276,
- "placementHeight" : 117.565,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 551.276,
- "contentHeight" : 117.565,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalAcceptance[10]",
- "entityName" : "ProposalAcceptance",
- "entityKind" : "SectionNode",
- "parentPath" : "ProposalRoot[0]",
- "childIndex" : 10,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 157.52,
- "placementX" : 22.0,
- "placementY" : 157.52,
- "placementWidth" : 402.47,
- "placementHeight" : 81.783,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 402.47,
- "contentHeight" : 81.783,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalAcceptance[10]/ProposalAcceptanceTitle[0]",
- "entityName" : "ProposalAcceptanceTitle",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalAcceptance[10]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 226.44,
- "placementX" : 22.0,
- "placementY" : 226.44,
- "placementWidth" : 59.024,
- "placementHeight" : 7.863,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 59.024,
- "contentHeight" : 7.863,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalAcceptance[10]/ProposalAcceptanceRule[1]",
- "entityName" : "ProposalAcceptanceRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "ProposalRoot[0]/ProposalAcceptance[10]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 202.44,
- "placementX" : 22.0,
- "placementY" : 202.44,
- "placementWidth" : 132.0,
- "placementHeight" : 17.0,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 132.0,
- "contentHeight" : 17.0,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalAcceptance[10]/ProposalAcceptanceTerms[2]",
- "entityName" : "ProposalAcceptanceTerms",
- "entityKind" : "ListNode",
- "parentPath" : "ProposalRoot[0]/ProposalAcceptance[10]",
- "childIndex" : 2,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 157.52,
- "placementX" : 22.0,
- "placementY" : 157.52,
- "placementWidth" : 402.47,
- "placementHeight" : 37.92,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 402.47,
- "contentHeight" : 37.92,
- "margin" : {
- "top" : 7.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalFooter[11]",
- "entityName" : "ProposalFooter",
- "entityKind" : "SectionNode",
- "parentPath" : "ProposalRoot[0]",
- "childIndex" : 11,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 22.0,
- "computedY" : 115.01,
- "placementX" : 22.0,
- "placementY" : 115.01,
- "placementWidth" : 551.276,
- "placementHeight" : 35.51,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 551.276,
- "contentHeight" : 35.51,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalFooter[11]/ProposalFooterRule[0]",
- "entityName" : "ProposalFooterRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "ProposalRoot[0]/ProposalFooter[11]",
- "childIndex" : 0,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 128.52,
- "placementX" : 22.0,
- "placementY" : 128.52,
- "placementWidth" : 551.276,
- "placementHeight" : 17.0,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 551.276,
- "contentHeight" : 17.0,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "ProposalRoot[0]/ProposalFooter[11]/ProposalFooter[1]",
- "entityName" : "ProposalFooter",
- "entityKind" : "ParagraphNode",
- "parentPath" : "ProposalRoot[0]/ProposalFooter[11]",
- "childIndex" : 1,
- "depth" : 3,
- "layer" : 3,
- "computedX" : 22.0,
- "computedY" : 115.01,
- "placementX" : 22.0,
- "placementY" : 115.01,
- "placementWidth" : 393.751,
- "placementHeight" : 8.51,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 393.751,
- "contentHeight" : 8.51,
- "margin" : {
- "top" : 5.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/weekly-schedule/weekly_schedule_changed_category_catalog.json b/qa/src/test/resources/layout-snapshots/canonical-templates/weekly-schedule/weekly_schedule_changed_category_catalog.json
deleted file mode 100644
index 93f7d888b..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/weekly-schedule/weekly_schedule_changed_category_catalog.json
+++ /dev/null
@@ -1,377 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 841.89,
- "pageHeight" : 595.276,
- "innerWidth" : 805.89,
- "innerHeight" : 559.276,
- "margin" : {
- "top" : 18.0,
- "right" : 18.0,
- "bottom" : 18.0,
- "left" : 18.0
- }
- },
- "totalPages" : 2,
- "nodes" : [ {
- "path" : "WeeklyScheduleRoot[0]",
- "entityName" : "WeeklyScheduleRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 18.0,
- "computedY" : -96.574,
- "placementX" : 18.0,
- "placementY" : -96.574,
- "placementWidth" : 805.89,
- "placementHeight" : 673.85,
- "startPage" : 0,
- "endPage" : 1,
- "contentWidth" : 805.89,
- "contentHeight" : 673.85,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleHeader[0]",
- "entityName" : "WeeklyScheduleHeader",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 540.876,
- "placementX" : 18.0,
- "placementY" : 540.876,
- "placementWidth" : 805.89,
- "placementHeight" : 36.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 36.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleRule[1]",
- "entityName" : "WeeklyScheduleRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 516.576,
- "placementX" : 18.0,
- "placementY" : 516.576,
- "placementWidth" : 805.89,
- "placementHeight" : 17.3,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 17.3,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleDayLabels[2]",
- "entityName" : "WeeklyScheduleDayLabels",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 466.216,
- "placementX" : 18.0,
- "placementY" : 466.216,
- "placementWidth" : 805.89,
- "placementHeight" : 43.36,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 43.36,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleDayNotes[3]",
- "entityName" : "WeeklyScheduleDayNotes",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 414.656,
- "placementX" : 18.0,
- "placementY" : 414.656,
- "placementWidth" : 805.89,
- "placementHeight" : 44.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 44.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleDayCategories[4]",
- "entityName" : "WeeklyScheduleDayCategories",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 4,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 382.496,
- "placementX" : 18.0,
- "placementY" : 382.496,
- "placementWidth" : 805.89,
- "placementHeight" : 25.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 25.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleMetricCOVERS[5]",
- "entityName" : "WeeklyScheduleMetricCOVERS",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 5,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 350.336,
- "placementX" : 18.0,
- "placementY" : 350.336,
- "placementWidth" : 805.89,
- "placementHeight" : 25.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 25.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleMetricTEAMFOCUS[6]",
- "entityName" : "WeeklyScheduleMetricTEAMFOCUS",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 6,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 318.176,
- "placementX" : 18.0,
- "placementY" : 318.176,
- "placementWidth" : 805.89,
- "placementHeight" : 25.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 25.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleRoster[7]",
- "entityName" : "WeeklyScheduleRoster",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 7,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 40.686,
- "placementX" : 18.0,
- "placementY" : 40.686,
- "placementWidth" : 805.89,
- "placementHeight" : 326.31,
- "startPage" : 0,
- "endPage" : 1,
- "contentWidth" : 805.89,
- "contentHeight" : 326.31,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleFooterRule[8]",
- "entityName" : "WeeklyScheduleFooterRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 8,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 491.456,
- "placementX" : 18.0,
- "placementY" : 491.456,
- "placementWidth" : 805.89,
- "placementHeight" : 17.0,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 805.89,
- "contentHeight" : 17.0,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleFooterLabel[9]",
- "entityName" : "WeeklyScheduleFooterLabel",
- "entityKind" : "ParagraphNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 9,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 469.296,
- "placementX" : 18.0,
- "placementY" : 469.296,
- "placementWidth" : 27.909,
- "placementHeight" : 13.16,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 27.909,
- "contentHeight" : 13.16,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleFooter[10]",
- "entityName" : "WeeklyScheduleFooter",
- "entityKind" : "ParagraphNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 10,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 440.016,
- "placementX" : 18.0,
- "placementY" : 440.016,
- "placementWidth" : 317.425,
- "placementHeight" : 18.28,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 317.425,
- "contentHeight" : 18.28,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/weekly-schedule/weekly_schedule_standard.json b/qa/src/test/resources/layout-snapshots/canonical-templates/weekly-schedule/weekly_schedule_standard.json
deleted file mode 100644
index 93f7d888b..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/weekly-schedule/weekly_schedule_standard.json
+++ /dev/null
@@ -1,377 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 841.89,
- "pageHeight" : 595.276,
- "innerWidth" : 805.89,
- "innerHeight" : 559.276,
- "margin" : {
- "top" : 18.0,
- "right" : 18.0,
- "bottom" : 18.0,
- "left" : 18.0
- }
- },
- "totalPages" : 2,
- "nodes" : [ {
- "path" : "WeeklyScheduleRoot[0]",
- "entityName" : "WeeklyScheduleRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 18.0,
- "computedY" : -96.574,
- "placementX" : 18.0,
- "placementY" : -96.574,
- "placementWidth" : 805.89,
- "placementHeight" : 673.85,
- "startPage" : 0,
- "endPage" : 1,
- "contentWidth" : 805.89,
- "contentHeight" : 673.85,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleHeader[0]",
- "entityName" : "WeeklyScheduleHeader",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 540.876,
- "placementX" : 18.0,
- "placementY" : 540.876,
- "placementWidth" : 805.89,
- "placementHeight" : 36.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 36.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleRule[1]",
- "entityName" : "WeeklyScheduleRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 516.576,
- "placementX" : 18.0,
- "placementY" : 516.576,
- "placementWidth" : 805.89,
- "placementHeight" : 17.3,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 17.3,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleDayLabels[2]",
- "entityName" : "WeeklyScheduleDayLabels",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 466.216,
- "placementX" : 18.0,
- "placementY" : 466.216,
- "placementWidth" : 805.89,
- "placementHeight" : 43.36,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 43.36,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleDayNotes[3]",
- "entityName" : "WeeklyScheduleDayNotes",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 414.656,
- "placementX" : 18.0,
- "placementY" : 414.656,
- "placementWidth" : 805.89,
- "placementHeight" : 44.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 44.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleDayCategories[4]",
- "entityName" : "WeeklyScheduleDayCategories",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 4,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 382.496,
- "placementX" : 18.0,
- "placementY" : 382.496,
- "placementWidth" : 805.89,
- "placementHeight" : 25.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 25.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleMetricCOVERS[5]",
- "entityName" : "WeeklyScheduleMetricCOVERS",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 5,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 350.336,
- "placementX" : 18.0,
- "placementY" : 350.336,
- "placementWidth" : 805.89,
- "placementHeight" : 25.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 25.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleMetricTEAMFOCUS[6]",
- "entityName" : "WeeklyScheduleMetricTEAMFOCUS",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 6,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 318.176,
- "placementX" : 18.0,
- "placementY" : 318.176,
- "placementWidth" : 805.89,
- "placementHeight" : 25.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 25.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleRoster[7]",
- "entityName" : "WeeklyScheduleRoster",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 7,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 40.686,
- "placementX" : 18.0,
- "placementY" : 40.686,
- "placementWidth" : 805.89,
- "placementHeight" : 326.31,
- "startPage" : 0,
- "endPage" : 1,
- "contentWidth" : 805.89,
- "contentHeight" : 326.31,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleFooterRule[8]",
- "entityName" : "WeeklyScheduleFooterRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 8,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 491.456,
- "placementX" : 18.0,
- "placementY" : 491.456,
- "placementWidth" : 805.89,
- "placementHeight" : 17.0,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 805.89,
- "contentHeight" : 17.0,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleFooterLabel[9]",
- "entityName" : "WeeklyScheduleFooterLabel",
- "entityKind" : "ParagraphNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 9,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 469.296,
- "placementX" : 18.0,
- "placementY" : 469.296,
- "placementWidth" : 27.909,
- "placementHeight" : 13.16,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 27.909,
- "contentHeight" : 13.16,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleFooter[10]",
- "entityName" : "WeeklyScheduleFooter",
- "entityKind" : "ParagraphNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 10,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 440.016,
- "placementX" : 18.0,
- "placementY" : 440.016,
- "placementWidth" : 317.425,
- "placementHeight" : 18.28,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 317.425,
- "contentHeight" : 18.28,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/weekly-schedule/weekly_schedule_with_additional_person.json b/qa/src/test/resources/layout-snapshots/canonical-templates/weekly-schedule/weekly_schedule_with_additional_person.json
deleted file mode 100644
index def9e0820..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/weekly-schedule/weekly_schedule_with_additional_person.json
+++ /dev/null
@@ -1,377 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 841.89,
- "pageHeight" : 595.276,
- "innerWidth" : 805.89,
- "innerHeight" : 559.276,
- "margin" : {
- "top" : 18.0,
- "right" : 18.0,
- "bottom" : 18.0,
- "left" : 18.0
- }
- },
- "totalPages" : 2,
- "nodes" : [ {
- "path" : "WeeklyScheduleRoot[0]",
- "entityName" : "WeeklyScheduleRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 18.0,
- "computedY" : -126.484,
- "placementX" : 18.0,
- "placementY" : -126.484,
- "placementWidth" : 805.89,
- "placementHeight" : 703.76,
- "startPage" : 0,
- "endPage" : 1,
- "contentWidth" : 805.89,
- "contentHeight" : 703.76,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleHeader[0]",
- "entityName" : "WeeklyScheduleHeader",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 540.876,
- "placementX" : 18.0,
- "placementY" : 540.876,
- "placementWidth" : 805.89,
- "placementHeight" : 36.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 36.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleRule[1]",
- "entityName" : "WeeklyScheduleRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 516.576,
- "placementX" : 18.0,
- "placementY" : 516.576,
- "placementWidth" : 805.89,
- "placementHeight" : 17.3,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 17.3,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleDayLabels[2]",
- "entityName" : "WeeklyScheduleDayLabels",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 466.216,
- "placementX" : 18.0,
- "placementY" : 466.216,
- "placementWidth" : 805.89,
- "placementHeight" : 43.36,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 43.36,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleDayNotes[3]",
- "entityName" : "WeeklyScheduleDayNotes",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 414.656,
- "placementX" : 18.0,
- "placementY" : 414.656,
- "placementWidth" : 805.89,
- "placementHeight" : 44.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 44.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleDayCategories[4]",
- "entityName" : "WeeklyScheduleDayCategories",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 4,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 382.496,
- "placementX" : 18.0,
- "placementY" : 382.496,
- "placementWidth" : 805.89,
- "placementHeight" : 25.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 25.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleMetricCOVERS[5]",
- "entityName" : "WeeklyScheduleMetricCOVERS",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 5,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 350.336,
- "placementX" : 18.0,
- "placementY" : 350.336,
- "placementWidth" : 805.89,
- "placementHeight" : 25.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 25.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleMetricTEAMFOCUS[6]",
- "entityName" : "WeeklyScheduleMetricTEAMFOCUS",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 6,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 318.176,
- "placementX" : 18.0,
- "placementY" : 318.176,
- "placementWidth" : 805.89,
- "placementHeight" : 25.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 25.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleRoster[7]",
- "entityName" : "WeeklyScheduleRoster",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 7,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 40.686,
- "placementX" : 18.0,
- "placementY" : 40.686,
- "placementWidth" : 805.89,
- "placementHeight" : 356.22,
- "startPage" : 0,
- "endPage" : 1,
- "contentWidth" : 805.89,
- "contentHeight" : 356.22,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleFooterRule[8]",
- "entityName" : "WeeklyScheduleFooterRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 8,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 461.546,
- "placementX" : 18.0,
- "placementY" : 461.546,
- "placementWidth" : 805.89,
- "placementHeight" : 17.0,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 805.89,
- "contentHeight" : 17.0,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleFooterLabel[9]",
- "entityName" : "WeeklyScheduleFooterLabel",
- "entityKind" : "ParagraphNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 9,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 439.386,
- "placementX" : 18.0,
- "placementY" : 439.386,
- "placementWidth" : 27.909,
- "placementHeight" : 13.16,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 27.909,
- "contentHeight" : 13.16,
- "margin" : {
- "top" : 2.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleFooter[10]",
- "entityName" : "WeeklyScheduleFooter",
- "entityKind" : "ParagraphNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 10,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 410.106,
- "placementX" : 18.0,
- "placementY" : 410.106,
- "placementWidth" : 317.425,
- "placementHeight" : 18.28,
- "startPage" : 1,
- "endPage" : 1,
- "contentWidth" : 317.425,
- "contentHeight" : 18.28,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}
diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/weekly-schedule/weekly_schedule_without_metrics_footer.json b/qa/src/test/resources/layout-snapshots/canonical-templates/weekly-schedule/weekly_schedule_without_metrics_footer.json
deleted file mode 100644
index 9c37b1124..000000000
--- a/qa/src/test/resources/layout-snapshots/canonical-templates/weekly-schedule/weekly_schedule_without_metrics_footer.json
+++ /dev/null
@@ -1,227 +0,0 @@
-{
- "formatVersion" : "2.0",
- "canvas" : {
- "pageWidth" : 841.89,
- "pageHeight" : 595.276,
- "innerWidth" : 805.89,
- "innerHeight" : 559.276,
- "margin" : {
- "top" : 18.0,
- "right" : 18.0,
- "bottom" : 18.0,
- "left" : 18.0
- }
- },
- "totalPages" : 1,
- "nodes" : [ {
- "path" : "WeeklyScheduleRoot[0]",
- "entityName" : "WeeklyScheduleRoot",
- "entityKind" : "ContainerNode",
- "parentPath" : null,
- "childIndex" : 0,
- "depth" : 1,
- "layer" : 1,
- "computedX" : 18.0,
- "computedY" : 45.186,
- "placementX" : 18.0,
- "placementY" : 45.186,
- "placementWidth" : 805.89,
- "placementHeight" : 532.09,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 532.09,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleHeader[0]",
- "entityName" : "WeeklyScheduleHeader",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 0,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 540.876,
- "placementX" : 18.0,
- "placementY" : 540.876,
- "placementWidth" : 805.89,
- "placementHeight" : 36.4,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 36.4,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleRule[1]",
- "entityName" : "WeeklyScheduleRule",
- "entityKind" : "ShapeNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 1,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 516.576,
- "placementX" : 18.0,
- "placementY" : 516.576,
- "placementWidth" : 805.89,
- "placementHeight" : 17.3,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 17.3,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 8.0,
- "right" : 0.0,
- "bottom" : 8.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleDayLabels[2]",
- "entityName" : "WeeklyScheduleDayLabels",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 2,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 466.216,
- "placementX" : 18.0,
- "placementY" : 466.216,
- "placementWidth" : 805.89,
- "placementHeight" : 43.36,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 43.36,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleDayNotes[3]",
- "entityName" : "WeeklyScheduleDayNotes",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 3,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 414.656,
- "placementX" : 18.0,
- "placementY" : 414.656,
- "placementWidth" : 805.89,
- "placementHeight" : 44.56,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 44.56,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleDayCategories[4]",
- "entityName" : "WeeklyScheduleDayCategories",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 4,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 382.496,
- "placementX" : 18.0,
- "placementY" : 382.496,
- "placementWidth" : 805.89,
- "placementHeight" : 25.16,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 25.16,
- "margin" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- }, {
- "path" : "WeeklyScheduleRoot[0]/WeeklyScheduleRoster[5]",
- "entityName" : "WeeklyScheduleRoster",
- "entityKind" : "TableNode",
- "parentPath" : "WeeklyScheduleRoot[0]",
- "childIndex" : 5,
- "depth" : 2,
- "layer" : 2,
- "computedX" : 18.0,
- "computedY" : 45.186,
- "placementX" : 18.0,
- "placementY" : 45.186,
- "placementWidth" : 805.89,
- "placementHeight" : 326.31,
- "startPage" : 0,
- "endPage" : 0,
- "contentWidth" : 805.89,
- "contentHeight" : 326.31,
- "margin" : {
- "top" : 4.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- },
- "padding" : {
- "top" : 0.0,
- "right" : 0.0,
- "bottom" : 0.0,
- "left" : 0.0
- }
- } ]
-}