` — see [Preferences](Preferences.md) for verbosity/prosody settings (`settings`, `preferencesEditor`, `submitPreferences()`, omitted below):
```typescript
interface ReadiumSpeechNavigatorContract {
@@ -19,6 +19,7 @@ interface ReadiumSpeechNavigatorContract {
// Content Management
loadContent(content: ReadiumSpeechUtterance | ReadiumSpeechUtterance[]): void;
+ loadGndContent(nodes: GndObject[]): void;
getCurrentContent(): ReadiumSpeechUtterance | null;
getContentQueue(): ReadiumSpeechUtterance[];
@@ -32,14 +33,6 @@ interface ReadiumSpeechNavigatorContract {
previous(): boolean;
jumpTo(utteranceIndex: number): void;
- // Playback Parameters
- setRate(rate: number): void;
- getRate(): number;
- setPitch(pitch: number): void;
- getPitch(): number;
- setVolume(volume: number): void;
- getVolume(): number;
-
// State
getState(): ReadiumSpeechPlaybackState;
@@ -77,6 +70,11 @@ function togglePlayback() {
togglePlayback();
```
+Two ways to load content — simple and advanced:
+
+- `loadContent()` takes already-extracted `ReadiumSpeechUtterance`s directly. No GND, no extraction options — you own the utterance list.
+- `loadGndContent(nodes)` takes a raw [Guided Navigation](GuidedNavigation.md) tree instead. The navigator retains it and re-runs [`extractUtterances`](UtteranceExtraction.md) itself when an extraction-affecting preference changes via `submitPreferences()`, so verbosity/skip/contextualize/language stay live over the whole tree — `loadContent()` keeps no such source, so those preferences are no-ops on it; prosody preferences still apply either way — see [Preferences](Preferences.md).
+
## Events
### `ReadiumSpeechPlaybackEvent`
diff --git a/docs/Preferences.md b/docs/Preferences.md
new file mode 100644
index 0000000..bcbae1e
--- /dev/null
+++ b/docs/Preferences.md
@@ -0,0 +1,72 @@
+# Preferences
+
+`ReadiumSpeechNavigator` implements Readium's [Preferences API](https://readium.org/architecture/proposals/009-preferences-api.html) pattern: submit a `SpeechPreferences` object, read back the resolved `SpeechSettings`, or use a `SpeechPreferencesEditor` for per-field `value`/`effectiveValue`/`isEffective` handles.
+
+```typescript
+navigator.submitPreferences(new SpeechPreferences({ verbosity: "most" }));
+navigator.settings.verbosity; // "most"
+
+const editor = navigator.preferencesEditor;
+editor.verbosity.effectiveValue; // "most"
+editor.pauseDuration.value = 500;
+navigator.submitPreferences(editor.preferences);
+```
+
+`submitPreferences()` always resolves `navigator.settings`. Prosody (`pauseDuration`, `pauseScope`, `rate`, `pitch`, `volume`) applies regardless of how content was loaded. The extraction group (`format`, `inlineContextualization`, `verbosity`, `skip`, `contextualize`, `language`) only takes effect on content loaded via `loadGndContent()` — see [Playback](Playback.md) — and only reloads the queue when one of those fields actually changes value. A reload during playback resumes at the same content rather than restarting, falling back to the nearest earlier point still present if that exact content got skipped by the new settings.
+
+## Defaults
+
+Every default (`"few"` verbosity, 300ms `pauseDuration`, rate/pitch/volume of `1.0`, ...) is itself configurable — pass a `defaults` object to `ReadiumSpeechNavigator`'s constructor, alongside optional initial `preferences`:
+
+```typescript
+const navigator = new ReadiumSpeechNavigator(engine, {
+ preferences: { verbosity: "most" },
+ defaults: { pauseDuration: 500, rate: 1.2 },
+});
+```
+
+Both `preferences` and `defaults` go through the same validation as `submitPreferences()`: an out-of-range or unsupported value is dropped, falling back to the built-in literal default rather than propagating.
+
+## Validation
+
+Every field on `SpeechPreferences` (and `SpeechDefaults`) is checked against its declared range/enum/type when constructed — an out-of-range number, an unrecognized enum value, or a wrong-typed value is dropped to `undefined` (or, for `SpeechDefaults`, falls back to the built-in literal) rather than silently accepted. This applies however the value arrives — `new SpeechPreferences(...)`, `submitPreferences(...)`, or a value deserialized from storage — not just when set through `SpeechPreferencesEditor`, whose per-field setters additionally throw immediately for interactive feedback (e.g. a UI slider going out of bounds).
+
+`skip`/`contextualize` are only checked for shape (an array of strings), not role membership — GND roles are an open vocabulary, not a fixed catalog.
+
+## Verbosity
+
+```typescript
+type VerbosityPreset = "none" | "few" | "some" | "most" | "custom";
+```
+
+Each preset resolves to a fixed set of roles that are skipped and a fixed set whose announcements fire, from `skippableAtVerbosity`/`contextualizedAtVerbosity` — `"few"` (the default) covers non-textual/math content only; `"most"` covers everything with a catalog entry. `skip`/`contextualize` on `SpeechPreferences` only apply under `"custom"`; every other preset uses its own fixed sets and ignores them:
+
+```typescript
+new SpeechPreferences({ verbosity: "custom", contextualize: ["chapter", "footnote"] });
+```
+
+## Prosody
+
+```typescript
+pauseDuration?: number; // ms, default 300
+pauseScope?: "utterance" | "block"; // which transitions get pauseDuration, default "utterance"
+automaticPausesAtPageOrSpreadEnd?: boolean; // typed, no effect yet
+rate?: number; // default 1.0, range [0.1, 10]
+pitch?: number; // default 1.0, range [0, 2]
+volume?: number; // default 1.0, range [0, 1]
+```
+
+`pauseDuration` delays the navigator's next `speak()` call after each utterance ends, scoped by `pauseScope`: `"utterance"` (the default) applies it between every utterance; `"block"` applies it only where the next utterance starts a new block-level element (a paragraph, heading, list item, table cell, ...), derived from the source Guided Navigation document by `extractUtterances()` — transitions within the same block get no pause. `automaticPausesAtPageOrSpreadEnd` is typed but has no effect today: pausing at a page/spread boundary needs context (where a page actually ends) that this library doesn't have — likely a concern for the consuming app, not something resolved here.
+
+`rate`/`pitch`/`volume` are pushed straight to the engine's own `setRate`/`setPitch`/`setVolume` on every `submitPreferences()` call — unlike the extraction-time preferences, no reload. An engine that needs to re-synthesize already-buffered content on parameter changes handles that itself inside those setters.
+
+`language` (`"none" | "block-level" | "always"`) is the same option documented in [Utterance Extraction](UtteranceExtraction.md#options).
+
+## `format` / `inlineContextualization`
+
+Set once via `submitPreferences()` instead of on every `extractUtterances()` call:
+
+```typescript
+format?: "plain" | "ssml"; // default "plain"
+inlineContextualization?: boolean; // default false
+```
diff --git a/docs/UtteranceExtraction.md b/docs/UtteranceExtraction.md
index 42ec1b0..cb5f1c9 100644
--- a/docs/UtteranceExtraction.md
+++ b/docs/UtteranceExtraction.md
@@ -18,10 +18,13 @@ interface ReadiumSpeechUtterance {
id?: string;
plain?: string;
ssml?: string;
- language?: string; // BCP 47
+ language?: string; // BCP 47
+ startsNewBlock?: true; // present (and true) only when this utterance begins a new block-level element
}
```
+`startsNewBlock` marks the first utterance of a node whose role is in `blockLevelRoles` (a paragraph, heading, list item, table cell, ...) whenever it isn't a continuation of the block already in progress — e.g. a `` split into several utterances by inline `` spans only gets the marker on its first piece. `ReadiumSpeechNavigator` uses it to scope `pauseDuration` under `pauseScope: "block"` (see [Preferences](Preferences.md#prosody)).
+
Some roles get a synthesized navigational announcement spoken around their content (entering/leaving a chapter, a pagebreak label...); see [`ExtractUtterancesOptions.announcements`](../src/utterances/types.ts) and [`defaultAnnouncements`](../src/utterances/announcements.ts) in source — the catalog is still English-only and expected to move to a localized (Weblate-sourced) format, so it isn't documented here yet.
## Options
@@ -30,28 +33,28 @@ Some roles get a synthesized navigational announcement spoken around their conte
interface ExtractUtterancesOptions {
format: "plain" | "ssml";
skip?: GndRole[];
+ contextualize?: GndRole[];
language?: "none" | "block-level" | "always";
- interruptSentence?: boolean;
- contextualize?: boolean;
+ inlineContextualization?: boolean;
}
```
- **`format`** — default `"plain"`. Picks the one field every utterance in the result carries, so a consumer never has to check per-utterance which of `plain`/`ssml` is populated. Whichever a `GndObject` doesn't natively have is synthesized (`plain` → escaped `ssml`; `ssml` → tags stripped to `plain`).
- **`skip`** — drop a role and its subtree entirely (content + announcement). `skippableRoles` export is the [roles.md skippable set](https://github.com/readium/guided-navigation/blob/main/roles.md#list-of-skippable-roles): `aside`, `bibliography`, `details`, `endnotes`, `footnote`, `noteref`, `pullquote`, `landmarks`, `loa`, `loi`, `lot`, `lov`, `pagebreak`, `toc`. Default: nothing skipped.
-- **`contextualize`** — on/off switch for all announcements, content still spoken. Default `true`.
+- **`contextualize`** — which roles' announcements are spoken (a role still needs a `defaultAnnouncements`/`announcements` entry to say anything). Default: nothing announced, same polarity as `skip` — unlike `skip`, the underlying content still plays either way.
- **`language`** — how a node's own inline spans (``) render. Never merges across sibling utterances.
- `"always"` (default) — `ssml` keeps spans tagged; `plain` splits into one utterance per language run.
- `"block-level"` — inline spans merge untagged into the surrounding text; block-level `language` kept.
- `"none"` — same merge as `"block-level"`, plus `language` dropped everywhere.
-- **`interruptSentence`** — a mid-sentence pagebreak/footnote splits the sentence at that point instead of after it finishes. Default `false`.
+- **`inlineContextualization`** — a mid-sentence pagebreak/footnote splits the sentence at that point instead of after it finishes. Default `false`.
```typescript
// ...in the middle of a sentence.
-extractUtterances(gnd, { format: "plain", contextualize: false });
-// [{ language: "en", plain: "...in the middle of a sentence." }, { plain: "5" }]
+extractUtterances(gnd, { format: "plain" });
+// [{ plain: "4" }, { language: "en", plain: "...in the middle of a sentence." }, { plain: "5" }]
-extractUtterances(gnd, { format: "plain", contextualize: false, interruptSentence: true });
-// [{ language: "en", plain: "...in the middle 5 of a sentence." }]
+extractUtterances(gnd, { format: "plain", contextualize: ["pagebreak"] });
+// [{ plain: "Pagebreak. 4." }, { language: "en", plain: "...in the middle of a sentence." }, { plain: "Pagebreak. 5." }]
extractUtterances(gnd, { format: "plain", skip: ["pagebreak"] });
// [{ language: "en", plain: "...in the middle of a sentence." }]
diff --git a/fixtures/README.md b/fixtures/README.md
index 50bad74..8b1f305 100644
--- a/fixtures/README.md
+++ b/fixtures/README.md
@@ -29,10 +29,9 @@ fixtures/
input.html the input markup as HTML (a fragment or a full document, see meta.json.inputKind);
or input.xhtml when the fixture's content is XHTML (all *-epub-type fixtures)
gnd.json the expected Guided Navigation document produced from the input file
- utterances.json the expected utterance lists produced from gnd.json, forked by
- extraction format (plain/ssml), each with a baseline plus any
- option variants this fixture illustrates — see "Utterance
- extraction options" below
+ utterances.json the expected utterances from gnd.json — a default case per
+ format, plus any option combination that diverges from it —
+ see "Utterance extraction options" below
```
`manifest.json` and `ROLES_COVERAGE.md` are both generated from the
@@ -96,57 +95,53 @@ Stage 2 (GND → utterances) takes options controlling *how* a fixed GND tree
is turned into utterances — the tree itself never changes shape based on
these; only the resulting utterance list does. `utterances.json` is a flat
list of cases, each a full `ExtractUtterancesOptions` object (`format`
-included, same as every other option) paired with the utterance list that
-combination produces:
+included) paired with the utterance list that combination produces:
```jsonc
{
"cases": [
{
"options": { "format": "plain" },
- "utterances": [ /* the plain extraction with no other options set */ ]
+ "utterances": [ /* the default: no skip/contextualize/language/inlineContextualization */ ]
},
{
"options": { "format": "plain", "skip": ["footnote"] },
- "utterances": [ /* plain extraction with skip set */ ]
- },
- {
- "options": { "format": "ssml" },
- "utterances": [ /* the ssml extraction with no other options set */ ]
- },
- {
- "options": { "format": "ssml", "skip": ["footnote"] },
- "utterances": [ /* ssml extraction with skip set */ ]
+ "utterances": [ /* differs from the default above */ ]
}
]
}
```
-The options are:
+**A case is only present when its options produce output different from
+that fixture's default** — the bare `{ format }` call, always the first
+case for each format. An option combination *within scope* (below) that
+has no case is understood to equal the default: absence is a positive
+claim, not a gap. Outside that scope, a fixture makes no claim either way.
+
+Scope, per format: `language` × `inlineContextualization` × every subset of
+(this fixture's roles ∩ [roles.md's skippable-roles list]) × every subset
+of (this fixture's roles ∩ roles with an announcement-catalog entry).
+Every point in that space is either an explicit case or implicitly the
+default — nothing in between.
+
+The options:
- `format: "plain" | "ssml"` (default `"plain"`) — stated explicitly on
- every case regardless of the default, since a fixture needs both variants
- covered and omitting it on the `"ssml"` case would leave it
- indistinguishable from implicit default behavior.
-- `skip: GndRole[]` — omit a role (and its whole subtree) from the output,
- e.g. so a reader can skip past footnotes or pagebreaks during playback.
- See [roles.md#list-of-skippable-roles](https://github.com/readium/guided-navigation/blob/main/roles.md#list-of-skippable-roles)
- for the roles.md-documented set a reader may choose to skip.
-- `contextualize: boolean` — whether synthesized announcements (pagebreak,
- footnote start/end, and any role that gains one later) are spoken at all,
- independent of the underlying content (which `skip` would instead omit
- entirely). Default `true`.
-- `interruptSentence: boolean` — whether a pagebreak/footnote reference
- that falls mid-sentence splits the sentence at that exact point, instead
- of being spoken after the whole sentence finishes (the default).
-- `language: "none" | "block-level" | "always"` — how a language shift between
- adjacent text is rendered: dropped entirely; kept as separate
- single-language utterances for `plain` (default `"always"` has no other
- way to represent the shift) or merged into one utterance with embedded
- `` tags for `ssml`.
-
-Every fixture ships a case for every option that applies to it, even when
-identical to the base case.
+ every case, since a fixture needs both variants covered and omitting it
+ on the `"ssml"` case would leave it indistinguishable from `"plain"`.
+- `skip: GndRole[]` — omit roles (and their whole subtree) from the output.
+ See [roles.md#list-of-skippable-roles](https://github.com/readium/guided-navigation/blob/main/roles.md#list-of-skippable-roles).
+- `contextualize: GndRole[]` — which roles' synthesized announcements
+ (pagebreak, footnote start/end, ...) are spoken, independent of the
+ underlying content (which `skip` would instead omit entirely). Nothing
+ contextualizes by default.
+- `inlineContextualization: boolean` — whether a pagebreak/footnote
+ reference that falls mid-sentence splits the sentence at that exact
+ point, instead of after the whole sentence finishes (the default).
+- `language: "none" | "block-level" | "always"` — how a language shift
+ between adjacent text is rendered: dropped entirely; kept as separate
+ single-language utterances for `plain`, or merged into one utterance
+ with embedded `` tags for `ssml`. Omitted means unset.
## `epub:type` fixtures are full XHTML documents
@@ -216,13 +211,17 @@ fixture and resolve its file paths — no directory listing required.
it through your implementation of stage 1 (HTML → GND) — compare the
result to `gnd.json`.
3. Run the resulting GND document through your implementation of stage 2
- (GND → utterances) twice, once with `{ format: "plain" }` and once with
- `{ format: "ssml" }` — compare each to `utterances.json`'s corresponding
- `plain.base`/`ssml.base`.
-4. For each entry in a branch's `variants` (if any), run stage 2 again with
- that branch's format plus the variant's `options` — compare the result
- to that variant's `utterances`.
-5. A fixture "passes" when every comparison it has files for matches exactly.
+ (GND → utterances) with `{ format: "plain" }`, then `{ format: "ssml" }`
+ — each must match `utterances.json`'s first case for that format (the
+ default; see "Utterance extraction options" above).
+4. For any other option combination you want to test: look for a case in
+ `utterances.json` whose `options` matches it exactly. If found, compare
+ your result to it. If not found, and the combination is within the
+ documented scope, your result must match the default case instead —
+ there's no separate case for it precisely because it produces the same
+ output.
+5. A fixture "passes" when every comparison it has data for (explicit or
+ default-inferred) matches exactly.
## Adding a new fixture
@@ -230,13 +229,8 @@ fixture and resolve its file paths — no directory listing required.
`epub:type` fixture, since `epub:type` requires XHTML — see above) for the
specific markup being tested.
2. Hand-author `gnd.json` — the ground truth implementations must match.
-3. Hand-author `utterances.json` — one case per applicable option
- combination (both format branches' base case, plus whichever variants
- apply — see "Utterance extraction options" above) — from the `gnd.json`
- you just wrote. When a change to extraction behavior (a reworded
- announcement, a newly contextualized role, a new skippable role) should
- propagate to the fixture suite, every affected fixture's
- `utterances.json` needs to be re-authored by hand to match.
+3. Hand-author `utterances.json` — the ground truth implementations must
+ match. See "Utterance extraction options" above for the case shape and scope.
4. Write `meta.json`.
5. Run `npm run generate-fixtures-manifest` to regenerate `manifest.json`
and `ROLES_COVERAGE.md` from what's now on disk.
diff --git a/fixtures/abstract-epub-type/utterances.json b/fixtures/abstract-epub-type/utterances.json
index d63d88f..ffb7bea 100644
--- a/fixtures/abstract-epub-type/utterances.json
+++ b/fixtures/abstract-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Abstract."
+ "plain": "This work examines the maintenance of coastal lighthouses in the 19th century.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "abstract"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Abstract.",
+ "startsNewBlock": true
},
{
"plain": "This work examines the maintenance of coastal lighthouses in the 19th century."
@@ -16,9 +31,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "abstract"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Abstract.",
+ "startsNewBlock": true
+ },
{
"plain": "This work examines the maintenance of coastal lighthouses in the 19th century."
}
@@ -27,11 +49,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "abstract"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Abstract."
+ "plain": "Abstract.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This work examines the maintenance of coastal lighthouses in the 19th century."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "abstract"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Abstract.",
+ "startsNewBlock": true
},
{
"plain": "This work examines the maintenance of coastal lighthouses in the 19th century."
@@ -41,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "abstract"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Abstract."
+ "plain": "Abstract.",
+ "startsNewBlock": true
},
{
"plain": "This work examines the maintenance of coastal lighthouses in the 19th century."
@@ -55,11 +104,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "abstract"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Abstract.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This work examines the maintenance of coastal lighthouses in the 19th century."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "abstract"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Abstract."
+ "plain": "Abstract.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This work examines the maintenance of coastal lighthouses in the 19th century."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "abstract"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Abstract.",
+ "startsNewBlock": true
},
{
"plain": "This work examines the maintenance of coastal lighthouses in the 19th century."
@@ -72,7 +163,22 @@
},
"utterances": [
{
- "ssml": "Abstract."
+ "ssml": "This work examines the maintenance of coastal lighthouses in the 19th century.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "abstract"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Abstract.",
+ "startsNewBlock": true
},
{
"ssml": "This work examines the maintenance of coastal lighthouses in the 19th century."
@@ -82,9 +188,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "abstract"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Abstract.",
+ "startsNewBlock": true
+ },
{
"ssml": "This work examines the maintenance of coastal lighthouses in the 19th century."
}
@@ -93,11 +206,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "abstract"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Abstract."
+ "ssml": "Abstract.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This work examines the maintenance of coastal lighthouses in the 19th century."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "abstract"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Abstract.",
+ "startsNewBlock": true
},
{
"ssml": "This work examines the maintenance of coastal lighthouses in the 19th century."
@@ -107,11 +243,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "abstract"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Abstract."
+ "ssml": "Abstract.",
+ "startsNewBlock": true
},
{
"ssml": "This work examines the maintenance of coastal lighthouses in the 19th century."
@@ -121,11 +261,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "abstract"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Abstract.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This work examines the maintenance of coastal lighthouses in the 19th century."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "abstract"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Abstract."
+ "ssml": "Abstract.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This work examines the maintenance of coastal lighthouses in the 19th century."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "abstract"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Abstract.",
+ "startsNewBlock": true
},
{
"ssml": "This work examines the maintenance of coastal lighthouses in the 19th century."
diff --git a/fixtures/abstract-role-aria/utterances.json b/fixtures/abstract-role-aria/utterances.json
index d63d88f..ffb7bea 100644
--- a/fixtures/abstract-role-aria/utterances.json
+++ b/fixtures/abstract-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Abstract."
+ "plain": "This work examines the maintenance of coastal lighthouses in the 19th century.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "abstract"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Abstract.",
+ "startsNewBlock": true
},
{
"plain": "This work examines the maintenance of coastal lighthouses in the 19th century."
@@ -16,9 +31,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "abstract"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Abstract.",
+ "startsNewBlock": true
+ },
{
"plain": "This work examines the maintenance of coastal lighthouses in the 19th century."
}
@@ -27,11 +49,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "abstract"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Abstract."
+ "plain": "Abstract.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This work examines the maintenance of coastal lighthouses in the 19th century."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "abstract"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Abstract.",
+ "startsNewBlock": true
},
{
"plain": "This work examines the maintenance of coastal lighthouses in the 19th century."
@@ -41,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "abstract"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Abstract."
+ "plain": "Abstract.",
+ "startsNewBlock": true
},
{
"plain": "This work examines the maintenance of coastal lighthouses in the 19th century."
@@ -55,11 +104,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "abstract"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Abstract.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This work examines the maintenance of coastal lighthouses in the 19th century."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "abstract"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Abstract."
+ "plain": "Abstract.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This work examines the maintenance of coastal lighthouses in the 19th century."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "abstract"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Abstract.",
+ "startsNewBlock": true
},
{
"plain": "This work examines the maintenance of coastal lighthouses in the 19th century."
@@ -72,7 +163,22 @@
},
"utterances": [
{
- "ssml": "Abstract."
+ "ssml": "This work examines the maintenance of coastal lighthouses in the 19th century.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "abstract"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Abstract.",
+ "startsNewBlock": true
},
{
"ssml": "This work examines the maintenance of coastal lighthouses in the 19th century."
@@ -82,9 +188,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "abstract"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Abstract.",
+ "startsNewBlock": true
+ },
{
"ssml": "This work examines the maintenance of coastal lighthouses in the 19th century."
}
@@ -93,11 +206,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "abstract"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Abstract."
+ "ssml": "Abstract.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This work examines the maintenance of coastal lighthouses in the 19th century."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "abstract"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Abstract.",
+ "startsNewBlock": true
},
{
"ssml": "This work examines the maintenance of coastal lighthouses in the 19th century."
@@ -107,11 +243,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "abstract"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Abstract."
+ "ssml": "Abstract.",
+ "startsNewBlock": true
},
{
"ssml": "This work examines the maintenance of coastal lighthouses in the 19th century."
@@ -121,11 +261,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "abstract"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Abstract.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This work examines the maintenance of coastal lighthouses in the 19th century."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "abstract"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Abstract."
+ "ssml": "Abstract.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This work examines the maintenance of coastal lighthouses in the 19th century."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "abstract"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Abstract.",
+ "startsNewBlock": true
},
{
"ssml": "This work examines the maintenance of coastal lighthouses in the 19th century."
diff --git a/fixtures/acknowledgments-epub-type/utterances.json b/fixtures/acknowledgments-epub-type/utterances.json
index dd9a14f..ef0d842 100644
--- a/fixtures/acknowledgments-epub-type/utterances.json
+++ b/fixtures/acknowledgments-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the acknowledgments."
+ "plain": "The author thanks the keepers of Fastnet Rock for their recollections.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "acknowledgments"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the acknowledgments.",
+ "startsNewBlock": true
},
{
"plain": "The author thanks the keepers of Fastnet Rock for their recollections."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "acknowledgments"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the acknowledgments.",
+ "startsNewBlock": true
+ },
{
"plain": "The author thanks the keepers of Fastnet Rock for their recollections."
+ },
+ {
+ "plain": "End of the acknowledgments."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "acknowledgments"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the acknowledgments."
+ "plain": "Start of the acknowledgments.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The author thanks the keepers of Fastnet Rock for their recollections."
+ },
+ {
+ "plain": "End of the acknowledgments."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "acknowledgments"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the acknowledgments.",
+ "startsNewBlock": true
},
{
"plain": "The author thanks the keepers of Fastnet Rock for their recollections."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "acknowledgments"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the acknowledgments."
+ "plain": "Start of the acknowledgments.",
+ "startsNewBlock": true
},
{
"plain": "The author thanks the keepers of Fastnet Rock for their recollections."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "acknowledgments"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the acknowledgments.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The author thanks the keepers of Fastnet Rock for their recollections."
+ },
+ {
+ "plain": "End of the acknowledgments."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "acknowledgments"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the acknowledgments."
+ "plain": "Start of the acknowledgments.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The author thanks the keepers of Fastnet Rock for their recollections."
+ },
+ {
+ "plain": "End of the acknowledgments."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "acknowledgments"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the acknowledgments.",
+ "startsNewBlock": true
},
{
"plain": "The author thanks the keepers of Fastnet Rock for their recollections."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the acknowledgments."
+ "ssml": "The author thanks the keepers of Fastnet Rock for their recollections.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "acknowledgments"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the acknowledgments.",
+ "startsNewBlock": true
},
{
"ssml": "The author thanks the keepers of Fastnet Rock for their recollections."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "acknowledgments"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the acknowledgments.",
+ "startsNewBlock": true
+ },
{
"ssml": "The author thanks the keepers of Fastnet Rock for their recollections."
+ },
+ {
+ "ssml": "End of the acknowledgments."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "acknowledgments"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the acknowledgments."
+ "ssml": "Start of the acknowledgments.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The author thanks the keepers of Fastnet Rock for their recollections."
+ },
+ {
+ "ssml": "End of the acknowledgments."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "acknowledgments"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the acknowledgments.",
+ "startsNewBlock": true
},
{
"ssml": "The author thanks the keepers of Fastnet Rock for their recollections."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "acknowledgments"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the acknowledgments."
+ "ssml": "Start of the acknowledgments.",
+ "startsNewBlock": true
},
{
"ssml": "The author thanks the keepers of Fastnet Rock for their recollections."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "acknowledgments"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the acknowledgments.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The author thanks the keepers of Fastnet Rock for their recollections."
+ },
+ {
+ "ssml": "End of the acknowledgments."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "acknowledgments"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the acknowledgments."
+ "ssml": "Start of the acknowledgments.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The author thanks the keepers of Fastnet Rock for their recollections."
+ },
+ {
+ "ssml": "End of the acknowledgments."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "acknowledgments"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the acknowledgments.",
+ "startsNewBlock": true
},
{
"ssml": "The author thanks the keepers of Fastnet Rock for their recollections."
diff --git a/fixtures/acknowledgments-role-aria/utterances.json b/fixtures/acknowledgments-role-aria/utterances.json
index dd9a14f..ef0d842 100644
--- a/fixtures/acknowledgments-role-aria/utterances.json
+++ b/fixtures/acknowledgments-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the acknowledgments."
+ "plain": "The author thanks the keepers of Fastnet Rock for their recollections.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "acknowledgments"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the acknowledgments.",
+ "startsNewBlock": true
},
{
"plain": "The author thanks the keepers of Fastnet Rock for their recollections."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "acknowledgments"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the acknowledgments.",
+ "startsNewBlock": true
+ },
{
"plain": "The author thanks the keepers of Fastnet Rock for their recollections."
+ },
+ {
+ "plain": "End of the acknowledgments."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "acknowledgments"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the acknowledgments."
+ "plain": "Start of the acknowledgments.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The author thanks the keepers of Fastnet Rock for their recollections."
+ },
+ {
+ "plain": "End of the acknowledgments."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "acknowledgments"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the acknowledgments.",
+ "startsNewBlock": true
},
{
"plain": "The author thanks the keepers of Fastnet Rock for their recollections."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "acknowledgments"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the acknowledgments."
+ "plain": "Start of the acknowledgments.",
+ "startsNewBlock": true
},
{
"plain": "The author thanks the keepers of Fastnet Rock for their recollections."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "acknowledgments"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the acknowledgments.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The author thanks the keepers of Fastnet Rock for their recollections."
+ },
+ {
+ "plain": "End of the acknowledgments."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "acknowledgments"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the acknowledgments."
+ "plain": "Start of the acknowledgments.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The author thanks the keepers of Fastnet Rock for their recollections."
+ },
+ {
+ "plain": "End of the acknowledgments."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "acknowledgments"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the acknowledgments.",
+ "startsNewBlock": true
},
{
"plain": "The author thanks the keepers of Fastnet Rock for their recollections."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the acknowledgments."
+ "ssml": "The author thanks the keepers of Fastnet Rock for their recollections.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "acknowledgments"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the acknowledgments.",
+ "startsNewBlock": true
},
{
"ssml": "The author thanks the keepers of Fastnet Rock for their recollections."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "acknowledgments"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the acknowledgments.",
+ "startsNewBlock": true
+ },
{
"ssml": "The author thanks the keepers of Fastnet Rock for their recollections."
+ },
+ {
+ "ssml": "End of the acknowledgments."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "acknowledgments"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the acknowledgments."
+ "ssml": "Start of the acknowledgments.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The author thanks the keepers of Fastnet Rock for their recollections."
+ },
+ {
+ "ssml": "End of the acknowledgments."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "acknowledgments"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the acknowledgments.",
+ "startsNewBlock": true
},
{
"ssml": "The author thanks the keepers of Fastnet Rock for their recollections."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "acknowledgments"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the acknowledgments."
+ "ssml": "Start of the acknowledgments.",
+ "startsNewBlock": true
},
{
"ssml": "The author thanks the keepers of Fastnet Rock for their recollections."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "acknowledgments"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the acknowledgments.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The author thanks the keepers of Fastnet Rock for their recollections."
+ },
+ {
+ "ssml": "End of the acknowledgments."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "acknowledgments"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the acknowledgments."
+ "ssml": "Start of the acknowledgments.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The author thanks the keepers of Fastnet Rock for their recollections."
+ },
+ {
+ "ssml": "End of the acknowledgments."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "acknowledgments"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the acknowledgments.",
+ "startsNewBlock": true
},
{
"ssml": "The author thanks the keepers of Fastnet Rock for their recollections."
diff --git a/fixtures/afterword-epub-type/utterances.json b/fixtures/afterword-epub-type/utterances.json
index 26bfafb..cf959cd 100644
--- a/fixtures/afterword-epub-type/utterances.json
+++ b/fixtures/afterword-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the afterword."
+ "plain": "Years later, the last lighthouse keeper reflects on automation.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "afterword"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the afterword.",
+ "startsNewBlock": true
},
{
"plain": "Years later, the last lighthouse keeper reflects on automation."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "afterword"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the afterword.",
+ "startsNewBlock": true
+ },
{
"plain": "Years later, the last lighthouse keeper reflects on automation."
+ },
+ {
+ "plain": "End of the afterword."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "afterword"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the afterword."
+ "plain": "Start of the afterword.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Years later, the last lighthouse keeper reflects on automation."
+ },
+ {
+ "plain": "End of the afterword."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "afterword"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the afterword.",
+ "startsNewBlock": true
},
{
"plain": "Years later, the last lighthouse keeper reflects on automation."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "afterword"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the afterword."
+ "plain": "Start of the afterword.",
+ "startsNewBlock": true
},
{
"plain": "Years later, the last lighthouse keeper reflects on automation."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "afterword"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the afterword.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Years later, the last lighthouse keeper reflects on automation."
+ },
+ {
+ "plain": "End of the afterword."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "afterword"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the afterword."
+ "plain": "Start of the afterword.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Years later, the last lighthouse keeper reflects on automation."
+ },
+ {
+ "plain": "End of the afterword."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "afterword"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the afterword.",
+ "startsNewBlock": true
},
{
"plain": "Years later, the last lighthouse keeper reflects on automation."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the afterword."
+ "ssml": "Years later, the last lighthouse keeper reflects on automation.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "afterword"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the afterword.",
+ "startsNewBlock": true
},
{
"ssml": "Years later, the last lighthouse keeper reflects on automation."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "afterword"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the afterword.",
+ "startsNewBlock": true
+ },
{
"ssml": "Years later, the last lighthouse keeper reflects on automation."
+ },
+ {
+ "ssml": "End of the afterword."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "afterword"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the afterword."
+ "ssml": "Start of the afterword.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Years later, the last lighthouse keeper reflects on automation."
+ },
+ {
+ "ssml": "End of the afterword."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "afterword"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the afterword.",
+ "startsNewBlock": true
},
{
"ssml": "Years later, the last lighthouse keeper reflects on automation."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "afterword"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the afterword."
+ "ssml": "Start of the afterword.",
+ "startsNewBlock": true
},
{
"ssml": "Years later, the last lighthouse keeper reflects on automation."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "afterword"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the afterword.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Years later, the last lighthouse keeper reflects on automation."
+ },
+ {
+ "ssml": "End of the afterword."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "afterword"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the afterword."
+ "ssml": "Start of the afterword.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Years later, the last lighthouse keeper reflects on automation."
+ },
+ {
+ "ssml": "End of the afterword."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "afterword"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the afterword.",
+ "startsNewBlock": true
},
{
"ssml": "Years later, the last lighthouse keeper reflects on automation."
diff --git a/fixtures/afterword-role-aria/utterances.json b/fixtures/afterword-role-aria/utterances.json
index 26bfafb..cf959cd 100644
--- a/fixtures/afterword-role-aria/utterances.json
+++ b/fixtures/afterword-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the afterword."
+ "plain": "Years later, the last lighthouse keeper reflects on automation.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "afterword"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the afterword.",
+ "startsNewBlock": true
},
{
"plain": "Years later, the last lighthouse keeper reflects on automation."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "afterword"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the afterword.",
+ "startsNewBlock": true
+ },
{
"plain": "Years later, the last lighthouse keeper reflects on automation."
+ },
+ {
+ "plain": "End of the afterword."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "afterword"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the afterword."
+ "plain": "Start of the afterword.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Years later, the last lighthouse keeper reflects on automation."
+ },
+ {
+ "plain": "End of the afterword."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "afterword"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the afterword.",
+ "startsNewBlock": true
},
{
"plain": "Years later, the last lighthouse keeper reflects on automation."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "afterword"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the afterword."
+ "plain": "Start of the afterword.",
+ "startsNewBlock": true
},
{
"plain": "Years later, the last lighthouse keeper reflects on automation."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "afterword"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the afterword.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Years later, the last lighthouse keeper reflects on automation."
+ },
+ {
+ "plain": "End of the afterword."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "afterword"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the afterword."
+ "plain": "Start of the afterword.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Years later, the last lighthouse keeper reflects on automation."
+ },
+ {
+ "plain": "End of the afterword."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "afterword"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the afterword.",
+ "startsNewBlock": true
},
{
"plain": "Years later, the last lighthouse keeper reflects on automation."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the afterword."
+ "ssml": "Years later, the last lighthouse keeper reflects on automation.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "afterword"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the afterword.",
+ "startsNewBlock": true
},
{
"ssml": "Years later, the last lighthouse keeper reflects on automation."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "afterword"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the afterword.",
+ "startsNewBlock": true
+ },
{
"ssml": "Years later, the last lighthouse keeper reflects on automation."
+ },
+ {
+ "ssml": "End of the afterword."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "afterword"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the afterword."
+ "ssml": "Start of the afterword.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Years later, the last lighthouse keeper reflects on automation."
+ },
+ {
+ "ssml": "End of the afterword."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "afterword"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the afterword.",
+ "startsNewBlock": true
},
{
"ssml": "Years later, the last lighthouse keeper reflects on automation."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "afterword"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the afterword."
+ "ssml": "Start of the afterword.",
+ "startsNewBlock": true
},
{
"ssml": "Years later, the last lighthouse keeper reflects on automation."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "afterword"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the afterword.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Years later, the last lighthouse keeper reflects on automation."
+ },
+ {
+ "ssml": "End of the afterword."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "afterword"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the afterword."
+ "ssml": "Start of the afterword.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Years later, the last lighthouse keeper reflects on automation."
+ },
+ {
+ "ssml": "End of the afterword."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "afterword"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the afterword.",
+ "startsNewBlock": true
},
{
"ssml": "Years later, the last lighthouse keeper reflects on automation."
diff --git a/fixtures/appendix-epub-type/utterances.json b/fixtures/appendix-epub-type/utterances.json
index 21de010..a700dc1 100644
--- a/fixtures/appendix-epub-type/utterances.json
+++ b/fixtures/appendix-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the appendix."
+ "plain": "A table of lighthouse construction dates referenced in the text.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "appendix"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the appendix.",
+ "startsNewBlock": true
},
{
"plain": "A table of lighthouse construction dates referenced in the text."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "appendix"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the appendix.",
+ "startsNewBlock": true
+ },
{
"plain": "A table of lighthouse construction dates referenced in the text."
+ },
+ {
+ "plain": "End of the appendix."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "appendix"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the appendix."
+ "plain": "Start of the appendix.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A table of lighthouse construction dates referenced in the text."
+ },
+ {
+ "plain": "End of the appendix."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "appendix"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the appendix.",
+ "startsNewBlock": true
},
{
"plain": "A table of lighthouse construction dates referenced in the text."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "appendix"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the appendix."
+ "plain": "Start of the appendix.",
+ "startsNewBlock": true
},
{
"plain": "A table of lighthouse construction dates referenced in the text."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "appendix"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the appendix.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A table of lighthouse construction dates referenced in the text."
+ },
+ {
+ "plain": "End of the appendix."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "appendix"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the appendix."
+ "plain": "Start of the appendix.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A table of lighthouse construction dates referenced in the text."
+ },
+ {
+ "plain": "End of the appendix."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "appendix"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the appendix.",
+ "startsNewBlock": true
},
{
"plain": "A table of lighthouse construction dates referenced in the text."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the appendix."
+ "ssml": "A table of lighthouse construction dates referenced in the text.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "appendix"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the appendix.",
+ "startsNewBlock": true
},
{
"ssml": "A table of lighthouse construction dates referenced in the text."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "appendix"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the appendix.",
+ "startsNewBlock": true
+ },
{
"ssml": "A table of lighthouse construction dates referenced in the text."
+ },
+ {
+ "ssml": "End of the appendix."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "appendix"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the appendix."
+ "ssml": "Start of the appendix.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A table of lighthouse construction dates referenced in the text."
+ },
+ {
+ "ssml": "End of the appendix."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "appendix"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the appendix.",
+ "startsNewBlock": true
},
{
"ssml": "A table of lighthouse construction dates referenced in the text."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "appendix"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the appendix."
+ "ssml": "Start of the appendix.",
+ "startsNewBlock": true
},
{
"ssml": "A table of lighthouse construction dates referenced in the text."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "appendix"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the appendix.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A table of lighthouse construction dates referenced in the text."
+ },
+ {
+ "ssml": "End of the appendix."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "appendix"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the appendix."
+ "ssml": "Start of the appendix.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A table of lighthouse construction dates referenced in the text."
+ },
+ {
+ "ssml": "End of the appendix."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "appendix"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the appendix.",
+ "startsNewBlock": true
},
{
"ssml": "A table of lighthouse construction dates referenced in the text."
diff --git a/fixtures/appendix-role-aria/utterances.json b/fixtures/appendix-role-aria/utterances.json
index 21de010..a700dc1 100644
--- a/fixtures/appendix-role-aria/utterances.json
+++ b/fixtures/appendix-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the appendix."
+ "plain": "A table of lighthouse construction dates referenced in the text.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "appendix"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the appendix.",
+ "startsNewBlock": true
},
{
"plain": "A table of lighthouse construction dates referenced in the text."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "appendix"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the appendix.",
+ "startsNewBlock": true
+ },
{
"plain": "A table of lighthouse construction dates referenced in the text."
+ },
+ {
+ "plain": "End of the appendix."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "appendix"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the appendix."
+ "plain": "Start of the appendix.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A table of lighthouse construction dates referenced in the text."
+ },
+ {
+ "plain": "End of the appendix."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "appendix"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the appendix.",
+ "startsNewBlock": true
},
{
"plain": "A table of lighthouse construction dates referenced in the text."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "appendix"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the appendix."
+ "plain": "Start of the appendix.",
+ "startsNewBlock": true
},
{
"plain": "A table of lighthouse construction dates referenced in the text."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "appendix"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the appendix.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A table of lighthouse construction dates referenced in the text."
+ },
+ {
+ "plain": "End of the appendix."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "appendix"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the appendix."
+ "plain": "Start of the appendix.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A table of lighthouse construction dates referenced in the text."
+ },
+ {
+ "plain": "End of the appendix."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "appendix"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the appendix.",
+ "startsNewBlock": true
},
{
"plain": "A table of lighthouse construction dates referenced in the text."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the appendix."
+ "ssml": "A table of lighthouse construction dates referenced in the text.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "appendix"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the appendix.",
+ "startsNewBlock": true
},
{
"ssml": "A table of lighthouse construction dates referenced in the text."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "appendix"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the appendix.",
+ "startsNewBlock": true
+ },
{
"ssml": "A table of lighthouse construction dates referenced in the text."
+ },
+ {
+ "ssml": "End of the appendix."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "appendix"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the appendix."
+ "ssml": "Start of the appendix.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A table of lighthouse construction dates referenced in the text."
+ },
+ {
+ "ssml": "End of the appendix."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "appendix"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the appendix.",
+ "startsNewBlock": true
},
{
"ssml": "A table of lighthouse construction dates referenced in the text."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "appendix"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the appendix."
+ "ssml": "Start of the appendix.",
+ "startsNewBlock": true
},
{
"ssml": "A table of lighthouse construction dates referenced in the text."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "appendix"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the appendix.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A table of lighthouse construction dates referenced in the text."
+ },
+ {
+ "ssml": "End of the appendix."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "appendix"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the appendix."
+ "ssml": "Start of the appendix.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A table of lighthouse construction dates referenced in the text."
+ },
+ {
+ "ssml": "End of the appendix."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "appendix"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the appendix.",
+ "startsNewBlock": true
},
{
"ssml": "A table of lighthouse construction dates referenced in the text."
diff --git a/fixtures/article-html-native/utterances.json b/fixtures/article-html-native/utterances.json
index 85840d2..d0279b3 100644
--- a/fixtures/article-html-native/utterances.json
+++ b/fixtures/article-html-native/utterances.json
@@ -6,40 +6,8 @@
},
"utterances": [
{
- "plain": "A self-contained article about lighthouse keeping."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "A self-contained article about lighthouse keeping."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "A self-contained article about lighthouse keeping."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "A self-contained article about lighthouse keeping."
+ "plain": "A self-contained article about lighthouse keeping.",
+ "startsNewBlock": true
}
]
},
@@ -49,40 +17,8 @@
},
"utterances": [
{
- "ssml": "A self-contained article about lighthouse keeping."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "A self-contained article about lighthouse keeping."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "A self-contained article about lighthouse keeping."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "A self-contained article about lighthouse keeping."
+ "ssml": "A self-contained article about lighthouse keeping.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/aside-html-native/utterances.json b/fixtures/aside-html-native/utterances.json
index b0cd314..6f8b2f4 100644
--- a/fixtures/aside-html-native/utterances.json
+++ b/fixtures/aside-html-native/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the aside."
+ "plain": "By the way, lighthouses were once staffed around the clock.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
"plain": "By the way, lighthouses were once staffed around the clock."
@@ -19,31 +34,58 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"aside"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "By the way, lighthouses were once staffed around the clock."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
},
"utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
{
"plain": "By the way, lighthouses were once staffed around the clock."
+ },
+ {
+ "plain": "End of the aside."
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the aside."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
"plain": "By the way, lighthouses were once staffed around the clock."
@@ -56,11 +98,37 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "aside"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the aside."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "By the way, lighthouses were once staffed around the clock."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
"plain": "By the way, lighthouses were once staffed around the clock."
@@ -73,11 +141,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "aside"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the aside."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
"plain": "By the way, lighthouses were once staffed around the clock."
@@ -89,48 +161,278 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the aside."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
- "ssml": "By the way, lighthouses were once staffed around the clock."
+ "plain": "By the way, lighthouses were once staffed around the clock."
},
{
- "ssml": "End of the aside."
+ "plain": "End of the aside."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
"skip": [
"aside"
]
},
"utterances": []
},
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "By the way, lighthouses were once staffed around the clock.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "By the way, lighthouses were once staffed around the clock."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
{
"ssml": "By the way, lighthouses were once staffed around the clock."
+ },
+ {
+ "ssml": "End of the aside."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the aside."
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
},
{
"ssml": "By the way, lighthouses were once staffed around the clock."
@@ -143,11 +445,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "By the way, lighthouses were once staffed around the clock."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the aside."
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "By the way, lighthouses were once staffed around the clock."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
},
{
"ssml": "By the way, lighthouses were once staffed around the clock."
@@ -160,11 +510,37 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the aside."
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "By the way, lighthouses were once staffed around the clock."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
},
{
"ssml": "By the way, lighthouses were once staffed around the clock."
@@ -173,6 +549,194 @@
"ssml": "End of the aside."
}
]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/audio-html-native/utterances.json b/fixtures/audio-html-native/utterances.json
index 5f86bfe..5bc62e0 100644
--- a/fixtures/audio-html-native/utterances.json
+++ b/fixtures/audio-html-native/utterances.json
@@ -6,7 +6,21 @@
},
"utterances": [
{
- "plain": "Audio."
+ "plain": "Foghorn recording from the 1962 restoration"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "audio"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Audio.",
+ "startsNewBlock": true
},
{
"plain": "Foghorn recording from the 1962 restoration"
@@ -16,9 +30,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "audio"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Audio.",
+ "startsNewBlock": true
+ },
{
"plain": "Foghorn recording from the 1962 restoration"
}
@@ -27,11 +48,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "audio"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Audio."
+ "plain": "Audio.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Foghorn recording from the 1962 restoration"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "audio"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Audio.",
+ "startsNewBlock": true
},
{
"plain": "Foghorn recording from the 1962 restoration"
@@ -41,11 +85,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "audio"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Audio."
+ "plain": "Audio.",
+ "startsNewBlock": true
},
{
"plain": "Foghorn recording from the 1962 restoration"
@@ -55,11 +103,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "audio"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Audio.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Foghorn recording from the 1962 restoration"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "audio"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Audio."
+ "plain": "Audio.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Foghorn recording from the 1962 restoration"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "audio"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Audio.",
+ "startsNewBlock": true
},
{
"plain": "Foghorn recording from the 1962 restoration"
@@ -72,7 +162,21 @@
},
"utterances": [
{
- "ssml": "Audio."
+ "ssml": "Foghorn recording from the 1962 restoration"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "audio"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Audio.",
+ "startsNewBlock": true
},
{
"ssml": "Foghorn recording from the 1962 restoration"
@@ -82,9 +186,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "audio"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Audio.",
+ "startsNewBlock": true
+ },
{
"ssml": "Foghorn recording from the 1962 restoration"
}
@@ -93,11 +204,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "audio"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Audio."
+ "ssml": "Audio.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Foghorn recording from the 1962 restoration"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "audio"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Audio.",
+ "startsNewBlock": true
},
{
"ssml": "Foghorn recording from the 1962 restoration"
@@ -107,11 +241,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "audio"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Audio."
+ "ssml": "Audio.",
+ "startsNewBlock": true
},
{
"ssml": "Foghorn recording from the 1962 restoration"
@@ -121,11 +259,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "audio"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Audio.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Foghorn recording from the 1962 restoration"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "audio"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Audio."
+ "ssml": "Audio.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Foghorn recording from the 1962 restoration"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "audio"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Audio.",
+ "startsNewBlock": true
},
{
"ssml": "Foghorn recording from the 1962 restoration"
diff --git a/fixtures/backlink-epub-type/utterances.json b/fixtures/backlink-epub-type/utterances.json
index 607b39e..c2256ab 100644
--- a/fixtures/backlink-epub-type/utterances.json
+++ b/fixtures/backlink-epub-type/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "Return to reference"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "Return to reference"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "Return to reference"
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "Return to reference"
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "Return to reference"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "Return to reference"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "Return to reference"
- }
- ]
}
]
}
diff --git a/fixtures/backlink-role-aria/utterances.json b/fixtures/backlink-role-aria/utterances.json
index 607b39e..c2256ab 100644
--- a/fixtures/backlink-role-aria/utterances.json
+++ b/fixtures/backlink-role-aria/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "Return to reference"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "Return to reference"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "Return to reference"
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "Return to reference"
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "Return to reference"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "Return to reference"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "Return to reference"
- }
- ]
}
]
}
diff --git a/fixtures/bibliography-epub-type/utterances.json b/fixtures/bibliography-epub-type/utterances.json
index 93aabea..1831693 100644
--- a/fixtures/bibliography-epub-type/utterances.json
+++ b/fixtures/bibliography-epub-type/utterances.json
@@ -6,13 +6,33 @@
},
"utterances": [
{
- "plain": "Start of the bibliography."
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
},
{
"plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "plain": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
},
{
"plain": "End of the bibliography."
@@ -22,40 +42,73 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"bibliography"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "always"
},
"utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
{
"plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "plain": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the bibliography."
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the bibliography."
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
},
{
"plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "plain": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
},
{
"plain": "End of the bibliography."
@@ -65,17 +118,22 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "bibliography"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the bibliography."
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
},
{
"plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "plain": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
},
{
"plain": "End of the bibliography."
@@ -85,17 +143,23 @@
{
"options": {
"format": "plain",
- "language": "none"
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the bibliography."
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
},
{
"plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "plain": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
},
{
"plain": "End of the bibliography."
@@ -104,105 +168,4983 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "none"
},
"utterances": [
{
- "ssml": "Start of the bibliography."
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
},
{
- "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "ssml": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the bibliography."
+ "plain": "End of the bibliography."
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
+ "format": "plain",
+ "contextualize": [
"bibliography"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
]
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the bibliography."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "ssml": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the bibliography."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the bibliography."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "ssml": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the bibliography."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the bibliography."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "ssml": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the bibliography."
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
}
]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/bibliography-role-aria/utterances.json b/fixtures/bibliography-role-aria/utterances.json
index 93aabea..1831693 100644
--- a/fixtures/bibliography-role-aria/utterances.json
+++ b/fixtures/bibliography-role-aria/utterances.json
@@ -6,13 +6,33 @@
},
"utterances": [
{
- "plain": "Start of the bibliography."
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
},
{
"plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "plain": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
},
{
"plain": "End of the bibliography."
@@ -22,40 +42,73 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"bibliography"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "always"
},
"utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
{
"plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "plain": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the bibliography."
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the bibliography."
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
},
{
"plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "plain": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
},
{
"plain": "End of the bibliography."
@@ -65,17 +118,22 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "bibliography"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the bibliography."
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
},
{
"plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "plain": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
},
{
"plain": "End of the bibliography."
@@ -85,17 +143,23 @@
{
"options": {
"format": "plain",
- "language": "none"
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the bibliography."
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
},
{
"plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "plain": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
},
{
"plain": "End of the bibliography."
@@ -104,105 +168,4983 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "none"
},
"utterances": [
{
- "ssml": "Start of the bibliography."
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
},
{
- "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "ssml": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the bibliography."
+ "plain": "End of the bibliography."
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
+ "format": "plain",
+ "contextualize": [
"bibliography"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
]
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the bibliography."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "ssml": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the bibliography."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the bibliography."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "ssml": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the bibliography."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the bibliography."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
},
{
- "ssml": "Doe, A. Coastal Illumination. 1975."
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the bibliography."
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
}
]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the bibliography.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Smith, J. Lighthouses of the Atlantic. 1988."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Doe, A. Coastal Illumination. 1975."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the bibliography."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "bibliography"
+ ],
+ "contextualize": [
+ "bibliography",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/biblioref-epub-type/utterances.json b/fixtures/biblioref-epub-type/utterances.json
index 9927c0f..8a3d907 100644
--- a/fixtures/biblioref-epub-type/utterances.json
+++ b/fixtures/biblioref-epub-type/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "See Smith, 1988"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "See Smith, 1988"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "See Smith, 1988"
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "See Smith, 1988"
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "See Smith, 1988"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "See Smith, 1988"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "See Smith, 1988"
- }
- ]
}
]
}
diff --git a/fixtures/biblioref-role-aria/utterances.json b/fixtures/biblioref-role-aria/utterances.json
index 9927c0f..8a3d907 100644
--- a/fixtures/biblioref-role-aria/utterances.json
+++ b/fixtures/biblioref-role-aria/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "See Smith, 1988"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "See Smith, 1988"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "See Smith, 1988"
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "See Smith, 1988"
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "See Smith, 1988"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "See Smith, 1988"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "See Smith, 1988"
- }
- ]
}
]
}
diff --git a/fixtures/blockquote-html-native/utterances.json b/fixtures/blockquote-html-native/utterances.json
index 872626f..4b36ef9 100644
--- a/fixtures/blockquote-html-native/utterances.json
+++ b/fixtures/blockquote-html-native/utterances.json
@@ -5,41 +5,179 @@
"format": "plain"
},
"utterances": [
+ {
+ "plain": "To be, or not to be, that is the question.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "blockquote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the quote.",
+ "startsNewBlock": true
+ },
{
"plain": "To be, or not to be, that is the question."
+ },
+ {
+ "plain": "End of the quote."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "blockquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the quote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "To be, or not to be, that is the question."
+ },
+ {
+ "plain": "End of the quote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "blockquote"
+ ],
"language": "always"
},
"utterances": [
+ {
+ "plain": "Start of the quote.",
+ "startsNewBlock": true
+ },
{
"plain": "To be, or not to be, that is the question."
+ },
+ {
+ "plain": "End of the quote."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "blockquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the quote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "To be, or not to be, that is the question."
+ },
+ {
+ "plain": "End of the quote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "blockquote"
+ ],
"language": "block-level"
},
"utterances": [
+ {
+ "plain": "Start of the quote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "To be, or not to be, that is the question."
+ },
+ {
+ "plain": "End of the quote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "blockquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the quote.",
+ "startsNewBlock": true
+ },
{
"plain": "To be, or not to be, that is the question."
+ },
+ {
+ "plain": "End of the quote."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "blockquote"
+ ],
"language": "none"
},
"utterances": [
+ {
+ "plain": "Start of the quote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "To be, or not to be, that is the question."
+ },
+ {
+ "plain": "End of the quote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "blockquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the quote.",
+ "startsNewBlock": true
+ },
{
"plain": "To be, or not to be, that is the question."
+ },
+ {
+ "plain": "End of the quote."
}
]
},
@@ -48,41 +186,179 @@
"format": "ssml"
},
"utterances": [
+ {
+ "ssml": "To be, or not to be, that is the question.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "blockquote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the quote.",
+ "startsNewBlock": true
+ },
{
"ssml": "To be, or not to be, that is the question."
+ },
+ {
+ "ssml": "End of the quote."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "blockquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the quote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "To be, or not to be, that is the question."
+ },
+ {
+ "ssml": "End of the quote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "blockquote"
+ ],
"language": "always"
},
"utterances": [
+ {
+ "ssml": "Start of the quote.",
+ "startsNewBlock": true
+ },
{
"ssml": "To be, or not to be, that is the question."
+ },
+ {
+ "ssml": "End of the quote."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "blockquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the quote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "To be, or not to be, that is the question."
+ },
+ {
+ "ssml": "End of the quote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "blockquote"
+ ],
"language": "block-level"
},
"utterances": [
+ {
+ "ssml": "Start of the quote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "To be, or not to be, that is the question."
+ },
+ {
+ "ssml": "End of the quote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "blockquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the quote.",
+ "startsNewBlock": true
+ },
{
"ssml": "To be, or not to be, that is the question."
+ },
+ {
+ "ssml": "End of the quote."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "blockquote"
+ ],
"language": "none"
},
"utterances": [
+ {
+ "ssml": "Start of the quote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "To be, or not to be, that is the question."
+ },
+ {
+ "ssml": "End of the quote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "blockquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the quote.",
+ "startsNewBlock": true
+ },
{
"ssml": "To be, or not to be, that is the question."
+ },
+ {
+ "ssml": "End of the quote."
}
]
}
diff --git a/fixtures/body-html-native/utterances.json b/fixtures/body-html-native/utterances.json
index eca99bc..dcd45bc 100644
--- a/fixtures/body-html-native/utterances.json
+++ b/fixtures/body-html-native/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "The full content of the document."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "The full content of the document."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "The full content of the document."
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "The full content of the document."
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "The full content of the document."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "The full content of the document."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "The full content of the document."
- }
- ]
}
]
}
diff --git a/fixtures/chapter-epub-type/utterances.json b/fixtures/chapter-epub-type/utterances.json
index da50746..736600d 100644
--- a/fixtures/chapter-epub-type/utterances.json
+++ b/fixtures/chapter-epub-type/utterances.json
@@ -6,7 +6,517 @@
},
"utterances": [
{
- "plain": "Start of the chapter."
+ "plain": "Title of the chapter",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
},
{
"plain": "Heading level 1."
@@ -21,82 +531,343 @@
},
{
"options": {
- "format": "plain",
- "contextualize": false
+ "format": "ssml"
},
"utterances": [
{
- "plain": "Title of the chapter"
+ "ssml": "Title of the chapter",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "chapter"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the chapter."
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 1."
+ "ssml": "Title of the chapter"
},
{
- "plain": "Title of the chapter"
+ "ssml": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
- "plain": "End of the chapter."
+ "ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "chapter"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the chapter."
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 1."
+ "ssml": "Title of the chapter"
},
{
- "plain": "Title of the chapter"
+ "ssml": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
- "plain": "End of the chapter."
+ "ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "chapter"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the chapter."
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 1."
+ "ssml": "Title of the chapter"
},
{
- "plain": "Title of the chapter"
+ "ssml": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
- "plain": "End of the chapter."
+ "ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ]
},
"utterances": [
{
- "ssml": "Start of the chapter."
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
"ssml": "Heading level 1."
@@ -112,22 +883,67 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 1."
+ },
{
"ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the chapter."
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 1."
+ },
+ {
+ "ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
"ssml": "Heading level 1."
@@ -143,11 +959,42 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the chapter."
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 1."
+ },
+ {
+ "ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
"ssml": "Heading level 1."
@@ -163,11 +1010,42 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the chapter."
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 1."
+ },
+ {
+ "ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
"ssml": "Heading level 1."
diff --git a/fixtures/chapter-role-aria/utterances.json b/fixtures/chapter-role-aria/utterances.json
index da50746..736600d 100644
--- a/fixtures/chapter-role-aria/utterances.json
+++ b/fixtures/chapter-role-aria/utterances.json
@@ -6,7 +6,517 @@
},
"utterances": [
{
- "plain": "Start of the chapter."
+ "plain": "Title of the chapter",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the chapter"
+ },
+ {
+ "plain": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the chapter.",
+ "startsNewBlock": true
},
{
"plain": "Heading level 1."
@@ -21,82 +531,343 @@
},
{
"options": {
- "format": "plain",
- "contextualize": false
+ "format": "ssml"
},
"utterances": [
{
- "plain": "Title of the chapter"
+ "ssml": "Title of the chapter",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "chapter"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the chapter."
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 1."
+ "ssml": "Title of the chapter"
},
{
- "plain": "Title of the chapter"
+ "ssml": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
- "plain": "End of the chapter."
+ "ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "chapter"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the chapter."
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 1."
+ "ssml": "Title of the chapter"
},
{
- "plain": "Title of the chapter"
+ "ssml": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
- "plain": "End of the chapter."
+ "ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "chapter"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the chapter."
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 1."
+ "ssml": "Title of the chapter"
},
{
- "plain": "Title of the chapter"
+ "ssml": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
- "plain": "End of the chapter."
+ "ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the chapter"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ]
},
"utterances": [
{
- "ssml": "Start of the chapter."
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
"ssml": "Heading level 1."
@@ -112,22 +883,67 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 1."
+ },
{
"ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the chapter."
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 1."
+ },
+ {
+ "ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
"ssml": "Heading level 1."
@@ -143,11 +959,42 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the chapter."
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 1."
+ },
+ {
+ "ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
"ssml": "Heading level 1."
@@ -163,11 +1010,42 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the chapter."
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 1."
+ },
+ {
+ "ssml": "Title of the chapter"
+ },
+ {
+ "ssml": "End of the chapter."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "chapter",
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the chapter.",
+ "startsNewBlock": true
},
{
"ssml": "Heading level 1."
diff --git a/fixtures/colophon-epub-type/utterances.json b/fixtures/colophon-epub-type/utterances.json
index abaec75..d4520e1 100644
--- a/fixtures/colophon-epub-type/utterances.json
+++ b/fixtures/colophon-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Colophon."
+ "plain": "Set in Georgia, 11pt, on recycled paper.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "colophon"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Colophon.",
+ "startsNewBlock": true
},
{
"plain": "Set in Georgia, 11pt, on recycled paper."
@@ -16,9 +31,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "colophon"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Colophon.",
+ "startsNewBlock": true
+ },
{
"plain": "Set in Georgia, 11pt, on recycled paper."
}
@@ -27,11 +49,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "colophon"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Colophon."
+ "plain": "Colophon.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Set in Georgia, 11pt, on recycled paper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "colophon"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Colophon.",
+ "startsNewBlock": true
},
{
"plain": "Set in Georgia, 11pt, on recycled paper."
@@ -41,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "colophon"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Colophon."
+ "plain": "Colophon.",
+ "startsNewBlock": true
},
{
"plain": "Set in Georgia, 11pt, on recycled paper."
@@ -55,11 +104,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "colophon"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Colophon.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Set in Georgia, 11pt, on recycled paper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "colophon"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Colophon."
+ "plain": "Colophon.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Set in Georgia, 11pt, on recycled paper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "colophon"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Colophon.",
+ "startsNewBlock": true
},
{
"plain": "Set in Georgia, 11pt, on recycled paper."
@@ -72,7 +163,22 @@
},
"utterances": [
{
- "ssml": "Colophon."
+ "ssml": "Set in Georgia, 11pt, on recycled paper.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "colophon"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Colophon.",
+ "startsNewBlock": true
},
{
"ssml": "Set in Georgia, 11pt, on recycled paper."
@@ -82,9 +188,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "colophon"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Colophon.",
+ "startsNewBlock": true
+ },
{
"ssml": "Set in Georgia, 11pt, on recycled paper."
}
@@ -93,11 +206,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "colophon"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Colophon."
+ "ssml": "Colophon.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Set in Georgia, 11pt, on recycled paper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "colophon"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Colophon.",
+ "startsNewBlock": true
},
{
"ssml": "Set in Georgia, 11pt, on recycled paper."
@@ -107,11 +243,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "colophon"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Colophon."
+ "ssml": "Colophon.",
+ "startsNewBlock": true
},
{
"ssml": "Set in Georgia, 11pt, on recycled paper."
@@ -121,11 +261,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "colophon"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Colophon.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Set in Georgia, 11pt, on recycled paper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "colophon"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Colophon."
+ "ssml": "Colophon.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Set in Georgia, 11pt, on recycled paper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "colophon"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Colophon.",
+ "startsNewBlock": true
},
{
"ssml": "Set in Georgia, 11pt, on recycled paper."
diff --git a/fixtures/colophon-role-aria/utterances.json b/fixtures/colophon-role-aria/utterances.json
index abaec75..d4520e1 100644
--- a/fixtures/colophon-role-aria/utterances.json
+++ b/fixtures/colophon-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Colophon."
+ "plain": "Set in Georgia, 11pt, on recycled paper.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "colophon"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Colophon.",
+ "startsNewBlock": true
},
{
"plain": "Set in Georgia, 11pt, on recycled paper."
@@ -16,9 +31,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "colophon"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Colophon.",
+ "startsNewBlock": true
+ },
{
"plain": "Set in Georgia, 11pt, on recycled paper."
}
@@ -27,11 +49,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "colophon"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Colophon."
+ "plain": "Colophon.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Set in Georgia, 11pt, on recycled paper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "colophon"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Colophon.",
+ "startsNewBlock": true
},
{
"plain": "Set in Georgia, 11pt, on recycled paper."
@@ -41,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "colophon"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Colophon."
+ "plain": "Colophon.",
+ "startsNewBlock": true
},
{
"plain": "Set in Georgia, 11pt, on recycled paper."
@@ -55,11 +104,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "colophon"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Colophon.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Set in Georgia, 11pt, on recycled paper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "colophon"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Colophon."
+ "plain": "Colophon.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Set in Georgia, 11pt, on recycled paper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "colophon"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Colophon.",
+ "startsNewBlock": true
},
{
"plain": "Set in Georgia, 11pt, on recycled paper."
@@ -72,7 +163,22 @@
},
"utterances": [
{
- "ssml": "Colophon."
+ "ssml": "Set in Georgia, 11pt, on recycled paper.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "colophon"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Colophon.",
+ "startsNewBlock": true
},
{
"ssml": "Set in Georgia, 11pt, on recycled paper."
@@ -82,9 +188,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "colophon"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Colophon.",
+ "startsNewBlock": true
+ },
{
"ssml": "Set in Georgia, 11pt, on recycled paper."
}
@@ -93,11 +206,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "colophon"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Colophon."
+ "ssml": "Colophon.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Set in Georgia, 11pt, on recycled paper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "colophon"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Colophon.",
+ "startsNewBlock": true
},
{
"ssml": "Set in Georgia, 11pt, on recycled paper."
@@ -107,11 +243,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "colophon"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Colophon."
+ "ssml": "Colophon.",
+ "startsNewBlock": true
},
{
"ssml": "Set in Georgia, 11pt, on recycled paper."
@@ -121,11 +261,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "colophon"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Colophon.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Set in Georgia, 11pt, on recycled paper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "colophon"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Colophon."
+ "ssml": "Colophon.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Set in Georgia, 11pt, on recycled paper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "colophon"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Colophon.",
+ "startsNewBlock": true
},
{
"ssml": "Set in Georgia, 11pt, on recycled paper."
diff --git a/fixtures/complementary-role-aria/utterances.json b/fixtures/complementary-role-aria/utterances.json
index 8be8831..7bf3f33 100644
--- a/fixtures/complementary-role-aria/utterances.json
+++ b/fixtures/complementary-role-aria/utterances.json
@@ -13,33 +13,162 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "complementary"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the complementary content."
+ },
+ {
+ "plain": "A supporting note related to the main content."
+ },
+ {
+ "plain": "End of the complementary content."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "complementary"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the complementary content."
+ },
+ {
+ "plain": "A supporting note related to the main content."
+ },
+ {
+ "plain": "End of the complementary content."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "complementary"
+ ],
"language": "always"
},
"utterances": [
+ {
+ "plain": "Start of the complementary content."
+ },
+ {
+ "plain": "A supporting note related to the main content."
+ },
+ {
+ "plain": "End of the complementary content."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "complementary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the complementary content."
+ },
{
"plain": "A supporting note related to the main content."
+ },
+ {
+ "plain": "End of the complementary content."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "complementary"
+ ],
"language": "block-level"
},
"utterances": [
+ {
+ "plain": "Start of the complementary content."
+ },
{
"plain": "A supporting note related to the main content."
+ },
+ {
+ "plain": "End of the complementary content."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "complementary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the complementary content."
+ },
+ {
+ "plain": "A supporting note related to the main content."
+ },
+ {
+ "plain": "End of the complementary content."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "complementary"
+ ],
"language": "none"
},
"utterances": [
+ {
+ "plain": "Start of the complementary content."
+ },
+ {
+ "plain": "A supporting note related to the main content."
+ },
+ {
+ "plain": "End of the complementary content."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "complementary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the complementary content."
+ },
{
"plain": "A supporting note related to the main content."
+ },
+ {
+ "plain": "End of the complementary content."
}
]
},
@@ -56,33 +185,162 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "complementary"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the complementary content."
+ },
+ {
+ "ssml": "A supporting note related to the main content."
+ },
+ {
+ "ssml": "End of the complementary content."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "complementary"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the complementary content."
+ },
+ {
+ "ssml": "A supporting note related to the main content."
+ },
+ {
+ "ssml": "End of the complementary content."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "complementary"
+ ],
"language": "always"
},
"utterances": [
+ {
+ "ssml": "Start of the complementary content."
+ },
+ {
+ "ssml": "A supporting note related to the main content."
+ },
+ {
+ "ssml": "End of the complementary content."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "complementary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the complementary content."
+ },
{
"ssml": "A supporting note related to the main content."
+ },
+ {
+ "ssml": "End of the complementary content."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "complementary"
+ ],
"language": "block-level"
},
"utterances": [
+ {
+ "ssml": "Start of the complementary content."
+ },
{
"ssml": "A supporting note related to the main content."
+ },
+ {
+ "ssml": "End of the complementary content."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "complementary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the complementary content."
+ },
+ {
+ "ssml": "A supporting note related to the main content."
+ },
+ {
+ "ssml": "End of the complementary content."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "complementary"
+ ],
"language": "none"
},
"utterances": [
+ {
+ "ssml": "Start of the complementary content."
+ },
+ {
+ "ssml": "A supporting note related to the main content."
+ },
+ {
+ "ssml": "End of the complementary content."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "complementary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the complementary content."
+ },
{
"ssml": "A supporting note related to the main content."
+ },
+ {
+ "ssml": "End of the complementary content."
}
]
}
diff --git a/fixtures/conclusion-epub-type/utterances.json b/fixtures/conclusion-epub-type/utterances.json
index 0ac5b48..5d8c8f4 100644
--- a/fixtures/conclusion-epub-type/utterances.json
+++ b/fixtures/conclusion-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the conclusion."
+ "plain": "Lighthouses remain a symbol of safe passage.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "conclusion"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the conclusion.",
+ "startsNewBlock": true
},
{
"plain": "Lighthouses remain a symbol of safe passage."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "conclusion"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the conclusion.",
+ "startsNewBlock": true
+ },
{
"plain": "Lighthouses remain a symbol of safe passage."
+ },
+ {
+ "plain": "End of the conclusion."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "conclusion"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the conclusion."
+ "plain": "Start of the conclusion.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses remain a symbol of safe passage."
+ },
+ {
+ "plain": "End of the conclusion."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "conclusion"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the conclusion.",
+ "startsNewBlock": true
},
{
"plain": "Lighthouses remain a symbol of safe passage."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "conclusion"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the conclusion."
+ "plain": "Start of the conclusion.",
+ "startsNewBlock": true
},
{
"plain": "Lighthouses remain a symbol of safe passage."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "conclusion"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the conclusion.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses remain a symbol of safe passage."
+ },
+ {
+ "plain": "End of the conclusion."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "conclusion"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the conclusion."
+ "plain": "Start of the conclusion.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses remain a symbol of safe passage."
+ },
+ {
+ "plain": "End of the conclusion."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "conclusion"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the conclusion.",
+ "startsNewBlock": true
},
{
"plain": "Lighthouses remain a symbol of safe passage."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the conclusion."
+ "ssml": "Lighthouses remain a symbol of safe passage.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "conclusion"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the conclusion.",
+ "startsNewBlock": true
},
{
"ssml": "Lighthouses remain a symbol of safe passage."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "conclusion"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the conclusion.",
+ "startsNewBlock": true
+ },
{
"ssml": "Lighthouses remain a symbol of safe passage."
+ },
+ {
+ "ssml": "End of the conclusion."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "conclusion"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the conclusion."
+ "ssml": "Start of the conclusion.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses remain a symbol of safe passage."
+ },
+ {
+ "ssml": "End of the conclusion."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "conclusion"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the conclusion.",
+ "startsNewBlock": true
},
{
"ssml": "Lighthouses remain a symbol of safe passage."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "conclusion"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the conclusion."
+ "ssml": "Start of the conclusion.",
+ "startsNewBlock": true
},
{
"ssml": "Lighthouses remain a symbol of safe passage."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "conclusion"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the conclusion.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses remain a symbol of safe passage."
+ },
+ {
+ "ssml": "End of the conclusion."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "conclusion"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the conclusion."
+ "ssml": "Start of the conclusion.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses remain a symbol of safe passage."
+ },
+ {
+ "ssml": "End of the conclusion."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "conclusion"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the conclusion.",
+ "startsNewBlock": true
},
{
"ssml": "Lighthouses remain a symbol of safe passage."
diff --git a/fixtures/conclusion-role-aria/utterances.json b/fixtures/conclusion-role-aria/utterances.json
index 0ac5b48..5d8c8f4 100644
--- a/fixtures/conclusion-role-aria/utterances.json
+++ b/fixtures/conclusion-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the conclusion."
+ "plain": "Lighthouses remain a symbol of safe passage.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "conclusion"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the conclusion.",
+ "startsNewBlock": true
},
{
"plain": "Lighthouses remain a symbol of safe passage."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "conclusion"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the conclusion.",
+ "startsNewBlock": true
+ },
{
"plain": "Lighthouses remain a symbol of safe passage."
+ },
+ {
+ "plain": "End of the conclusion."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "conclusion"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the conclusion."
+ "plain": "Start of the conclusion.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses remain a symbol of safe passage."
+ },
+ {
+ "plain": "End of the conclusion."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "conclusion"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the conclusion.",
+ "startsNewBlock": true
},
{
"plain": "Lighthouses remain a symbol of safe passage."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "conclusion"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the conclusion."
+ "plain": "Start of the conclusion.",
+ "startsNewBlock": true
},
{
"plain": "Lighthouses remain a symbol of safe passage."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "conclusion"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the conclusion.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses remain a symbol of safe passage."
+ },
+ {
+ "plain": "End of the conclusion."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "conclusion"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the conclusion."
+ "plain": "Start of the conclusion.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses remain a symbol of safe passage."
+ },
+ {
+ "plain": "End of the conclusion."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "conclusion"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the conclusion.",
+ "startsNewBlock": true
},
{
"plain": "Lighthouses remain a symbol of safe passage."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the conclusion."
+ "ssml": "Lighthouses remain a symbol of safe passage.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "conclusion"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the conclusion.",
+ "startsNewBlock": true
},
{
"ssml": "Lighthouses remain a symbol of safe passage."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "conclusion"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the conclusion.",
+ "startsNewBlock": true
+ },
{
"ssml": "Lighthouses remain a symbol of safe passage."
+ },
+ {
+ "ssml": "End of the conclusion."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "conclusion"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the conclusion."
+ "ssml": "Start of the conclusion.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses remain a symbol of safe passage."
+ },
+ {
+ "ssml": "End of the conclusion."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "conclusion"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the conclusion.",
+ "startsNewBlock": true
},
{
"ssml": "Lighthouses remain a symbol of safe passage."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "conclusion"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the conclusion."
+ "ssml": "Start of the conclusion.",
+ "startsNewBlock": true
},
{
"ssml": "Lighthouses remain a symbol of safe passage."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "conclusion"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the conclusion.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses remain a symbol of safe passage."
+ },
+ {
+ "ssml": "End of the conclusion."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "conclusion"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the conclusion."
+ "ssml": "Start of the conclusion.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses remain a symbol of safe passage."
+ },
+ {
+ "ssml": "End of the conclusion."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "conclusion"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the conclusion.",
+ "startsNewBlock": true
},
{
"ssml": "Lighthouses remain a symbol of safe passage."
diff --git a/fixtures/cover-epub-type/utterances.json b/fixtures/cover-epub-type/utterances.json
index 5a785a8..47fc382 100644
--- a/fixtures/cover-epub-type/utterances.json
+++ b/fixtures/cover-epub-type/utterances.json
@@ -6,7 +6,427 @@
},
"utterances": [
{
- "plain": "Cover."
+ "plain": "Lighthouses of the Atlantic, by J. Smith",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover",
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover",
+ "image"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover",
+ "image"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover",
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover",
+ "image"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover",
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
},
{
"plain": "Image."
@@ -19,9 +439,20 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "cover",
+ "image"
+ ],
+ "language": "none"
},
"utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
{
"plain": "Lighthouses of the Atlantic, by J. Smith"
}
@@ -30,11 +461,17 @@
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "cover",
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Cover."
+ "plain": "Cover.",
+ "startsNewBlock": true
},
{
"plain": "Image."
@@ -46,45 +483,319 @@
},
{
"options": {
- "format": "plain",
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Cover."
+ "ssml": "Cover.",
+ "startsNewBlock": true
},
{
- "plain": "Image."
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
},
{
- "plain": "Lighthouses of the Atlantic, by J. Smith"
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "cover"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Cover."
+ "ssml": "Cover.",
+ "startsNewBlock": true
},
{
- "plain": "Image."
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
},
{
- "plain": "Lighthouses of the Atlantic, by J. Smith"
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover",
+ "image"
+ ]
},
"utterances": [
{
- "ssml": "Cover."
+ "ssml": "Cover.",
+ "startsNewBlock": true
},
{
"ssml": "Image."
@@ -97,9 +808,20 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "cover",
+ "image"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Image."
+ },
{
"ssml": "Lighthouses of the Atlantic, by J. Smith"
}
@@ -108,11 +830,39 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "cover",
+ "image"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Cover."
+ "ssml": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Image."
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover",
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
},
{
"ssml": "Image."
@@ -125,11 +875,39 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "cover",
+ "image"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Cover."
+ "ssml": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Image."
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover",
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
},
{
"ssml": "Image."
@@ -142,11 +920,39 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "cover",
+ "image"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Cover."
+ "ssml": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Image."
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover",
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
},
{
"ssml": "Image."
diff --git a/fixtures/cover-role-aria/utterances.json b/fixtures/cover-role-aria/utterances.json
index 7360cde..c4f6a49 100644
--- a/fixtures/cover-role-aria/utterances.json
+++ b/fixtures/cover-role-aria/utterances.json
@@ -6,7 +6,426 @@
},
"utterances": [
{
- "plain": "Image."
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image",
+ "cover"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover."
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image",
+ "cover"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover."
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image",
+ "cover"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover."
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image",
+ "cover"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover."
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image",
+ "cover"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover."
+ },
+ {
+ "plain": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image",
+ "cover"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
},
{
"plain": "Cover."
@@ -19,9 +438,20 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "image",
+ "cover"
+ ],
+ "language": "none"
},
"utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover."
+ },
{
"plain": "Lighthouses of the Atlantic, by J. Smith"
}
@@ -30,11 +460,17 @@
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "image",
+ "cover"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Image."
+ "plain": "Image.",
+ "startsNewBlock": true
},
{
"plain": "Cover."
@@ -46,45 +482,318 @@
},
{
"options": {
- "format": "plain",
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Image."
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
- "plain": "Cover."
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
- "plain": "Lighthouses of the Atlantic, by J. Smith"
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Image."
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
- "plain": "Cover."
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
- "plain": "Lighthouses of the Atlantic, by J. Smith"
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "cover"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cover"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Cover.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image",
+ "cover"
+ ]
},
"utterances": [
{
- "ssml": "Image."
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
"ssml": "Cover."
@@ -97,9 +806,20 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "image",
+ "cover"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover."
+ },
{
"ssml": "Lighthouses of the Atlantic, by J. Smith"
}
@@ -108,11 +828,39 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "image",
+ "cover"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Image."
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover."
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image",
+ "cover"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
"ssml": "Cover."
@@ -125,11 +873,39 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "image",
+ "cover"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Image."
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover."
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image",
+ "cover"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
"ssml": "Cover."
@@ -142,11 +918,39 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "image",
+ "cover"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Image."
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover."
+ },
+ {
+ "ssml": "Lighthouses of the Atlantic, by J. Smith"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image",
+ "cover"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
"ssml": "Cover."
diff --git a/fixtures/credit-epub-type/utterances.json b/fixtures/credit-epub-type/utterances.json
index 59d4962..896d8cd 100644
--- a/fixtures/credit-epub-type/utterances.json
+++ b/fixtures/credit-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Credit."
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
},
{
"plain": "Cover photograph by A. Keeper."
@@ -16,9 +31,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "credit"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
{
"plain": "Cover photograph by A. Keeper."
}
@@ -27,11 +49,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "credit"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Credit."
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
},
{
"plain": "Cover photograph by A. Keeper."
@@ -41,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "credit"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Credit."
+ "plain": "Credit.",
+ "startsNewBlock": true
},
{
"plain": "Cover photograph by A. Keeper."
@@ -55,11 +104,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Credit."
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
},
{
"plain": "Cover photograph by A. Keeper."
@@ -72,7 +163,22 @@
},
"utterances": [
{
- "ssml": "Credit."
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
},
{
"ssml": "Cover photograph by A. Keeper."
@@ -82,9 +188,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "credit"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
{
"ssml": "Cover photograph by A. Keeper."
}
@@ -93,11 +206,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Credit."
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
},
{
"ssml": "Cover photograph by A. Keeper."
@@ -107,11 +243,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Credit."
+ "ssml": "Credit.",
+ "startsNewBlock": true
},
{
"ssml": "Cover photograph by A. Keeper."
@@ -121,11 +261,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Credit."
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
},
{
"ssml": "Cover photograph by A. Keeper."
diff --git a/fixtures/credit-role-aria/utterances.json b/fixtures/credit-role-aria/utterances.json
index 59d4962..d3baa35 100644
--- a/fixtures/credit-role-aria/utterances.json
+++ b/fixtures/credit-role-aria/utterances.json
@@ -4,6 +4,19 @@
"options": {
"format": "plain"
},
+ "utterances": [
+ {
+ "plain": "Cover photograph by A. Keeper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ]
+ },
"utterances": [
{
"plain": "Credit."
@@ -16,9 +29,15 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "credit"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Credit."
+ },
{
"plain": "Cover photograph by A. Keeper."
}
@@ -27,6 +46,9 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "credit"
+ ],
"language": "always"
},
"utterances": [
@@ -41,6 +63,27 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
"language": "block-level"
},
"utterances": [
@@ -55,6 +98,27 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
"language": "none"
},
"utterances": [
@@ -66,10 +130,41 @@
}
]
},
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ }
+ ]
+ },
{
"options": {
"format": "ssml"
},
+ "utterances": [
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ]
+ },
"utterances": [
{
"ssml": "Credit."
@@ -82,9 +177,15 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "credit"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Credit."
+ },
{
"ssml": "Cover photograph by A. Keeper."
}
@@ -93,6 +194,9 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
"language": "always"
},
"utterances": [
@@ -107,6 +211,27 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
"language": "block-level"
},
"utterances": [
@@ -121,6 +246,27 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
"language": "none"
},
"utterances": [
@@ -131,6 +277,24 @@
"ssml": "Cover photograph by A. Keeper."
}
]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ }
+ ]
}
]
}
diff --git a/fixtures/credits-epub-type/utterances.json b/fixtures/credits-epub-type/utterances.json
index e1d1444..97ceb37 100644
--- a/fixtures/credits-epub-type/utterances.json
+++ b/fixtures/credits-epub-type/utterances.json
@@ -4,139 +4,7666 @@
"options": {
"format": "plain"
},
+ "utterances": [
+ {
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
"utterances": [
{
"plain": "Start of the credits."
},
{
- "plain": "Credit."
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
},
{
- "plain": "Cover photograph by A. Keeper."
+ "ssml": "Maps by B. Cartographer."
},
{
- "plain": "Credit."
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Maps by B. Cartographer."
+ "ssml": "List item."
},
{
- "plain": "End of the credits."
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
- "contextualize": false
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level"
},
"utterances": [
{
- "plain": "Cover photograph by A. Keeper."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Maps by B. Cartographer."
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
- "language": "always"
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the credits."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Credit."
+ "ssml": "List item."
},
{
- "plain": "Cover photograph by A. Keeper."
+ "ssml": "Credit."
},
{
- "plain": "Credit."
+ "ssml": "Cover photograph by A. Keeper."
},
{
- "plain": "Maps by B. Cartographer."
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "End of the credits."
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
- "language": "block-level"
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "none"
},
"utterances": [
{
- "plain": "Start of the credits."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Credit."
+ "ssml": "List item."
},
{
- "plain": "Cover photograph by A. Keeper."
+ "ssml": "Credit."
},
{
- "plain": "Credit."
+ "ssml": "Cover photograph by A. Keeper."
},
{
- "plain": "Maps by B. Cartographer."
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "End of the credits."
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
- "language": "none"
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the credits."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Credit."
+ "ssml": "List item."
},
{
- "plain": "Cover photograph by A. Keeper."
+ "ssml": "Credit."
},
{
- "plain": "Credit."
+ "ssml": "Cover photograph by A. Keeper."
},
{
- "plain": "Maps by B. Cartographer."
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "End of the credits."
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ]
},
"utterances": [
{
"ssml": "Start of the credits."
},
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Credit."
},
{
"ssml": "Cover photograph by A. Keeper."
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Credit."
},
{
"ssml": "Maps by B. Cartographer."
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the credits."
}
@@ -145,38 +7672,137 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Credit."
+ },
{
"ssml": "Cover photograph by A. Keeper."
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
{
"ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
"language": "always"
},
"utterances": [
{
"ssml": "Start of the credits."
},
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Credit."
},
{
"ssml": "Cover photograph by A. Keeper."
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Credit."
},
{
"ssml": "Maps by B. Cartographer."
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the credits."
}
@@ -185,24 +7811,91 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
"language": "block-level"
},
"utterances": [
{
"ssml": "Start of the credits."
},
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Credit."
},
{
"ssml": "Cover photograph by A. Keeper."
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Credit."
},
{
"ssml": "Maps by B. Cartographer."
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the credits."
}
@@ -211,24 +7904,91 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
"language": "none"
},
"utterances": [
{
"ssml": "Start of the credits."
},
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Credit."
},
{
"ssml": "Cover photograph by A. Keeper."
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Credit."
},
{
"ssml": "Maps by B. Cartographer."
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the credits."
}
diff --git a/fixtures/credits-role-aria/utterances.json b/fixtures/credits-role-aria/utterances.json
index e1d1444..97ceb37 100644
--- a/fixtures/credits-role-aria/utterances.json
+++ b/fixtures/credits-role-aria/utterances.json
@@ -4,139 +4,7666 @@
"options": {
"format": "plain"
},
+ "utterances": [
+ {
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
"utterances": [
{
"plain": "Start of the credits."
},
{
- "plain": "Credit."
+ "plain": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the credits."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Cover photograph by A. Keeper."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Credit."
+ },
+ {
+ "plain": "Maps by B. Cartographer."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Maps by B. Cartographer.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "Credit.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "listItem",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
},
{
- "plain": "Cover photograph by A. Keeper."
+ "ssml": "Maps by B. Cartographer."
},
{
- "plain": "Credit."
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Maps by B. Cartographer."
+ "ssml": "List item."
},
{
- "plain": "End of the credits."
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
- "contextualize": false
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level"
},
"utterances": [
{
- "plain": "Cover photograph by A. Keeper."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Maps by B. Cartographer."
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
- "language": "always"
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the credits."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Credit."
+ "ssml": "List item."
},
{
- "plain": "Cover photograph by A. Keeper."
+ "ssml": "Credit."
},
{
- "plain": "Credit."
+ "ssml": "Cover photograph by A. Keeper."
},
{
- "plain": "Maps by B. Cartographer."
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "End of the credits."
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
- "language": "block-level"
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "none"
},
"utterances": [
{
- "plain": "Start of the credits."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Credit."
+ "ssml": "List item."
},
{
- "plain": "Cover photograph by A. Keeper."
+ "ssml": "Credit."
},
{
- "plain": "Credit."
+ "ssml": "Cover photograph by A. Keeper."
},
{
- "plain": "Maps by B. Cartographer."
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "End of the credits."
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
- "language": "none"
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the credits."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Credit."
+ "ssml": "List item."
},
{
- "plain": "Cover photograph by A. Keeper."
+ "ssml": "Credit."
},
{
- "plain": "Credit."
+ "ssml": "Cover photograph by A. Keeper."
},
{
- "plain": "Maps by B. Cartographer."
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "End of the credits."
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ]
},
"utterances": [
{
"ssml": "Start of the credits."
},
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Credit."
},
{
"ssml": "Cover photograph by A. Keeper."
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Credit."
},
{
"ssml": "Maps by B. Cartographer."
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the credits."
}
@@ -145,38 +7672,137 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Credit."
+ },
{
"ssml": "Cover photograph by A. Keeper."
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
{
"ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
"language": "always"
},
"utterances": [
{
"ssml": "Start of the credits."
},
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Credit."
},
{
"ssml": "Cover photograph by A. Keeper."
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Credit."
},
{
"ssml": "Maps by B. Cartographer."
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the credits."
}
@@ -185,24 +7811,91 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
"language": "block-level"
},
"utterances": [
{
"ssml": "Start of the credits."
},
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Credit."
},
{
"ssml": "Cover photograph by A. Keeper."
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Credit."
},
{
"ssml": "Maps by B. Cartographer."
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the credits."
}
@@ -211,24 +7904,91 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
"language": "none"
},
"utterances": [
{
"ssml": "Start of the credits."
},
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Cover photograph by A. Keeper."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Credit."
+ },
+ {
+ "ssml": "Maps by B. Cartographer."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the credits."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "credits",
+ "list",
+ "listItem",
+ "credit"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the credits."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Credit."
},
{
"ssml": "Cover photograph by A. Keeper."
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Credit."
},
{
"ssml": "Maps by B. Cartographer."
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the credits."
}
diff --git a/fixtures/dedication-epub-type/utterances.json b/fixtures/dedication-epub-type/utterances.json
index 835d6e1..ec8ad71 100644
--- a/fixtures/dedication-epub-type/utterances.json
+++ b/fixtures/dedication-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Dedication."
+ "plain": "For every keeper who lit the lamp at dusk.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "dedication"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Dedication.",
+ "startsNewBlock": true
},
{
"plain": "For every keeper who lit the lamp at dusk."
@@ -16,9 +31,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "dedication"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Dedication.",
+ "startsNewBlock": true
+ },
{
"plain": "For every keeper who lit the lamp at dusk."
}
@@ -27,11 +49,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "dedication"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Dedication."
+ "plain": "Dedication.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "For every keeper who lit the lamp at dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "dedication"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Dedication.",
+ "startsNewBlock": true
},
{
"plain": "For every keeper who lit the lamp at dusk."
@@ -41,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "dedication"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Dedication."
+ "plain": "Dedication.",
+ "startsNewBlock": true
},
{
"plain": "For every keeper who lit the lamp at dusk."
@@ -55,11 +104,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "dedication"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Dedication.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "For every keeper who lit the lamp at dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "dedication"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Dedication."
+ "plain": "Dedication.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "For every keeper who lit the lamp at dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "dedication"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Dedication.",
+ "startsNewBlock": true
},
{
"plain": "For every keeper who lit the lamp at dusk."
@@ -72,7 +163,22 @@
},
"utterances": [
{
- "ssml": "Dedication."
+ "ssml": "For every keeper who lit the lamp at dusk.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "dedication"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Dedication.",
+ "startsNewBlock": true
},
{
"ssml": "For every keeper who lit the lamp at dusk."
@@ -82,9 +188,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "dedication"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Dedication.",
+ "startsNewBlock": true
+ },
{
"ssml": "For every keeper who lit the lamp at dusk."
}
@@ -93,11 +206,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "dedication"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Dedication."
+ "ssml": "Dedication.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "For every keeper who lit the lamp at dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "dedication"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Dedication.",
+ "startsNewBlock": true
},
{
"ssml": "For every keeper who lit the lamp at dusk."
@@ -107,11 +243,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "dedication"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Dedication."
+ "ssml": "Dedication.",
+ "startsNewBlock": true
},
{
"ssml": "For every keeper who lit the lamp at dusk."
@@ -121,11 +261,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "dedication"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Dedication.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "For every keeper who lit the lamp at dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "dedication"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Dedication."
+ "ssml": "Dedication.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "For every keeper who lit the lamp at dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "dedication"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Dedication.",
+ "startsNewBlock": true
},
{
"ssml": "For every keeper who lit the lamp at dusk."
diff --git a/fixtures/dedication-role-aria/utterances.json b/fixtures/dedication-role-aria/utterances.json
index 835d6e1..ec8ad71 100644
--- a/fixtures/dedication-role-aria/utterances.json
+++ b/fixtures/dedication-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Dedication."
+ "plain": "For every keeper who lit the lamp at dusk.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "dedication"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Dedication.",
+ "startsNewBlock": true
},
{
"plain": "For every keeper who lit the lamp at dusk."
@@ -16,9 +31,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "dedication"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Dedication.",
+ "startsNewBlock": true
+ },
{
"plain": "For every keeper who lit the lamp at dusk."
}
@@ -27,11 +49,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "dedication"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Dedication."
+ "plain": "Dedication.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "For every keeper who lit the lamp at dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "dedication"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Dedication.",
+ "startsNewBlock": true
},
{
"plain": "For every keeper who lit the lamp at dusk."
@@ -41,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "dedication"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Dedication."
+ "plain": "Dedication.",
+ "startsNewBlock": true
},
{
"plain": "For every keeper who lit the lamp at dusk."
@@ -55,11 +104,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "dedication"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Dedication.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "For every keeper who lit the lamp at dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "dedication"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Dedication."
+ "plain": "Dedication.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "For every keeper who lit the lamp at dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "dedication"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Dedication.",
+ "startsNewBlock": true
},
{
"plain": "For every keeper who lit the lamp at dusk."
@@ -72,7 +163,22 @@
},
"utterances": [
{
- "ssml": "Dedication."
+ "ssml": "For every keeper who lit the lamp at dusk.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "dedication"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Dedication.",
+ "startsNewBlock": true
},
{
"ssml": "For every keeper who lit the lamp at dusk."
@@ -82,9 +188,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "dedication"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Dedication.",
+ "startsNewBlock": true
+ },
{
"ssml": "For every keeper who lit the lamp at dusk."
}
@@ -93,11 +206,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "dedication"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Dedication."
+ "ssml": "Dedication.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "For every keeper who lit the lamp at dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "dedication"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Dedication.",
+ "startsNewBlock": true
},
{
"ssml": "For every keeper who lit the lamp at dusk."
@@ -107,11 +243,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "dedication"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Dedication."
+ "ssml": "Dedication.",
+ "startsNewBlock": true
},
{
"ssml": "For every keeper who lit the lamp at dusk."
@@ -121,11 +261,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "dedication"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Dedication.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "For every keeper who lit the lamp at dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "dedication"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Dedication."
+ "ssml": "Dedication.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "For every keeper who lit the lamp at dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "dedication"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Dedication.",
+ "startsNewBlock": true
},
{
"ssml": "For every keeper who lit the lamp at dusk."
diff --git a/fixtures/definition-epub-type/utterances.json b/fixtures/definition-epub-type/utterances.json
index 6819024..2d5c35d 100644
--- a/fixtures/definition-epub-type/utterances.json
+++ b/fixtures/definition-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the glossary."
+ "plain": "A structure that contains an enumeration of related content items.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"plain": "A structure that contains an enumeration of related content items."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "glossary"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
{
"plain": "A structure that contains an enumeration of related content items."
+ },
+ {
+ "plain": "End of the glossary."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the glossary."
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A structure that contains an enumeration of related content items."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"plain": "A structure that contains an enumeration of related content items."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the glossary."
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"plain": "A structure that contains an enumeration of related content items."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A structure that contains an enumeration of related content items."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the glossary."
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A structure that contains an enumeration of related content items."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"plain": "A structure that contains an enumeration of related content items."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the glossary."
+ "ssml": "A structure that contains an enumeration of related content items.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"ssml": "A structure that contains an enumeration of related content items."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "glossary"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
{
"ssml": "A structure that contains an enumeration of related content items."
+ },
+ {
+ "ssml": "End of the glossary."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the glossary."
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A structure that contains an enumeration of related content items."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"ssml": "A structure that contains an enumeration of related content items."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the glossary."
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"ssml": "A structure that contains an enumeration of related content items."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A structure that contains an enumeration of related content items."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the glossary."
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A structure that contains an enumeration of related content items."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"ssml": "A structure that contains an enumeration of related content items."
diff --git a/fixtures/definition-html-native/utterances.json b/fixtures/definition-html-native/utterances.json
index 31ce722..736c5cf 100644
--- a/fixtures/definition-html-native/utterances.json
+++ b/fixtures/definition-html-native/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "A structure that contains an enumeration of related content items."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "A structure that contains an enumeration of related content items."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "A structure that contains an enumeration of related content items."
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "A structure that contains an enumeration of related content items."
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "A structure that contains an enumeration of related content items."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "A structure that contains an enumeration of related content items."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "A structure that contains an enumeration of related content items."
- }
- ]
}
]
}
diff --git a/fixtures/definition-role-aria/utterances.json b/fixtures/definition-role-aria/utterances.json
index 31ce722..736c5cf 100644
--- a/fixtures/definition-role-aria/utterances.json
+++ b/fixtures/definition-role-aria/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "A structure that contains an enumeration of related content items."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "A structure that contains an enumeration of related content items."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "A structure that contains an enumeration of related content items."
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "A structure that contains an enumeration of related content items."
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "A structure that contains an enumeration of related content items."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "A structure that contains an enumeration of related content items."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "A structure that contains an enumeration of related content items."
- }
- ]
}
]
}
diff --git a/fixtures/details-html-native/utterances.json b/fixtures/details-html-native/utterances.json
index ee82ee4..7ba259a 100644
--- a/fixtures/details-html-native/utterances.json
+++ b/fixtures/details-html-native/utterances.json
@@ -4,6 +4,19 @@
"options": {
"format": "plain"
},
+ "utterances": [
+ {
+ "plain": "Additional details the reader can expand."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "details"
+ ]
+ },
"utterances": [
{
"plain": "Start of the details."
@@ -19,27 +32,51 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"details"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the details."
+ },
+ {
+ "plain": "Additional details the reader can expand."
+ },
+ {
+ "plain": "End of the details."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "details"
+ ],
+ "language": "always"
},
"utterances": [
+ {
+ "plain": "Start of the details."
+ },
{
"plain": "Additional details the reader can expand."
+ },
+ {
+ "plain": "End of the details."
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "details"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
@@ -56,6 +93,9 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "details"
+ ],
"language": "block-level"
},
"utterances": [
@@ -73,6 +113,30 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "details"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the details."
+ },
+ {
+ "plain": "Additional details the reader can expand."
+ },
+ {
+ "plain": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "details"
+ ],
"language": "none"
},
"utterances": [
@@ -87,10 +151,232 @@
}
]
},
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "details"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the details."
+ },
+ {
+ "plain": "Additional details the reader can expand."
+ },
+ {
+ "plain": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
{
"options": {
"format": "ssml"
},
+ "utterances": [
+ {
+ "ssml": "Additional details the reader can expand."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details"
+ ]
+ },
"utterances": [
{
"ssml": "Start of the details."
@@ -106,27 +392,51 @@
{
"options": {
"format": "ssml",
- "skip": [
+ "contextualize": [
"details"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
},
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "details"
+ ],
+ "language": "always"
},
"utterances": [
+ {
+ "ssml": "Start of the details."
+ },
{
"ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
}
]
},
{
"options": {
"format": "ssml",
- "language": "always"
+ "contextualize": [
+ "details"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
@@ -143,6 +453,9 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "details"
+ ],
"language": "block-level"
},
"utterances": [
@@ -160,6 +473,30 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "details"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details"
+ ],
"language": "none"
},
"utterances": [
@@ -173,6 +510,215 @@
"ssml": "End of the details."
}
]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/details-summary-html-native/utterances.json b/fixtures/details-summary-html-native/utterances.json
index 1aa6aef..84ec504 100644
--- a/fixtures/details-summary-html-native/utterances.json
+++ b/fixtures/details-summary-html-native/utterances.json
@@ -4,12 +4,30 @@
"options": {
"format": "plain"
},
+ "utterances": [
+ {
+ "plain": "Click to expand",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Additional details the reader can expand."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "details"
+ ]
+ },
"utterances": [
{
"plain": "Start of the details."
},
{
- "plain": "Click to expand"
+ "plain": "Click to expand",
+ "startsNewBlock": true
},
{
"plain": "Additional details the reader can expand."
@@ -22,37 +40,67 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"details"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the details."
+ },
+ {
+ "plain": "Click to expand",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Additional details the reader can expand."
+ },
+ {
+ "plain": "End of the details."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "details"
+ ],
+ "language": "always"
},
"utterances": [
{
- "plain": "Click to expand"
+ "plain": "Start of the details."
+ },
+ {
+ "plain": "Click to expand",
+ "startsNewBlock": true
},
{
"plain": "Additional details the reader can expand."
+ },
+ {
+ "plain": "End of the details."
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "details"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "Start of the details."
},
{
- "plain": "Click to expand"
+ "plain": "Click to expand",
+ "startsNewBlock": true
},
{
"plain": "Additional details the reader can expand."
@@ -65,6 +113,9 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "details"
+ ],
"language": "block-level"
},
"utterances": [
@@ -72,7 +123,8 @@
"plain": "Start of the details."
},
{
- "plain": "Click to expand"
+ "plain": "Click to expand",
+ "startsNewBlock": true
},
{
"plain": "Additional details the reader can expand."
@@ -85,14 +137,19 @@
{
"options": {
"format": "plain",
- "language": "none"
+ "contextualize": [
+ "details"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "Start of the details."
},
{
- "plain": "Click to expand"
+ "plain": "Click to expand",
+ "startsNewBlock": true
},
{
"plain": "Additional details the reader can expand."
@@ -104,105 +161,1868 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "details"
+ ],
+ "language": "none"
},
"utterances": [
{
- "ssml": "Start of the details."
+ "plain": "Start of the details."
},
{
- "ssml": "Click to expand"
+ "plain": "Click to expand",
+ "startsNewBlock": true
},
{
- "ssml": "Additional details the reader can expand."
+ "plain": "Additional details the reader can expand."
},
{
- "ssml": "End of the details."
+ "plain": "End of the details."
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
+ "format": "plain",
+ "contextualize": [
"details"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the details."
+ },
+ {
+ "plain": "Click to expand",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Additional details the reader can expand."
+ },
+ {
+ "plain": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "summary"
]
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Click to expand"
+ },
+ {
+ "plain": "Additional details the reader can expand."
+ }
+ ]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "summary"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Click to expand"
+ "plain": "Summary.",
+ "startsNewBlock": true
},
{
- "ssml": "Additional details the reader can expand."
+ "plain": "Click to expand"
+ },
+ {
+ "plain": "Additional details the reader can expand."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "summary"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the details."
+ "plain": "Summary.",
+ "startsNewBlock": true
},
{
- "ssml": "Click to expand"
+ "plain": "Click to expand"
},
{
- "ssml": "Additional details the reader can expand."
+ "plain": "Additional details the reader can expand."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "summary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the details."
+ "plain": "Click to expand"
+ },
+ {
+ "plain": "Additional details the reader can expand."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "summary"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the details."
+ "plain": "Summary.",
+ "startsNewBlock": true
},
{
- "ssml": "Click to expand"
+ "plain": "Click to expand"
},
{
- "ssml": "Additional details the reader can expand."
+ "plain": "Additional details the reader can expand."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "summary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the details."
+ "plain": "Click to expand"
+ },
+ {
+ "plain": "Additional details the reader can expand."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "summary"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the details."
+ "plain": "Summary.",
+ "startsNewBlock": true
},
{
- "ssml": "Click to expand"
+ "plain": "Click to expand"
},
{
- "ssml": "Additional details the reader can expand."
+ "plain": "Additional details the reader can expand."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "summary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the details."
+ "plain": "Click to expand"
+ },
+ {
+ "plain": "Additional details the reader can expand."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "details",
+ "summary"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the details."
+ },
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Click to expand"
+ },
+ {
+ "plain": "Additional details the reader can expand."
+ },
+ {
+ "plain": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the details."
+ },
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Click to expand"
+ },
+ {
+ "plain": "Additional details the reader can expand."
+ },
+ {
+ "plain": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the details."
+ },
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Click to expand"
+ },
+ {
+ "plain": "Additional details the reader can expand."
+ },
+ {
+ "plain": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the details."
+ },
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Click to expand"
+ },
+ {
+ "plain": "Additional details the reader can expand."
+ },
+ {
+ "plain": "End of the details."
}
]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the details."
+ },
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Click to expand"
+ },
+ {
+ "plain": "Additional details the reader can expand."
+ },
+ {
+ "plain": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the details."
+ },
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Click to expand"
+ },
+ {
+ "plain": "Additional details the reader can expand."
+ },
+ {
+ "plain": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the details."
+ },
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Click to expand"
+ },
+ {
+ "plain": "Additional details the reader can expand."
+ },
+ {
+ "plain": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the details."
+ },
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Click to expand"
+ },
+ {
+ "plain": "Additional details the reader can expand."
+ },
+ {
+ "plain": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "summary"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "summary"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "summary"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "summary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "summary"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "summary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "summary"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "summary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details",
+ "summary"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Click to expand",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Click to expand",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Click to expand",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Click to expand",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Click to expand",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Click to expand",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Click to expand",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Click to expand",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Click to expand",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "summary"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "summary"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "summary"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "summary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "summary"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "summary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "summary"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "summary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details",
+ "summary"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the details."
+ },
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ },
+ {
+ "ssml": "Additional details the reader can expand."
+ },
+ {
+ "ssml": "End of the details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "summary"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "summary"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "summary"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "summary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "summary"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "summary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "summary"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "summary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details",
+ "summary"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "details"
+ ],
+ "contextualize": [
+ "details",
+ "summary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/endnotes-epub-type/utterances.json b/fixtures/endnotes-epub-type/utterances.json
index c47e7eb..1a14c12 100644
--- a/fixtures/endnotes-epub-type/utterances.json
+++ b/fixtures/endnotes-epub-type/utterances.json
@@ -6,13 +6,33 @@
},
"utterances": [
{
- "plain": "Start of the endnotes."
+ "plain": "See introduction for background.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
},
{
"plain": "See introduction for background."
},
{
- "plain": "See chapter three for details."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
},
{
"plain": "End of the endnotes."
@@ -22,13 +42,22 @@
{
"options": {
"format": "plain",
- "skip": [
- "aside"
- ]
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the endnotes."
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
},
{
"plain": "End of the endnotes."
@@ -38,22 +67,48 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"endnotes"
- ]
+ ],
+ "language": "always"
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "skip": [
- "footnote"
- ]
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the endnotes."
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
},
{
"plain": "End of the endnotes."
@@ -63,31 +118,48 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
},
"utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
{
"plain": "See introduction for background."
},
{
- "plain": "See chapter three for details."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the endnotes."
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
},
{
"plain": "See introduction for background."
},
{
- "plain": "See chapter three for details."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
},
{
"plain": "End of the endnotes."
@@ -97,17 +169,22 @@
{
"options": {
"format": "plain",
- "language": "block-level"
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
},
"utterances": [
{
- "plain": "Start of the endnotes."
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
},
{
"plain": "See introduction for background."
},
{
- "plain": "See chapter three for details."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
},
{
"plain": "End of the endnotes."
@@ -117,17 +194,23 @@
{
"options": {
"format": "plain",
- "language": "none"
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the endnotes."
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
},
{
"plain": "See introduction for background."
},
{
- "plain": "See chapter three for details."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
},
{
"plain": "End of the endnotes."
@@ -136,137 +219,86296 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ]
},
"utterances": [
{
- "ssml": "Start of the endnotes."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "See introduction for background."
+ "plain": "See introduction for background."
},
{
- "ssml": "See chapter three for details."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the endnotes."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
- "aside"
- ]
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the endnotes."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the endnotes."
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
- "endnotes"
- ]
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
},
{
"options": {
- "format": "ssml",
- "skip": [
- "footnote"
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list"
]
},
"utterances": [
{
- "ssml": "Start of the endnotes."
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the endnotes."
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
}
]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "See introduction for background."
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
},
{
- "ssml": "See chapter three for details."
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the endnotes."
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
},
{
- "ssml": "See introduction for background."
+ "plain": "Start of the list."
},
{
- "ssml": "See chapter three for details."
+ "plain": "See introduction for background."
},
{
- "ssml": "End of the endnotes."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
}
]
},
{
"options": {
- "format": "ssml",
- "language": "block-level"
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the endnotes."
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
},
{
- "ssml": "See introduction for background."
+ "plain": "Start of the list."
},
{
- "ssml": "See chapter three for details."
+ "plain": "See introduction for background."
},
{
- "ssml": "End of the endnotes."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
}
]
},
{
"options": {
- "format": "ssml",
- "language": "none"
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the endnotes."
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
},
{
- "ssml": "See introduction for background."
+ "plain": "Start of the list."
},
{
- "ssml": "See chapter three for details."
+ "plain": "See introduction for background."
},
{
- "ssml": "End of the endnotes."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
}
]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "See introduction for background.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/endnotes-role-aria/utterances.json b/fixtures/endnotes-role-aria/utterances.json
index 2fa53d8..f74f0f7 100644
--- a/fixtures/endnotes-role-aria/utterances.json
+++ b/fixtures/endnotes-role-aria/utterances.json
@@ -6,13 +6,33 @@
},
"utterances": [
{
- "plain": "Start of the endnotes."
+ "plain": "See introduction for background.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
},
{
"plain": "See introduction for background."
},
{
- "plain": "See chapter three for details."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
},
{
"plain": "End of the endnotes."
@@ -22,22 +42,47 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"endnotes"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "skip": [
- "footnote"
- ]
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
},
"utterances": [
{
- "plain": "Start of the endnotes."
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
},
{
"plain": "End of the endnotes."
@@ -47,31 +92,48 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
{
"plain": "See introduction for background."
},
{
- "plain": "See chapter three for details."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
},
"utterances": [
{
- "plain": "Start of the endnotes."
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
},
{
"plain": "See introduction for background."
},
{
- "plain": "See chapter three for details."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
},
{
"plain": "End of the endnotes."
@@ -81,17 +143,23 @@
{
"options": {
"format": "plain",
- "language": "block-level"
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the endnotes."
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
},
{
"plain": "See introduction for background."
},
{
- "plain": "See chapter three for details."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
},
{
"plain": "End of the endnotes."
@@ -101,17 +169,22 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "endnotes"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the endnotes."
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
},
{
"plain": "See introduction for background."
},
{
- "plain": "See chapter three for details."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
},
{
"plain": "End of the endnotes."
@@ -120,121 +193,19754 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the endnotes."
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
},
{
- "ssml": "See introduction for background."
+ "plain": "See introduction for background."
},
{
- "ssml": "See chapter three for details."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the endnotes."
+ "plain": "End of the endnotes."
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
- "endnotes"
+ "format": "plain",
+ "contextualize": [
+ "list"
]
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
},
{
"options": {
- "format": "ssml",
- "skip": [
- "footnote"
- ]
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the endnotes."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the endnotes."
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
},
"utterances": [
{
- "ssml": "See introduction for background."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "See chapter three for details."
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
- "language": "always"
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the endnotes."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "See introduction for background."
+ "plain": "See introduction for background."
},
{
- "ssml": "See chapter three for details."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the endnotes."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the endnotes."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "See introduction for background."
+ "plain": "See introduction for background."
},
{
- "ssml": "See chapter three for details."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the endnotes."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the endnotes."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "See introduction for background."
+ "plain": "See introduction for background."
},
{
- "ssml": "See chapter three for details."
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the endnotes."
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
}
]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "See introduction for background."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "See chapter three for details."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "See introduction for background.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "See chapter three for details.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "See introduction for background."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "See chapter three for details."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the endnotes.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the endnotes."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "endnotes",
+ "footnote"
+ ],
+ "contextualize": [
+ "endnotes",
+ "list",
+ "listItem",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/epigraph-epub-type/utterances.json b/fixtures/epigraph-epub-type/utterances.json
index 5e2dd2c..c8d318c 100644
--- a/fixtures/epigraph-epub-type/utterances.json
+++ b/fixtures/epigraph-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Epigraph."
+ "plain": "A lighthouse is a compromise with the sea. — Anonymous",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "epigraph"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Epigraph.",
+ "startsNewBlock": true
},
{
"plain": "A lighthouse is a compromise with the sea. — Anonymous"
@@ -16,9 +31,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "epigraph"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Epigraph.",
+ "startsNewBlock": true
+ },
{
"plain": "A lighthouse is a compromise with the sea. — Anonymous"
}
@@ -27,11 +49,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "epigraph"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Epigraph."
+ "plain": "Epigraph.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A lighthouse is a compromise with the sea. — Anonymous"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "epigraph"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Epigraph.",
+ "startsNewBlock": true
},
{
"plain": "A lighthouse is a compromise with the sea. — Anonymous"
@@ -41,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "epigraph"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Epigraph."
+ "plain": "Epigraph.",
+ "startsNewBlock": true
},
{
"plain": "A lighthouse is a compromise with the sea. — Anonymous"
@@ -55,11 +104,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "epigraph"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Epigraph.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A lighthouse is a compromise with the sea. — Anonymous"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "epigraph"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Epigraph."
+ "plain": "Epigraph.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A lighthouse is a compromise with the sea. — Anonymous"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "epigraph"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Epigraph.",
+ "startsNewBlock": true
},
{
"plain": "A lighthouse is a compromise with the sea. — Anonymous"
@@ -72,7 +163,22 @@
},
"utterances": [
{
- "ssml": "Epigraph."
+ "ssml": "A lighthouse is a compromise with the sea. — Anonymous",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "epigraph"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Epigraph.",
+ "startsNewBlock": true
},
{
"ssml": "A lighthouse is a compromise with the sea. — Anonymous"
@@ -82,9 +188,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "epigraph"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Epigraph.",
+ "startsNewBlock": true
+ },
{
"ssml": "A lighthouse is a compromise with the sea. — Anonymous"
}
@@ -93,11 +206,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "epigraph"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Epigraph."
+ "ssml": "Epigraph.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A lighthouse is a compromise with the sea. — Anonymous"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "epigraph"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Epigraph.",
+ "startsNewBlock": true
},
{
"ssml": "A lighthouse is a compromise with the sea. — Anonymous"
@@ -107,11 +243,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "epigraph"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Epigraph."
+ "ssml": "Epigraph.",
+ "startsNewBlock": true
},
{
"ssml": "A lighthouse is a compromise with the sea. — Anonymous"
@@ -121,11 +261,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "epigraph"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Epigraph.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A lighthouse is a compromise with the sea. — Anonymous"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "epigraph"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Epigraph."
+ "ssml": "Epigraph.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A lighthouse is a compromise with the sea. — Anonymous"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "epigraph"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Epigraph.",
+ "startsNewBlock": true
},
{
"ssml": "A lighthouse is a compromise with the sea. — Anonymous"
diff --git a/fixtures/epigraph-role-aria/utterances.json b/fixtures/epigraph-role-aria/utterances.json
index 5e2dd2c..c8d318c 100644
--- a/fixtures/epigraph-role-aria/utterances.json
+++ b/fixtures/epigraph-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Epigraph."
+ "plain": "A lighthouse is a compromise with the sea. — Anonymous",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "epigraph"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Epigraph.",
+ "startsNewBlock": true
},
{
"plain": "A lighthouse is a compromise with the sea. — Anonymous"
@@ -16,9 +31,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "epigraph"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Epigraph.",
+ "startsNewBlock": true
+ },
{
"plain": "A lighthouse is a compromise with the sea. — Anonymous"
}
@@ -27,11 +49,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "epigraph"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Epigraph."
+ "plain": "Epigraph.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A lighthouse is a compromise with the sea. — Anonymous"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "epigraph"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Epigraph.",
+ "startsNewBlock": true
},
{
"plain": "A lighthouse is a compromise with the sea. — Anonymous"
@@ -41,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "epigraph"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Epigraph."
+ "plain": "Epigraph.",
+ "startsNewBlock": true
},
{
"plain": "A lighthouse is a compromise with the sea. — Anonymous"
@@ -55,11 +104,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "epigraph"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Epigraph.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A lighthouse is a compromise with the sea. — Anonymous"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "epigraph"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Epigraph."
+ "plain": "Epigraph.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A lighthouse is a compromise with the sea. — Anonymous"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "epigraph"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Epigraph.",
+ "startsNewBlock": true
},
{
"plain": "A lighthouse is a compromise with the sea. — Anonymous"
@@ -72,7 +163,22 @@
},
"utterances": [
{
- "ssml": "Epigraph."
+ "ssml": "A lighthouse is a compromise with the sea. — Anonymous",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "epigraph"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Epigraph.",
+ "startsNewBlock": true
},
{
"ssml": "A lighthouse is a compromise with the sea. — Anonymous"
@@ -82,9 +188,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "epigraph"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Epigraph.",
+ "startsNewBlock": true
+ },
{
"ssml": "A lighthouse is a compromise with the sea. — Anonymous"
}
@@ -93,11 +206,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "epigraph"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Epigraph."
+ "ssml": "Epigraph.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A lighthouse is a compromise with the sea. — Anonymous"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "epigraph"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Epigraph.",
+ "startsNewBlock": true
},
{
"ssml": "A lighthouse is a compromise with the sea. — Anonymous"
@@ -107,11 +243,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "epigraph"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Epigraph."
+ "ssml": "Epigraph.",
+ "startsNewBlock": true
},
{
"ssml": "A lighthouse is a compromise with the sea. — Anonymous"
@@ -121,11 +261,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "epigraph"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Epigraph.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A lighthouse is a compromise with the sea. — Anonymous"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "epigraph"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Epigraph."
+ "ssml": "Epigraph.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A lighthouse is a compromise with the sea. — Anonymous"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "epigraph"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Epigraph.",
+ "startsNewBlock": true
},
{
"ssml": "A lighthouse is a compromise with the sea. — Anonymous"
diff --git a/fixtures/epilogue-epub-type/utterances.json b/fixtures/epilogue-epub-type/utterances.json
index ccaf953..5c24131 100644
--- a/fixtures/epilogue-epub-type/utterances.json
+++ b/fixtures/epilogue-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the epilogue."
+ "plain": "The lamp still turns, though no one climbs the stairs anymore.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "epilogue"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the epilogue.",
+ "startsNewBlock": true
},
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "epilogue"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the epilogue.",
+ "startsNewBlock": true
+ },
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the epilogue."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "epilogue"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the epilogue."
+ "plain": "Start of the epilogue.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the epilogue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "epilogue"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the epilogue.",
+ "startsNewBlock": true
},
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "epilogue"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the epilogue."
+ "plain": "Start of the epilogue.",
+ "startsNewBlock": true
},
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "epilogue"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the epilogue.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the epilogue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "epilogue"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the epilogue."
+ "plain": "Start of the epilogue.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the epilogue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "epilogue"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the epilogue.",
+ "startsNewBlock": true
},
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the epilogue."
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "epilogue"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the epilogue.",
+ "startsNewBlock": true
},
{
"ssml": "The lamp still turns, though no one climbs the stairs anymore."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "epilogue"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the epilogue.",
+ "startsNewBlock": true
+ },
{
"ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the epilogue."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "epilogue"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the epilogue."
+ "ssml": "Start of the epilogue.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the epilogue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "epilogue"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the epilogue.",
+ "startsNewBlock": true
},
{
"ssml": "The lamp still turns, though no one climbs the stairs anymore."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "epilogue"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the epilogue."
+ "ssml": "Start of the epilogue.",
+ "startsNewBlock": true
},
{
"ssml": "The lamp still turns, though no one climbs the stairs anymore."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "epilogue"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the epilogue.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the epilogue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "epilogue"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the epilogue."
+ "ssml": "Start of the epilogue.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the epilogue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "epilogue"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the epilogue.",
+ "startsNewBlock": true
},
{
"ssml": "The lamp still turns, though no one climbs the stairs anymore."
diff --git a/fixtures/epilogue-role-aria/utterances.json b/fixtures/epilogue-role-aria/utterances.json
index ccaf953..5c24131 100644
--- a/fixtures/epilogue-role-aria/utterances.json
+++ b/fixtures/epilogue-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the epilogue."
+ "plain": "The lamp still turns, though no one climbs the stairs anymore.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "epilogue"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the epilogue.",
+ "startsNewBlock": true
},
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "epilogue"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the epilogue.",
+ "startsNewBlock": true
+ },
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the epilogue."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "epilogue"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the epilogue."
+ "plain": "Start of the epilogue.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the epilogue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "epilogue"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the epilogue.",
+ "startsNewBlock": true
},
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "epilogue"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the epilogue."
+ "plain": "Start of the epilogue.",
+ "startsNewBlock": true
},
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "epilogue"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the epilogue.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the epilogue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "epilogue"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the epilogue."
+ "plain": "Start of the epilogue.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the epilogue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "epilogue"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the epilogue.",
+ "startsNewBlock": true
},
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the epilogue."
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "epilogue"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the epilogue.",
+ "startsNewBlock": true
},
{
"ssml": "The lamp still turns, though no one climbs the stairs anymore."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "epilogue"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the epilogue.",
+ "startsNewBlock": true
+ },
{
"ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the epilogue."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "epilogue"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the epilogue."
+ "ssml": "Start of the epilogue.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the epilogue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "epilogue"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the epilogue.",
+ "startsNewBlock": true
},
{
"ssml": "The lamp still turns, though no one climbs the stairs anymore."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "epilogue"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the epilogue."
+ "ssml": "Start of the epilogue.",
+ "startsNewBlock": true
},
{
"ssml": "The lamp still turns, though no one climbs the stairs anymore."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "epilogue"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the epilogue.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the epilogue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "epilogue"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the epilogue."
+ "ssml": "Start of the epilogue.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the epilogue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "epilogue"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the epilogue.",
+ "startsNewBlock": true
},
{
"ssml": "The lamp still turns, though no one climbs the stairs anymore."
diff --git a/fixtures/errata-epub-type/utterances.json b/fixtures/errata-epub-type/utterances.json
index ecc5c7a..a648b15 100644
--- a/fixtures/errata-epub-type/utterances.json
+++ b/fixtures/errata-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Errata."
+ "plain": "Page 42: 'lightouse' should read 'lighthouse'.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "errata"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Errata.",
+ "startsNewBlock": true
},
{
"plain": "Page 42: 'lightouse' should read 'lighthouse'."
@@ -16,9 +31,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "errata"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Errata.",
+ "startsNewBlock": true
+ },
{
"plain": "Page 42: 'lightouse' should read 'lighthouse'."
}
@@ -27,11 +49,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "errata"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Errata."
+ "plain": "Errata.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 42: 'lightouse' should read 'lighthouse'."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "errata"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Errata.",
+ "startsNewBlock": true
},
{
"plain": "Page 42: 'lightouse' should read 'lighthouse'."
@@ -41,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "errata"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Errata."
+ "plain": "Errata.",
+ "startsNewBlock": true
},
{
"plain": "Page 42: 'lightouse' should read 'lighthouse'."
@@ -55,11 +104,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "errata"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Errata.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 42: 'lightouse' should read 'lighthouse'."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "errata"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Errata."
+ "plain": "Errata.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 42: 'lightouse' should read 'lighthouse'."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "errata"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Errata.",
+ "startsNewBlock": true
},
{
"plain": "Page 42: 'lightouse' should read 'lighthouse'."
@@ -72,7 +163,22 @@
},
"utterances": [
{
- "ssml": "Errata."
+ "ssml": "Page 42: 'lightouse' should read 'lighthouse'.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "errata"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Errata.",
+ "startsNewBlock": true
},
{
"ssml": "Page 42: 'lightouse' should read 'lighthouse'."
@@ -82,9 +188,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "errata"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Errata.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 42: 'lightouse' should read 'lighthouse'."
}
@@ -93,11 +206,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "errata"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Errata."
+ "ssml": "Errata.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 42: 'lightouse' should read 'lighthouse'."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "errata"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Errata.",
+ "startsNewBlock": true
},
{
"ssml": "Page 42: 'lightouse' should read 'lighthouse'."
@@ -107,11 +243,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "errata"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Errata."
+ "ssml": "Errata.",
+ "startsNewBlock": true
},
{
"ssml": "Page 42: 'lightouse' should read 'lighthouse'."
@@ -121,11 +261,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "errata"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Errata.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 42: 'lightouse' should read 'lighthouse'."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "errata"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Errata."
+ "ssml": "Errata.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 42: 'lightouse' should read 'lighthouse'."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "errata"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Errata.",
+ "startsNewBlock": true
},
{
"ssml": "Page 42: 'lightouse' should read 'lighthouse'."
diff --git a/fixtures/errata-role-aria/utterances.json b/fixtures/errata-role-aria/utterances.json
index ecc5c7a..a648b15 100644
--- a/fixtures/errata-role-aria/utterances.json
+++ b/fixtures/errata-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Errata."
+ "plain": "Page 42: 'lightouse' should read 'lighthouse'.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "errata"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Errata.",
+ "startsNewBlock": true
},
{
"plain": "Page 42: 'lightouse' should read 'lighthouse'."
@@ -16,9 +31,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "errata"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Errata.",
+ "startsNewBlock": true
+ },
{
"plain": "Page 42: 'lightouse' should read 'lighthouse'."
}
@@ -27,11 +49,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "errata"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Errata."
+ "plain": "Errata.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 42: 'lightouse' should read 'lighthouse'."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "errata"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Errata.",
+ "startsNewBlock": true
},
{
"plain": "Page 42: 'lightouse' should read 'lighthouse'."
@@ -41,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "errata"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Errata."
+ "plain": "Errata.",
+ "startsNewBlock": true
},
{
"plain": "Page 42: 'lightouse' should read 'lighthouse'."
@@ -55,11 +104,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "errata"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Errata.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 42: 'lightouse' should read 'lighthouse'."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "errata"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Errata."
+ "plain": "Errata.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 42: 'lightouse' should read 'lighthouse'."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "errata"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Errata.",
+ "startsNewBlock": true
},
{
"plain": "Page 42: 'lightouse' should read 'lighthouse'."
@@ -72,7 +163,22 @@
},
"utterances": [
{
- "ssml": "Errata."
+ "ssml": "Page 42: 'lightouse' should read 'lighthouse'.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "errata"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Errata.",
+ "startsNewBlock": true
},
{
"ssml": "Page 42: 'lightouse' should read 'lighthouse'."
@@ -82,9 +188,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "errata"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Errata.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 42: 'lightouse' should read 'lighthouse'."
}
@@ -93,11 +206,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "errata"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Errata."
+ "ssml": "Errata.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 42: 'lightouse' should read 'lighthouse'."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "errata"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Errata.",
+ "startsNewBlock": true
},
{
"ssml": "Page 42: 'lightouse' should read 'lighthouse'."
@@ -107,11 +243,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "errata"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Errata."
+ "ssml": "Errata.",
+ "startsNewBlock": true
},
{
"ssml": "Page 42: 'lightouse' should read 'lighthouse'."
@@ -121,11 +261,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "errata"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Errata.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 42: 'lightouse' should read 'lighthouse'."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "errata"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Errata."
+ "ssml": "Errata.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 42: 'lightouse' should read 'lighthouse'."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "errata"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Errata.",
+ "startsNewBlock": true
},
{
"ssml": "Page 42: 'lightouse' should read 'lighthouse'."
diff --git a/fixtures/example-epub-type/utterances.json b/fixtures/example-epub-type/utterances.json
index 3715aa6..8b7f240 100644
--- a/fixtures/example-epub-type/utterances.json
+++ b/fixtures/example-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Example."
+ "plain": "For instance, a Fresnel lens focuses light into a narrow beam.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "example"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Example.",
+ "startsNewBlock": true
},
{
"plain": "For instance, a Fresnel lens focuses light into a narrow beam."
@@ -16,9 +31,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "example"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Example.",
+ "startsNewBlock": true
+ },
{
"plain": "For instance, a Fresnel lens focuses light into a narrow beam."
}
@@ -27,11 +49,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "example"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Example."
+ "plain": "Example.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "For instance, a Fresnel lens focuses light into a narrow beam."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "example"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Example.",
+ "startsNewBlock": true
},
{
"plain": "For instance, a Fresnel lens focuses light into a narrow beam."
@@ -41,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "example"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Example."
+ "plain": "Example.",
+ "startsNewBlock": true
},
{
"plain": "For instance, a Fresnel lens focuses light into a narrow beam."
@@ -55,11 +104,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "example"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Example.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "For instance, a Fresnel lens focuses light into a narrow beam."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "example"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Example."
+ "plain": "Example.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "For instance, a Fresnel lens focuses light into a narrow beam."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "example"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Example.",
+ "startsNewBlock": true
},
{
"plain": "For instance, a Fresnel lens focuses light into a narrow beam."
@@ -72,7 +163,22 @@
},
"utterances": [
{
- "ssml": "Example."
+ "ssml": "For instance, a Fresnel lens focuses light into a narrow beam.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "example"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Example.",
+ "startsNewBlock": true
},
{
"ssml": "For instance, a Fresnel lens focuses light into a narrow beam."
@@ -82,9 +188,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "example"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Example.",
+ "startsNewBlock": true
+ },
{
"ssml": "For instance, a Fresnel lens focuses light into a narrow beam."
}
@@ -93,11 +206,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "example"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Example."
+ "ssml": "Example.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "For instance, a Fresnel lens focuses light into a narrow beam."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "example"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Example.",
+ "startsNewBlock": true
},
{
"ssml": "For instance, a Fresnel lens focuses light into a narrow beam."
@@ -107,11 +243,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "example"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Example."
+ "ssml": "Example.",
+ "startsNewBlock": true
},
{
"ssml": "For instance, a Fresnel lens focuses light into a narrow beam."
@@ -121,11 +261,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "example"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Example.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "For instance, a Fresnel lens focuses light into a narrow beam."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "example"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Example."
+ "ssml": "Example.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "For instance, a Fresnel lens focuses light into a narrow beam."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "example"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Example.",
+ "startsNewBlock": true
},
{
"ssml": "For instance, a Fresnel lens focuses light into a narrow beam."
diff --git a/fixtures/example-role-aria/utterances.json b/fixtures/example-role-aria/utterances.json
index 3715aa6..8b7f240 100644
--- a/fixtures/example-role-aria/utterances.json
+++ b/fixtures/example-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Example."
+ "plain": "For instance, a Fresnel lens focuses light into a narrow beam.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "example"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Example.",
+ "startsNewBlock": true
},
{
"plain": "For instance, a Fresnel lens focuses light into a narrow beam."
@@ -16,9 +31,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "example"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Example.",
+ "startsNewBlock": true
+ },
{
"plain": "For instance, a Fresnel lens focuses light into a narrow beam."
}
@@ -27,11 +49,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "example"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Example."
+ "plain": "Example.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "For instance, a Fresnel lens focuses light into a narrow beam."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "example"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Example.",
+ "startsNewBlock": true
},
{
"plain": "For instance, a Fresnel lens focuses light into a narrow beam."
@@ -41,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "example"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Example."
+ "plain": "Example.",
+ "startsNewBlock": true
},
{
"plain": "For instance, a Fresnel lens focuses light into a narrow beam."
@@ -55,11 +104,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "example"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Example.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "For instance, a Fresnel lens focuses light into a narrow beam."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "example"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Example."
+ "plain": "Example.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "For instance, a Fresnel lens focuses light into a narrow beam."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "example"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Example.",
+ "startsNewBlock": true
},
{
"plain": "For instance, a Fresnel lens focuses light into a narrow beam."
@@ -72,7 +163,22 @@
},
"utterances": [
{
- "ssml": "Example."
+ "ssml": "For instance, a Fresnel lens focuses light into a narrow beam.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "example"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Example.",
+ "startsNewBlock": true
},
{
"ssml": "For instance, a Fresnel lens focuses light into a narrow beam."
@@ -82,9 +188,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "example"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Example.",
+ "startsNewBlock": true
+ },
{
"ssml": "For instance, a Fresnel lens focuses light into a narrow beam."
}
@@ -93,11 +206,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "example"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Example."
+ "ssml": "Example.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "For instance, a Fresnel lens focuses light into a narrow beam."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "example"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Example.",
+ "startsNewBlock": true
},
{
"ssml": "For instance, a Fresnel lens focuses light into a narrow beam."
@@ -107,11 +243,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "example"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Example."
+ "ssml": "Example.",
+ "startsNewBlock": true
},
{
"ssml": "For instance, a Fresnel lens focuses light into a narrow beam."
@@ -121,11 +261,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "example"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Example.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "For instance, a Fresnel lens focuses light into a narrow beam."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "example"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Example."
+ "ssml": "Example.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "For instance, a Fresnel lens focuses light into a narrow beam."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "example"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Example.",
+ "startsNewBlock": true
},
{
"ssml": "For instance, a Fresnel lens focuses light into a narrow beam."
diff --git a/fixtures/figure-basic-html-native/utterances.json b/fixtures/figure-basic-html-native/utterances.json
index f7a050f..72c78c4 100644
--- a/fixtures/figure-basic-html-native/utterances.json
+++ b/fixtures/figure-basic-html-native/utterances.json
@@ -6,7 +6,517 @@
},
"utterances": [
{
- "plain": "Start of the figure."
+ "plain": "A bar chart showing sales growth",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
},
{
"plain": "Image."
@@ -21,82 +531,343 @@
},
{
"options": {
- "format": "plain",
- "contextualize": false
+ "format": "ssml"
},
"utterances": [
{
- "plain": "A bar chart showing sales growth"
+ "ssml": "A bar chart showing sales growth",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
- "plain": "Image."
+ "ssml": "A bar chart showing sales growth"
},
{
- "plain": "A bar chart showing sales growth"
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
- "plain": "End of the figure."
+ "ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
- "plain": "Image."
+ "ssml": "A bar chart showing sales growth"
},
{
- "plain": "A bar chart showing sales growth"
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
- "plain": "End of the figure."
+ "ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
- "plain": "Image."
+ "ssml": "A bar chart showing sales growth"
},
{
- "plain": "A bar chart showing sales growth"
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
- "plain": "End of the figure."
+ "ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ]
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "Image."
@@ -112,22 +883,67 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Image."
+ },
{
"ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Image."
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "Image."
@@ -143,11 +959,42 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Image."
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "Image."
@@ -163,11 +1010,42 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Image."
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "Image."
diff --git a/fixtures/figure-basic-role-aria/utterances.json b/fixtures/figure-basic-role-aria/utterances.json
index f7a050f..72c78c4 100644
--- a/fixtures/figure-basic-role-aria/utterances.json
+++ b/fixtures/figure-basic-role-aria/utterances.json
@@ -6,7 +6,517 @@
},
"utterances": [
{
- "plain": "Start of the figure."
+ "plain": "A bar chart showing sales growth",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "A bar chart showing sales growth"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
},
{
"plain": "Image."
@@ -21,82 +531,343 @@
},
{
"options": {
- "format": "plain",
- "contextualize": false
+ "format": "ssml"
},
"utterances": [
{
- "plain": "A bar chart showing sales growth"
+ "ssml": "A bar chart showing sales growth",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
- "plain": "Image."
+ "ssml": "A bar chart showing sales growth"
},
{
- "plain": "A bar chart showing sales growth"
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
- "plain": "End of the figure."
+ "ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
- "plain": "Image."
+ "ssml": "A bar chart showing sales growth"
},
{
- "plain": "A bar chart showing sales growth"
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
- "plain": "End of the figure."
+ "ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
- "plain": "Image."
+ "ssml": "A bar chart showing sales growth"
},
{
- "plain": "A bar chart showing sales growth"
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
- "plain": "End of the figure."
+ "ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ]
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "Image."
@@ -112,22 +883,67 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Image."
+ },
{
"ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Image."
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "Image."
@@ -143,11 +959,42 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Image."
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "Image."
@@ -163,11 +1010,42 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Image."
+ },
+ {
+ "ssml": "A bar chart showing sales growth"
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "Image."
diff --git a/fixtures/figure-caption-html-native/utterances.json b/fixtures/figure-caption-html-native/utterances.json
index e64ec06..e343001 100644
--- a/fixtures/figure-caption-html-native/utterances.json
+++ b/fixtures/figure-caption-html-native/utterances.json
@@ -6,7 +6,21 @@
},
"utterances": [
{
- "plain": "Start of the figure."
+ "plain": "ASCII Art of a cat face"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
},
{
"plain": "ASCII Art of a cat face"
@@ -19,22 +33,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "figure"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
{
"plain": "ASCII Art of a cat face"
+ },
+ {
+ "plain": "End of the figure."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "figure"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the figure."
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "ASCII Art of a cat face"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
},
{
"plain": "ASCII Art of a cat face"
@@ -47,11 +97,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "figure"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the figure."
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
},
{
"plain": "ASCII Art of a cat face"
@@ -64,11 +118,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "ASCII Art of a cat face"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the figure."
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "ASCII Art of a cat face"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
},
{
"plain": "ASCII Art of a cat face"
@@ -84,7 +186,21 @@
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "ASCII Art of a cat face"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "ASCII Art of a cat face"
@@ -97,22 +213,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "figure"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
{
"ssml": "ASCII Art of a cat face"
+ },
+ {
+ "ssml": "End of the figure."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "ASCII Art of a cat face"
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "ASCII Art of a cat face"
@@ -125,11 +277,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "ASCII Art of a cat face"
@@ -142,11 +298,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "ASCII Art of a cat face"
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "ASCII Art of a cat face"
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "ASCII Art of a cat face"
diff --git a/fixtures/figure-caption-role-aria/utterances.json b/fixtures/figure-caption-role-aria/utterances.json
index e64ec06..e343001 100644
--- a/fixtures/figure-caption-role-aria/utterances.json
+++ b/fixtures/figure-caption-role-aria/utterances.json
@@ -6,7 +6,21 @@
},
"utterances": [
{
- "plain": "Start of the figure."
+ "plain": "ASCII Art of a cat face"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
},
{
"plain": "ASCII Art of a cat face"
@@ -19,22 +33,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "figure"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
{
"plain": "ASCII Art of a cat face"
+ },
+ {
+ "plain": "End of the figure."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "figure"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the figure."
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "ASCII Art of a cat face"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
},
{
"plain": "ASCII Art of a cat face"
@@ -47,11 +97,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "figure"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the figure."
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
},
{
"plain": "ASCII Art of a cat face"
@@ -64,11 +118,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "ASCII Art of a cat face"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the figure."
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "ASCII Art of a cat face"
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
},
{
"plain": "ASCII Art of a cat face"
@@ -84,7 +186,21 @@
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "ASCII Art of a cat face"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "ASCII Art of a cat face"
@@ -97,22 +213,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "figure"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
{
"ssml": "ASCII Art of a cat face"
+ },
+ {
+ "ssml": "End of the figure."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "ASCII Art of a cat face"
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "ASCII Art of a cat face"
@@ -125,11 +277,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "ASCII Art of a cat face"
@@ -142,11 +298,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "ASCII Art of a cat face"
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "ASCII Art of a cat face"
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "ASCII Art of a cat face"
diff --git a/fixtures/figure-describedby/utterances.json b/fixtures/figure-describedby/utterances.json
index f05cae3..a4e4250 100644
--- a/fixtures/figure-describedby/utterances.json
+++ b/fixtures/figure-describedby/utterances.json
@@ -6,112 +6,994 @@
},
"utterances": [
{
- "plain": "Start of the figure."
+ "plain": "Sales chart",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
},
{
"plain": "Image."
},
{
- "plain": "Sales chart"
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Image."
+ },
+ {
+ "plain": "Sales chart"
+ },
+ {
+ "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "plain": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Sales chart",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Sales chart"
+ },
+ {
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Sales chart"
+ },
+ {
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Sales chart"
},
{
- "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
},
{
- "plain": "End of the figure."
+ "ssml": "End of the figure."
}
]
},
{
"options": {
- "format": "plain",
- "contextualize": false
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Sales chart"
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
- "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ "ssml": "Sales chart"
+ },
+ {
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "ssml": "End of the figure."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Sales chart"
+ },
+ {
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Sales chart"
+ },
+ {
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Sales chart"
+ },
+ {
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Sales chart"
+ },
+ {
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Sales chart"
+ },
+ {
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Sales chart"
+ },
+ {
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the figure."
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
- "plain": "Image."
+ "ssml": "Sales chart"
},
{
- "plain": "Sales chart"
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
- "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ "ssml": "Sales chart"
},
{
- "plain": "End of the figure."
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the figure."
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
- "plain": "Image."
+ "ssml": "Sales chart"
},
{
- "plain": "Sales chart"
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
- "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ "ssml": "Sales chart"
},
{
- "plain": "End of the figure."
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the figure."
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
- "plain": "Image."
+ "ssml": "Sales chart"
},
{
- "plain": "Sales chart"
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
- "plain": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ "ssml": "Sales chart"
},
{
- "plain": "End of the figure."
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ]
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "Image."
@@ -130,25 +1012,73 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Image."
+ },
{
"ssml": "Sales chart"
},
{
"ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "ssml": "End of the figure."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Image."
+ },
+ {
+ "ssml": "Sales chart"
+ },
+ {
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "Image."
@@ -167,11 +1097,45 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Image."
+ },
+ {
+ "ssml": "Sales chart"
+ },
+ {
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "Image."
@@ -190,11 +1154,45 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the figure."
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Image."
+ },
+ {
+ "ssml": "Sales chart"
+ },
+ {
+ "ssml": "Full audio description: sales grew 12% year over year, driven primarily by the Q4 holiday season."
+ },
+ {
+ "ssml": "End of the figure."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "figure",
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the figure.",
+ "startsNewBlock": true
},
{
"ssml": "Image."
diff --git a/fixtures/footnote-epub-type/utterances.json b/fixtures/footnote-epub-type/utterances.json
index 221421f..3980d46 100644
--- a/fixtures/footnote-epub-type/utterances.json
+++ b/fixtures/footnote-epub-type/utterances.json
@@ -7,7 +7,320 @@
"utterances": [
{
"language": "en",
- "plain": "This text has a footnote."
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Text of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Text of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Text of the footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Text of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Text of the footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the footnote. Text of the footnote. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the footnote. Text of the footnote. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the footnote. Text of the footnote. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the footnote. Text of the footnote. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
},
{
"plain": "Start of the footnote. Text of the footnote. End of the footnote."
@@ -16,128 +329,8891 @@
},
{
"options": {
- "format": "plain",
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the footnote. Text of the footnote. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the footnote. Text of the footnote. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the footnote. Text of the footnote. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Text of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Text of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Text of the footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Text of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Text of the footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the footnote. Text of the footnote. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the footnote. Text of the footnote. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the footnote. Text of the footnote. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the footnote. Text of the footnote. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the footnote. Text of the footnote. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the footnote. Text of the footnote. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the footnote. Text of the footnote. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the footnote. Text of the footnote. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
"skip": [
- "aside"
- ]
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "always"
},
"utterances": [
{
"language": "en",
- "plain": "This text has a footnote."
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
"skip": [
- "footnote"
- ]
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
+ "ssml": "This text has a footnote.",
"language": "en",
- "plain": "This text has a footnote."
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
"skip": [
+ "aside",
+ "footnote",
"noteref"
- ]
+ ],
+ "language": "block-level"
},
"utterances": [
{
"language": "en",
- "plain": "This text has a footnote."
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "plain",
- "contextualize": false
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
+ "ssml": "This text has a footnote.",
"language": "en",
- "plain": "This text has a footnote."
- },
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "none"
+ },
+ "utterances": [
{
- "plain": "Text of the footnote."
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "plain",
- "interruptSentence": true
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
- "language": "en"
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
"language": "always"
},
"utterances": [
{
"language": "en",
- "plain": "This text has a footnote."
- },
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
{
- "plain": "Start of the footnote. Text of the footnote. End of the footnote."
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
"language": "block-level"
},
"utterances": [
{
"language": "en",
- "plain": "This text has a footnote."
- },
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
{
- "plain": "Start of the footnote. Text of the footnote. End of the footnote."
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "This text has a footnote."
- },
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
{
- "plain": "Start of the footnote. Text of the footnote. End of the footnote."
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
},
"utterances": [
{
"language": "en",
- "ssml": "This text has a footnote."
- },
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
{
- "ssml": "Start of the footnote. Text of the footnote. End of the footnote."
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
}
]
},
@@ -145,13 +9221,20 @@
"options": {
"format": "ssml",
"skip": [
- "aside"
- ]
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
},
"utterances": [
{
"language": "en",
- "ssml": "This text has a footnote."
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
}
]
},
@@ -159,13 +9242,21 @@
"options": {
"format": "ssml",
"skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
"footnote"
- ]
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
+ "ssml": "This text has a footnote.",
"language": "en",
- "ssml": "This text has a footnote."
+ "startsNewBlock": true
}
]
},
@@ -173,84 +9264,259 @@
"options": {
"format": "ssml",
"skip": [
+ "aside",
+ "footnote",
"noteref"
- ]
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
},
"utterances": [
{
"language": "en",
- "ssml": "This text has a footnote."
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
- "contextualize": false
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
+ "ssml": "This text has a footnote.",
"language": "en",
- "ssml": "This text has a footnote."
- },
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
{
- "ssml": "Text of the footnote."
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
- "interruptSentence": true
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
},
"utterances": [
{
- "ssml": "This text has a footnote Start of the footnote. Text of the footnote. End of the footnote.",
- "language": "en"
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
"language": "always"
},
"utterances": [
{
"language": "en",
- "ssml": "This text has a footnote."
- },
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
{
- "ssml": "Start of the footnote. Text of the footnote. End of the footnote."
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
"language": "block-level"
},
"utterances": [
{
"language": "en",
- "ssml": "This text has a footnote."
- },
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
{
- "ssml": "Start of the footnote. Text of the footnote. End of the footnote."
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "This text has a footnote."
- },
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
{
- "ssml": "Start of the footnote. Text of the footnote. End of the footnote."
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/footnote-role-aria/utterances.json b/fixtures/footnote-role-aria/utterances.json
index 9f248af..79df35f 100644
--- a/fixtures/footnote-role-aria/utterances.json
+++ b/fixtures/footnote-role-aria/utterances.json
@@ -7,68 +7,154 @@
"utterances": [
{
"language": "en",
- "plain": "This text has a footnote."
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
},
{
- "plain": "Start of the footnote. Text of the footnote. 1. End of the footnote.",
- "language": "en"
+ "language": "en",
+ "plain": "Text of the footnote."
+ },
+ {
+ "plain": "1."
}
]
},
{
"options": {
"format": "plain",
- "skip": [
- "aside"
- ]
+ "inlineContextualization": true
},
"utterances": [
{
+ "plain": "This text has a footnote 1. Text of the footnote.",
"language": "en",
- "plain": "This text has a footnote."
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "plain",
- "skip": [
- "footnote"
- ]
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
+ "plain": "This text has a footnote 1. Text of the footnote.",
"language": "en",
- "plain": "This text has a footnote."
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "plain",
- "skip": [
- "noteref"
- ]
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
+ "plain": "This text has a footnote 1. Text of the footnote.",
"language": "en",
- "plain": "This text has a footnote."
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "language": "none"
},
"utterances": [
{
- "language": "en",
- "plain": "This text has a footnote."
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Text of the footnote."
},
{
+ "plain": "1."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote 1. Text of the footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote 1. Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote 1. Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote 1. Text of the footnote.",
"language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
"plain": "Text of the footnote."
},
{
@@ -79,11 +165,34 @@
{
"options": {
"format": "plain",
- "interruptSentence": true
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
+ "plain": "This text has a footnote 1. Text of the footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the footnote. Text of the footnote. 1. End of the footnote.",
"language": "en"
}
]
@@ -91,12 +200,32 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "footnote"
+ ],
"language": "always"
},
"utterances": [
{
"language": "en",
- "plain": "This text has a footnote."
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
},
{
"plain": "Start of the footnote. Text of the footnote. 1. End of the footnote.",
@@ -107,12 +236,33 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "footnote"
+ ],
"language": "block-level"
},
"utterances": [
{
"language": "en",
- "plain": "This text has a footnote."
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
},
{
"plain": "Start of the footnote. Text of the footnote. 1. End of the footnote.",
@@ -123,11 +273,32 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "footnote"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "This text has a footnote."
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
},
{
"plain": "Start of the footnote. Text of the footnote. 1. End of the footnote."
@@ -136,135 +307,9248 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
},
"utterances": [
{
"language": "en",
- "ssml": "This text has a footnote."
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
},
{
- "ssml": "Start of the footnote. Text of the footnote. 1. End of the footnote.",
+ "plain": "Start of the footnote. Text of the footnote. 1. End of the footnote.",
"language": "en"
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
- "aside"
- ]
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
+ "plain": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
"language": "en",
- "ssml": "This text has a footnote."
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
+ "format": "plain",
+ "contextualize": [
+ "aside",
"footnote"
- ]
+ ],
+ "language": "always"
},
"utterances": [
{
"language": "en",
- "ssml": "This text has a footnote."
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the footnote. Text of the footnote. 1. End of the footnote.",
+ "language": "en"
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
- "noteref"
- ]
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
+ "plain": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
"language": "en",
- "ssml": "This text has a footnote."
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
},
"utterances": [
{
"language": "en",
- "ssml": "This text has a footnote."
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
},
{
+ "plain": "Start of the footnote. Text of the footnote. 1. End of the footnote.",
+ "language": "en"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
"language": "en",
- "ssml": "Text of the footnote."
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
},
{
- "ssml": "1."
+ "plain": "Start of the footnote. Text of the footnote. 1. End of the footnote."
}
]
},
{
"options": {
- "format": "ssml",
- "interruptSentence": true
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
- "language": "en"
+ "plain": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
- "language": "always"
+ "format": "plain",
+ "skip": [
+ "aside"
+ ]
},
"utterances": [
{
"language": "en",
- "ssml": "This text has a footnote."
- },
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
{
- "ssml": "Start of the footnote. Text of the footnote. 1. End of the footnote.",
- "language": "en"
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
- "language": "block-level"
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "always"
},
"utterances": [
{
"language": "en",
- "ssml": "This text has a footnote."
- },
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
{
- "ssml": "Start of the footnote. Text of the footnote. 1. End of the footnote.",
- "language": "en"
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
- "language": "none"
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level"
},
"utterances": [
{
- "ssml": "This text has a footnote."
- },
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "language": "en",
+ "ssml": "Text of the footnote."
+ },
+ {
+ "ssml": "1."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote 1. Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote 1. Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote 1. Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Text of the footnote."
+ },
+ {
+ "ssml": "1."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote 1. Text of the footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote 1. Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote 1. Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote 1. Text of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Text of the footnote."
+ },
+ {
+ "ssml": "1."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote 1. Text of the footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the footnote. Text of the footnote. 1. End of the footnote.",
+ "language": "en"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the footnote. Text of the footnote. 1. End of the footnote.",
+ "language": "en"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the footnote. Text of the footnote. 1. End of the footnote.",
+ "language": "en"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the footnote. Text of the footnote. 1. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the footnote. Text of the footnote. 1. End of the footnote.",
+ "language": "en"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the footnote. Text of the footnote. 1. End of the footnote.",
+ "language": "en"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the footnote. Text of the footnote. 1. End of the footnote.",
+ "language": "en"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the footnote. Text of the footnote. 1. End of the footnote."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote Start of the footnote. 1. Text of the footnote. End of the footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
{
- "ssml": "Start of the footnote. Text of the footnote. 1. End of the footnote."
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "footnote",
+ "noteref"
+ ],
+ "contextualize": [
+ "aside",
+ "footnote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "This text has a footnote.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/foreword-epub-type/utterances.json b/fixtures/foreword-epub-type/utterances.json
index dd0ef32..c19bea0 100644
--- a/fixtures/foreword-epub-type/utterances.json
+++ b/fixtures/foreword-epub-type/utterances.json
@@ -6,40 +6,8 @@
},
"utterances": [
{
- "plain": "A respected maritime historian introduces this account of the coastline's lighthouses."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "A respected maritime historian introduces this account of the coastline's lighthouses."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "A respected maritime historian introduces this account of the coastline's lighthouses."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "A respected maritime historian introduces this account of the coastline's lighthouses."
+ "plain": "A respected maritime historian introduces this account of the coastline's lighthouses.",
+ "startsNewBlock": true
}
]
},
@@ -49,40 +17,8 @@
},
"utterances": [
{
- "ssml": "A respected maritime historian introduces this account of the coastline's lighthouses."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "A respected maritime historian introduces this account of the coastline's lighthouses."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "A respected maritime historian introduces this account of the coastline's lighthouses."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "A respected maritime historian introduces this account of the coastline's lighthouses."
+ "ssml": "A respected maritime historian introduces this account of the coastline's lighthouses.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/foreword-role-aria/utterances.json b/fixtures/foreword-role-aria/utterances.json
index dd0ef32..c19bea0 100644
--- a/fixtures/foreword-role-aria/utterances.json
+++ b/fixtures/foreword-role-aria/utterances.json
@@ -6,40 +6,8 @@
},
"utterances": [
{
- "plain": "A respected maritime historian introduces this account of the coastline's lighthouses."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "A respected maritime historian introduces this account of the coastline's lighthouses."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "A respected maritime historian introduces this account of the coastline's lighthouses."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "A respected maritime historian introduces this account of the coastline's lighthouses."
+ "plain": "A respected maritime historian introduces this account of the coastline's lighthouses.",
+ "startsNewBlock": true
}
]
},
@@ -49,40 +17,8 @@
},
"utterances": [
{
- "ssml": "A respected maritime historian introduces this account of the coastline's lighthouses."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "A respected maritime historian introduces this account of the coastline's lighthouses."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "A respected maritime historian introduces this account of the coastline's lighthouses."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "A respected maritime historian introduces this account of the coastline's lighthouses."
+ "ssml": "A respected maritime historian introduces this account of the coastline's lighthouses.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/glossary-epub-type/utterances.json b/fixtures/glossary-epub-type/utterances.json
index 402dedd..6c331c2 100644
--- a/fixtures/glossary-epub-type/utterances.json
+++ b/fixtures/glossary-epub-type/utterances.json
@@ -6,7 +6,31 @@
},
"utterances": [
{
- "plain": "Start of the glossary."
+ "plain": "Fresnel lens",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"plain": "Fresnel lens"
@@ -28,9 +52,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "glossary"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
{
"plain": "Fresnel lens"
},
@@ -42,17 +73,55 @@
},
{
"plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the glossary."
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"plain": "Fresnel lens"
@@ -74,11 +143,46 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the glossary."
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"plain": "Fresnel lens"
@@ -100,11 +204,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the glossary."
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"plain": "Fresnel lens"
@@ -125,115 +233,1365 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the glossary."
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
- "ssml": "Fresnel lens"
+ "plain": "Fresnel lens"
},
{
- "ssml": "A compact lens for focusing light."
+ "plain": "A compact lens for focusing light."
},
{
- "ssml": "Keeper"
+ "plain": "Keeper"
},
{
- "ssml": "A person responsible for maintaining a lighthouse."
+ "plain": "A person responsible for maintaining a lighthouse."
},
{
- "ssml": "End of the glossary."
+ "plain": "End of the glossary."
}
]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ]
},
"utterances": [
{
- "ssml": "Fresnel lens"
+ "plain": "Term.",
+ "startsNewBlock": true
},
{
- "ssml": "A compact lens for focusing light."
+ "plain": "Fresnel lens"
},
{
- "ssml": "Keeper"
+ "plain": "A compact lens for focusing light."
},
{
- "ssml": "A person responsible for maintaining a lighthouse."
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the glossary."
+ "plain": "Term.",
+ "startsNewBlock": true
},
{
- "ssml": "Fresnel lens"
+ "plain": "Fresnel lens"
},
{
- "ssml": "A compact lens for focusing light."
+ "plain": "A compact lens for focusing light."
},
{
- "ssml": "Keeper"
+ "plain": "Term."
},
{
- "ssml": "A person responsible for maintaining a lighthouse."
+ "plain": "Keeper"
},
{
- "ssml": "End of the glossary."
+ "plain": "A person responsible for maintaining a lighthouse."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the glossary."
+ "plain": "Term.",
+ "startsNewBlock": true
},
{
- "ssml": "Fresnel lens"
+ "plain": "Fresnel lens"
},
{
- "ssml": "A compact lens for focusing light."
+ "plain": "A compact lens for focusing light."
},
{
- "ssml": "Keeper"
+ "plain": "Term."
},
{
- "ssml": "A person responsible for maintaining a lighthouse."
+ "plain": "Keeper"
},
{
- "ssml": "End of the glossary."
+ "plain": "A person responsible for maintaining a lighthouse."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the glossary."
+ "plain": "Term.",
+ "startsNewBlock": true
},
{
- "ssml": "Fresnel lens"
+ "plain": "Fresnel lens"
},
{
- "ssml": "A compact lens for focusing light."
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Fresnel lens",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
},
{
"ssml": "Keeper"
diff --git a/fixtures/glossary-role-aria/utterances.json b/fixtures/glossary-role-aria/utterances.json
index 402dedd..ccf3958 100644
--- a/fixtures/glossary-role-aria/utterances.json
+++ b/fixtures/glossary-role-aria/utterances.json
@@ -6,7 +6,31 @@
},
"utterances": [
{
- "plain": "Start of the glossary."
+ "plain": "Fresnel lens",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"plain": "Fresnel lens"
@@ -28,9 +52,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "glossary"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
{
"plain": "Fresnel lens"
},
@@ -42,17 +73,55 @@
},
{
"plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the glossary."
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"plain": "Fresnel lens"
@@ -74,11 +143,46 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the glossary."
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"plain": "Fresnel lens"
@@ -100,11 +204,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the glossary."
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"plain": "Fresnel lens"
@@ -125,115 +233,1557 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the glossary."
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
- "ssml": "Fresnel lens"
+ "plain": "Fresnel lens"
},
{
- "ssml": "A compact lens for focusing light."
+ "plain": "A compact lens for focusing light."
},
{
- "ssml": "Keeper"
+ "plain": "Keeper"
},
{
- "ssml": "A person responsible for maintaining a lighthouse."
+ "plain": "A person responsible for maintaining a lighthouse."
},
{
- "ssml": "End of the glossary."
+ "plain": "End of the glossary."
}
]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ]
},
"utterances": [
{
- "ssml": "Fresnel lens"
+ "plain": "Term.",
+ "startsNewBlock": true
},
{
- "ssml": "A compact lens for focusing light."
+ "plain": "Term."
},
{
- "ssml": "Keeper"
+ "plain": "Fresnel lens"
},
{
- "ssml": "A person responsible for maintaining a lighthouse."
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the glossary."
+ "plain": "Term.",
+ "startsNewBlock": true
},
{
- "ssml": "Fresnel lens"
+ "plain": "Term."
},
{
- "ssml": "A compact lens for focusing light."
+ "plain": "Fresnel lens"
},
{
- "ssml": "Keeper"
+ "plain": "A compact lens for focusing light."
},
{
- "ssml": "A person responsible for maintaining a lighthouse."
+ "plain": "Term."
},
{
- "ssml": "End of the glossary."
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the glossary."
+ "plain": "Term.",
+ "startsNewBlock": true
},
{
- "ssml": "Fresnel lens"
+ "plain": "Term."
},
{
- "ssml": "A compact lens for focusing light."
+ "plain": "Fresnel lens"
},
{
- "ssml": "Keeper"
+ "plain": "A compact lens for focusing light."
},
{
- "ssml": "A person responsible for maintaining a lighthouse."
+ "plain": "Term."
},
{
- "ssml": "End of the glossary."
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the glossary."
+ "plain": "Term.",
+ "startsNewBlock": true
},
{
- "ssml": "Fresnel lens"
+ "plain": "Term."
},
{
- "ssml": "A compact lens for focusing light."
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "A compact lens for focusing light."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "Keeper"
+ },
+ {
+ "plain": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Fresnel lens",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Keeper"
+ },
+ {
+ "ssml": "A person responsible for maintaining a lighthouse."
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "A compact lens for focusing light."
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "Term."
},
{
"ssml": "Keeper"
diff --git a/fixtures/glossref-epub-type/utterances.json b/fixtures/glossref-epub-type/utterances.json
index a9f257e..99492cc 100644
--- a/fixtures/glossref-epub-type/utterances.json
+++ b/fixtures/glossref-epub-type/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "See glossary: Fresnel lens"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "See glossary: Fresnel lens"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "See glossary: Fresnel lens"
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "See glossary: Fresnel lens"
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "See glossary: Fresnel lens"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "See glossary: Fresnel lens"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "See glossary: Fresnel lens"
- }
- ]
}
]
}
diff --git a/fixtures/glossref-role-aria/utterances.json b/fixtures/glossref-role-aria/utterances.json
index a9f257e..99492cc 100644
--- a/fixtures/glossref-role-aria/utterances.json
+++ b/fixtures/glossref-role-aria/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "See glossary: Fresnel lens"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "See glossary: Fresnel lens"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "See glossary: Fresnel lens"
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "See glossary: Fresnel lens"
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "See glossary: Fresnel lens"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "See glossary: Fresnel lens"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "See glossary: Fresnel lens"
- }
- ]
}
]
}
diff --git a/fixtures/header-html-native/utterances.json b/fixtures/header-html-native/utterances.json
index 92f7c38..4ceb894 100644
--- a/fixtures/header-html-native/utterances.json
+++ b/fixtures/header-html-native/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "Chapter One"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "Chapter One"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "Chapter One"
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "Chapter One"
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "Chapter One"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "Chapter One"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "Chapter One"
- }
- ]
}
]
}
diff --git a/fixtures/heading-html-native/utterances.json b/fixtures/heading-html-native/utterances.json
index b330af4..09c94db 100644
--- a/fixtures/heading-html-native/utterances.json
+++ b/fixtures/heading-html-native/utterances.json
@@ -6,238 +6,46517 @@
},
"utterances": [
{
- "plain": "Heading level 1."
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
},
{
"plain": "Chapter One"
},
{
- "plain": "Heading level 2."
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
},
{
- "plain": "Section A"
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
},
{
- "plain": "Heading level 3."
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
},
{
- "plain": "Subsection i"
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 4."
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
- "plain": "Detail heading"
+ "ssml": "Section A"
},
{
- "plain": "Heading level 5."
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
- "plain": "Note heading"
+ "ssml": "Subsection i"
},
{
- "plain": "Heading level 6."
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
},
{
- "plain": "Aside heading"
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
}
]
},
{
"options": {
- "format": "plain",
- "contextualize": false
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Chapter One"
+ "ssml": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Section A"
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
- "plain": "Subsection i"
+ "ssml": "Section A"
},
{
- "plain": "Detail heading"
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
- "plain": "Note heading"
+ "ssml": "Subsection i"
},
{
- "plain": "Aside heading"
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
}
]
},
{
"options": {
- "format": "plain",
- "language": "always"
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
},
"utterances": [
{
- "plain": "Heading level 1."
+ "ssml": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Chapter One"
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 2."
+ "ssml": "Section A"
},
{
- "plain": "Section A"
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 3."
+ "ssml": "Subsection i"
},
{
- "plain": "Subsection i"
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 4."
+ "ssml": "Detail heading"
},
{
- "plain": "Detail heading"
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 5."
+ "ssml": "Note heading"
},
{
- "plain": "Note heading"
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 6."
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
- "plain": "Aside heading"
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
}
]
},
{
"options": {
- "format": "plain",
- "language": "block-level"
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
},
"utterances": [
{
- "plain": "Heading level 1."
+ "ssml": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Chapter One"
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 2."
+ "ssml": "Section A"
},
{
- "plain": "Section A"
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 3."
+ "ssml": "Subsection i"
},
{
- "plain": "Subsection i"
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 4."
+ "ssml": "Detail heading"
},
{
- "plain": "Detail heading"
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 5."
+ "ssml": "Note heading"
},
{
- "plain": "Note heading"
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 6."
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Aside heading"
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
}
]
},
{
"options": {
- "format": "plain",
- "language": "none"
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
},
"utterances": [
{
- "plain": "Heading level 1."
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
},
{
- "plain": "Chapter One"
+ "ssml": "Chapter One"
},
{
- "plain": "Heading level 2."
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
- "plain": "Section A"
+ "ssml": "Section A"
},
{
- "plain": "Heading level 3."
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
- "plain": "Subsection i"
+ "ssml": "Subsection i"
},
{
- "plain": "Heading level 4."
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
},
{
- "plain": "Detail heading"
+ "ssml": "Detail heading"
},
{
- "plain": "Heading level 5."
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
},
{
- "plain": "Note heading"
+ "ssml": "Note heading"
},
{
- "plain": "Heading level 6."
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
},
{
- "plain": "Aside heading"
+ "ssml": "Aside heading"
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Heading level 1."
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
},
{
"ssml": "Chapter One"
},
{
- "ssml": "Heading level 2."
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
"ssml": "Section A"
},
{
- "ssml": "Heading level 3."
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
"ssml": "Subsection i"
},
{
- "ssml": "Heading level 4."
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
},
{
"ssml": "Detail heading"
},
{
- "ssml": "Heading level 5."
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
},
{
"ssml": "Note heading"
},
{
- "ssml": "Heading level 6."
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
},
{
"ssml": "Aside heading"
@@ -247,24 +46526,56 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
},
"utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
{
"ssml": "Chapter One"
},
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
{
"ssml": "Section A"
},
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
{
"ssml": "Subsection i"
},
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
{
"ssml": "Detail heading"
},
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
{
"ssml": "Note heading"
},
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
{
"ssml": "Aside heading"
}
@@ -273,41 +46584,56 @@
{
"options": {
"format": "ssml",
- "language": "always"
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Heading level 1."
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
},
{
"ssml": "Chapter One"
},
{
- "ssml": "Heading level 2."
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
"ssml": "Section A"
},
{
- "ssml": "Heading level 3."
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
"ssml": "Subsection i"
},
{
- "ssml": "Heading level 4."
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
},
{
"ssml": "Detail heading"
},
{
- "ssml": "Heading level 5."
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
},
{
"ssml": "Note heading"
},
{
- "ssml": "Heading level 6."
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
},
{
"ssml": "Aside heading"
@@ -317,41 +46643,114 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Heading level 1."
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
},
{
"ssml": "Chapter One"
},
{
- "ssml": "Heading level 2."
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
"ssml": "Section A"
},
{
- "ssml": "Heading level 3."
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
"ssml": "Subsection i"
},
{
- "ssml": "Heading level 4."
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
},
{
"ssml": "Detail heading"
},
{
- "ssml": "Heading level 5."
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
},
{
"ssml": "Note heading"
},
{
- "ssml": "Heading level 6."
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
},
{
"ssml": "Aside heading"
@@ -361,41 +46760,114 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Heading level 1."
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
},
{
"ssml": "Chapter One"
},
{
- "ssml": "Heading level 2."
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
"ssml": "Section A"
},
{
- "ssml": "Heading level 3."
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
"ssml": "Subsection i"
},
{
- "ssml": "Heading level 4."
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
},
{
"ssml": "Detail heading"
},
{
- "ssml": "Heading level 5."
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
},
{
"ssml": "Note heading"
},
{
- "ssml": "Heading level 6."
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
},
{
"ssml": "Aside heading"
diff --git a/fixtures/heading-role-aria/utterances.json b/fixtures/heading-role-aria/utterances.json
index b330af4..09c94db 100644
--- a/fixtures/heading-role-aria/utterances.json
+++ b/fixtures/heading-role-aria/utterances.json
@@ -6,238 +6,46517 @@
},
"utterances": [
{
- "plain": "Heading level 1."
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
},
{
"plain": "Chapter One"
},
{
- "plain": "Heading level 2."
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Section A"
+ },
+ {
+ "plain": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Subsection i"
+ },
+ {
+ "plain": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Detail heading"
+ },
+ {
+ "plain": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Note heading"
+ },
+ {
+ "plain": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Aside heading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Note heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Detail heading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Subsection i",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Section A",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
},
{
- "plain": "Section A"
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
},
{
- "plain": "Heading level 3."
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
},
{
- "plain": "Subsection i"
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 4."
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
- "plain": "Detail heading"
+ "ssml": "Section A"
},
{
- "plain": "Heading level 5."
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
- "plain": "Note heading"
+ "ssml": "Subsection i"
},
{
- "plain": "Heading level 6."
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
},
{
- "plain": "Aside heading"
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
}
]
},
{
"options": {
- "format": "plain",
- "contextualize": false
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Chapter One"
+ "ssml": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Section A"
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
- "plain": "Subsection i"
+ "ssml": "Section A"
},
{
- "plain": "Detail heading"
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
- "plain": "Note heading"
+ "ssml": "Subsection i"
},
{
- "plain": "Aside heading"
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
}
]
},
{
"options": {
- "format": "plain",
- "language": "always"
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level"
},
"utterances": [
{
- "plain": "Heading level 1."
+ "ssml": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Chapter One"
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 2."
+ "ssml": "Section A"
},
{
- "plain": "Section A"
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 3."
+ "ssml": "Subsection i"
},
{
- "plain": "Subsection i"
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 4."
+ "ssml": "Detail heading"
},
{
- "plain": "Detail heading"
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 5."
+ "ssml": "Note heading"
},
{
- "plain": "Note heading"
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 6."
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
- "plain": "Aside heading"
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
}
]
},
{
"options": {
- "format": "plain",
- "language": "block-level"
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none"
},
"utterances": [
{
- "plain": "Heading level 1."
+ "ssml": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Chapter One"
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 2."
+ "ssml": "Section A"
},
{
- "plain": "Section A"
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 3."
+ "ssml": "Subsection i"
},
{
- "plain": "Subsection i"
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 4."
+ "ssml": "Detail heading"
},
{
- "plain": "Detail heading"
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 5."
+ "ssml": "Note heading"
},
{
- "plain": "Note heading"
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 6."
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Aside heading"
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
}
]
},
{
"options": {
- "format": "plain",
- "language": "none"
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ]
},
"utterances": [
{
- "plain": "Heading level 1."
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
},
{
- "plain": "Chapter One"
+ "ssml": "Chapter One"
},
{
- "plain": "Heading level 2."
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
- "plain": "Section A"
+ "ssml": "Section A"
},
{
- "plain": "Heading level 3."
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
- "plain": "Subsection i"
+ "ssml": "Subsection i"
},
{
- "plain": "Heading level 4."
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
},
{
- "plain": "Detail heading"
+ "ssml": "Detail heading"
},
{
- "plain": "Heading level 5."
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
},
{
- "plain": "Note heading"
+ "ssml": "Note heading"
},
{
- "plain": "Heading level 6."
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
},
{
- "plain": "Aside heading"
+ "ssml": "Aside heading"
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Heading level 1."
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
},
{
"ssml": "Chapter One"
},
{
- "ssml": "Heading level 2."
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
"ssml": "Section A"
},
{
- "ssml": "Heading level 3."
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
"ssml": "Subsection i"
},
{
- "ssml": "Heading level 4."
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
},
{
"ssml": "Detail heading"
},
{
- "ssml": "Heading level 5."
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
},
{
"ssml": "Note heading"
},
{
- "ssml": "Heading level 6."
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
},
{
"ssml": "Aside heading"
@@ -247,24 +46526,56 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always"
},
"utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
{
"ssml": "Chapter One"
},
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
{
"ssml": "Section A"
},
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
{
"ssml": "Subsection i"
},
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
{
"ssml": "Detail heading"
},
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
{
"ssml": "Note heading"
},
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
{
"ssml": "Aside heading"
}
@@ -273,41 +46584,56 @@
{
"options": {
"format": "ssml",
- "language": "always"
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Heading level 1."
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
},
{
"ssml": "Chapter One"
},
{
- "ssml": "Heading level 2."
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
"ssml": "Section A"
},
{
- "ssml": "Heading level 3."
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
"ssml": "Subsection i"
},
{
- "ssml": "Heading level 4."
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
},
{
"ssml": "Detail heading"
},
{
- "ssml": "Heading level 5."
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
},
{
"ssml": "Note heading"
},
{
- "ssml": "Heading level 6."
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
},
{
"ssml": "Aside heading"
@@ -317,41 +46643,114 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Heading level 1."
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
},
{
"ssml": "Chapter One"
},
{
- "ssml": "Heading level 2."
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
"ssml": "Section A"
},
{
- "ssml": "Heading level 3."
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
"ssml": "Subsection i"
},
{
- "ssml": "Heading level 4."
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
},
{
"ssml": "Detail heading"
},
{
- "ssml": "Heading level 5."
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
},
{
"ssml": "Note heading"
},
{
- "ssml": "Heading level 6."
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
},
{
"ssml": "Aside heading"
@@ -361,41 +46760,114 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Heading level 1."
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Section A"
+ },
+ {
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Subsection i"
+ },
+ {
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Detail heading"
+ },
+ {
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Note heading"
+ },
+ {
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Aside heading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
},
{
"ssml": "Chapter One"
},
{
- "ssml": "Heading level 2."
+ "ssml": "Heading level 2.",
+ "startsNewBlock": true
},
{
"ssml": "Section A"
},
{
- "ssml": "Heading level 3."
+ "ssml": "Heading level 3.",
+ "startsNewBlock": true
},
{
"ssml": "Subsection i"
},
{
- "ssml": "Heading level 4."
+ "ssml": "Heading level 4.",
+ "startsNewBlock": true
},
{
"ssml": "Detail heading"
},
{
- "ssml": "Heading level 5."
+ "ssml": "Heading level 5.",
+ "startsNewBlock": true
},
{
"ssml": "Note heading"
},
{
- "ssml": "Heading level 6."
+ "ssml": "Heading level 6.",
+ "startsNewBlock": true
},
{
"ssml": "Aside heading"
diff --git a/fixtures/hidden-aria-hidden-html-native/utterances.json b/fixtures/hidden-aria-hidden-html-native/utterances.json
index 131045b..a0a7044 100644
--- a/fixtures/hidden-aria-hidden-html-native/utterances.json
+++ b/fixtures/hidden-aria-hidden-html-native/utterances.json
@@ -6,52 +6,12 @@
},
"utterances": [
{
- "plain": "Before the hidden content."
+ "plain": "Before the hidden content.",
+ "startsNewBlock": true
},
{
- "plain": "After the hidden content."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "Before the hidden content."
- },
- {
- "plain": "After the hidden content."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "Before the hidden content."
- },
- {
- "plain": "After the hidden content."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "Before the hidden content."
- },
- {
- "plain": "After the hidden content."
+ "plain": "After the hidden content.",
+ "startsNewBlock": true
}
]
},
@@ -61,52 +21,12 @@
},
"utterances": [
{
- "ssml": "Before the hidden content."
- },
- {
- "ssml": "After the hidden content."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "Before the hidden content."
- },
- {
- "ssml": "After the hidden content."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "Before the hidden content."
- },
- {
- "ssml": "After the hidden content."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "Before the hidden content."
+ "ssml": "Before the hidden content.",
+ "startsNewBlock": true
},
{
- "ssml": "After the hidden content."
+ "ssml": "After the hidden content.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/hidden-attribute-html-native/utterances.json b/fixtures/hidden-attribute-html-native/utterances.json
index 131045b..a0a7044 100644
--- a/fixtures/hidden-attribute-html-native/utterances.json
+++ b/fixtures/hidden-attribute-html-native/utterances.json
@@ -6,52 +6,12 @@
},
"utterances": [
{
- "plain": "Before the hidden content."
+ "plain": "Before the hidden content.",
+ "startsNewBlock": true
},
{
- "plain": "After the hidden content."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "Before the hidden content."
- },
- {
- "plain": "After the hidden content."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "Before the hidden content."
- },
- {
- "plain": "After the hidden content."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "Before the hidden content."
- },
- {
- "plain": "After the hidden content."
+ "plain": "After the hidden content.",
+ "startsNewBlock": true
}
]
},
@@ -61,52 +21,12 @@
},
"utterances": [
{
- "ssml": "Before the hidden content."
- },
- {
- "ssml": "After the hidden content."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "Before the hidden content."
- },
- {
- "ssml": "After the hidden content."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "Before the hidden content."
- },
- {
- "ssml": "After the hidden content."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "Before the hidden content."
+ "ssml": "Before the hidden content.",
+ "startsNewBlock": true
},
{
- "ssml": "After the hidden content."
+ "ssml": "After the hidden content.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/image-alt-html-native/utterances.json b/fixtures/image-alt-html-native/utterances.json
index 0d13ee9..8887ede 100644
--- a/fixtures/image-alt-html-native/utterances.json
+++ b/fixtures/image-alt-html-native/utterances.json
@@ -6,7 +6,21 @@
},
"utterances": [
{
- "plain": "Image."
+ "plain": "Alternative text using the alt attribute"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
},
{
"plain": "Alternative text using the alt attribute"
@@ -16,9 +30,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "image"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
{
"plain": "Alternative text using the alt attribute"
}
@@ -27,11 +48,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "image"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Image."
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Alternative text using the alt attribute"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
},
{
"plain": "Alternative text using the alt attribute"
@@ -41,11 +85,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "image"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Image."
+ "plain": "Image.",
+ "startsNewBlock": true
},
{
"plain": "Alternative text using the alt attribute"
@@ -55,11 +103,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Alternative text using the alt attribute"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Image."
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Alternative text using the alt attribute"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
},
{
"plain": "Alternative text using the alt attribute"
@@ -72,7 +162,21 @@
},
"utterances": [
{
- "ssml": "Image."
+ "ssml": "Alternative text using the alt attribute"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
"ssml": "Alternative text using the alt attribute"
@@ -82,9 +186,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "image"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
{
"ssml": "Alternative text using the alt attribute"
}
@@ -93,11 +204,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "image"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Image."
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Alternative text using the alt attribute"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
"ssml": "Alternative text using the alt attribute"
@@ -107,11 +241,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "image"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Image."
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
"ssml": "Alternative text using the alt attribute"
@@ -121,11 +259,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Alternative text using the alt attribute"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Image."
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Alternative text using the alt attribute"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
"ssml": "Alternative text using the alt attribute"
diff --git a/fixtures/image-decorative-empty-alt/utterances.json b/fixtures/image-decorative-empty-alt/utterances.json
index 603a972..13532d8 100644
--- a/fixtures/image-decorative-empty-alt/utterances.json
+++ b/fixtures/image-decorative-empty-alt/utterances.json
@@ -6,52 +6,12 @@
},
"utterances": [
{
- "plain": "Before the divider."
+ "plain": "Before the divider.",
+ "startsNewBlock": true
},
{
- "plain": "After the divider."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "Before the divider."
- },
- {
- "plain": "After the divider."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "Before the divider."
- },
- {
- "plain": "After the divider."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "Before the divider."
- },
- {
- "plain": "After the divider."
+ "plain": "After the divider.",
+ "startsNewBlock": true
}
]
},
@@ -61,52 +21,12 @@
},
"utterances": [
{
- "ssml": "Before the divider."
- },
- {
- "ssml": "After the divider."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "Before the divider."
- },
- {
- "ssml": "After the divider."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "Before the divider."
- },
- {
- "ssml": "After the divider."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "Before the divider."
+ "ssml": "Before the divider.",
+ "startsNewBlock": true
},
{
- "ssml": "After the divider."
+ "ssml": "After the divider.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/image-decorative-role-presentation/utterances.json b/fixtures/image-decorative-role-presentation/utterances.json
index 603a972..13532d8 100644
--- a/fixtures/image-decorative-role-presentation/utterances.json
+++ b/fixtures/image-decorative-role-presentation/utterances.json
@@ -6,52 +6,12 @@
},
"utterances": [
{
- "plain": "Before the divider."
+ "plain": "Before the divider.",
+ "startsNewBlock": true
},
{
- "plain": "After the divider."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "Before the divider."
- },
- {
- "plain": "After the divider."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "Before the divider."
- },
- {
- "plain": "After the divider."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "Before the divider."
- },
- {
- "plain": "After the divider."
+ "plain": "After the divider.",
+ "startsNewBlock": true
}
]
},
@@ -61,52 +21,12 @@
},
"utterances": [
{
- "ssml": "Before the divider."
- },
- {
- "ssml": "After the divider."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "Before the divider."
- },
- {
- "ssml": "After the divider."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "Before the divider."
- },
- {
- "ssml": "After the divider."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "Before the divider."
+ "ssml": "Before the divider.",
+ "startsNewBlock": true
},
{
- "ssml": "After the divider."
+ "ssml": "After the divider.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/image-role-aria/utterances.json b/fixtures/image-role-aria/utterances.json
index 31f149f..f63c80d 100644
--- a/fixtures/image-role-aria/utterances.json
+++ b/fixtures/image-role-aria/utterances.json
@@ -6,7 +6,21 @@
},
"utterances": [
{
- "plain": "Image."
+ "plain": "Rating: 4 out of 5 stars"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
},
{
"plain": "Rating: 4 out of 5 stars"
@@ -16,9 +30,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "image"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
{
"plain": "Rating: 4 out of 5 stars"
}
@@ -27,11 +48,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "image"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Image."
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Rating: 4 out of 5 stars"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
},
{
"plain": "Rating: 4 out of 5 stars"
@@ -41,11 +85,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "image"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Image."
+ "plain": "Image.",
+ "startsNewBlock": true
},
{
"plain": "Rating: 4 out of 5 stars"
@@ -55,11 +103,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Rating: 4 out of 5 stars"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Image."
+ "plain": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Rating: 4 out of 5 stars"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Image.",
+ "startsNewBlock": true
},
{
"plain": "Rating: 4 out of 5 stars"
@@ -72,7 +162,21 @@
},
"utterances": [
{
- "ssml": "Image."
+ "ssml": "Rating: 4 out of 5 stars"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
"ssml": "Rating: 4 out of 5 stars"
@@ -82,9 +186,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "image"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
{
"ssml": "Rating: 4 out of 5 stars"
}
@@ -93,11 +204,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "image"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Image."
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Rating: 4 out of 5 stars"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
"ssml": "Rating: 4 out of 5 stars"
@@ -107,11 +241,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "image"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Image."
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
"ssml": "Rating: 4 out of 5 stars"
@@ -121,11 +259,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Rating: 4 out of 5 stars"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Image."
+ "ssml": "Image.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Rating: 4 out of 5 stars"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "image"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Image.",
+ "startsNewBlock": true
},
{
"ssml": "Rating: 4 out of 5 stars"
diff --git a/fixtures/index-epub-type/utterances.json b/fixtures/index-epub-type/utterances.json
index cde2b8a..d27a6b5 100644
--- a/fixtures/index-epub-type/utterances.json
+++ b/fixtures/index-epub-type/utterances.json
@@ -6,107 +6,3137 @@
},
"utterances": [
{
- "plain": "Start of the index."
+ "plain": "Fresnel lens",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
"plain": "Fresnel lens"
},
{
- "plain": "Keepers"
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Fresnel lens",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
},
{
- "plain": "End of the index."
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
- "contextualize": false
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Fresnel lens"
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Keepers"
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the index."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Fresnel lens"
+ "ssml": "List item."
},
{
- "plain": "Keepers"
+ "ssml": "Fresnel lens"
},
{
- "plain": "End of the index."
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the index."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Fresnel lens"
+ "ssml": "List item."
},
{
- "plain": "Keepers"
+ "ssml": "Fresnel lens"
},
{
- "plain": "End of the index."
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the index."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Fresnel lens"
+ "ssml": "List item."
},
{
- "plain": "Keepers"
+ "ssml": "Fresnel lens"
},
{
- "plain": "End of the index."
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ]
},
"utterances": [
{
- "ssml": "Start of the index."
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
},
{
"ssml": "Fresnel lens"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Keepers"
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the index."
}
@@ -115,32 +3145,116 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Fresnel lens"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the index."
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
},
{
"ssml": "Fresnel lens"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Keepers"
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the index."
}
@@ -149,18 +3263,77 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the index."
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
},
{
"ssml": "Fresnel lens"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Keepers"
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the index."
}
@@ -169,18 +3342,77 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the index."
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
},
{
"ssml": "Fresnel lens"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Keepers"
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the index."
}
diff --git a/fixtures/index-role-aria/utterances.json b/fixtures/index-role-aria/utterances.json
index cde2b8a..d27a6b5 100644
--- a/fixtures/index-role-aria/utterances.json
+++ b/fixtures/index-role-aria/utterances.json
@@ -6,107 +6,3137 @@
},
"utterances": [
{
- "plain": "Start of the index."
+ "plain": "Fresnel lens",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
"plain": "Fresnel lens"
},
{
- "plain": "Keepers"
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the list."
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Fresnel lens"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Keepers"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Fresnel lens",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "Keepers",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
},
{
- "plain": "End of the index."
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
- "contextualize": false
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Fresnel lens"
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Keepers"
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the index."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Fresnel lens"
+ "ssml": "List item."
},
{
- "plain": "Keepers"
+ "ssml": "Fresnel lens"
},
{
- "plain": "End of the index."
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the index."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Fresnel lens"
+ "ssml": "List item."
},
{
- "plain": "Keepers"
+ "ssml": "Fresnel lens"
},
{
- "plain": "End of the index."
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the index."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Fresnel lens"
+ "ssml": "List item."
},
{
- "plain": "Keepers"
+ "ssml": "Fresnel lens"
},
{
- "plain": "End of the index."
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ]
},
"utterances": [
{
- "ssml": "Start of the index."
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
},
{
"ssml": "Fresnel lens"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Keepers"
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the index."
}
@@ -115,32 +3145,116 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Fresnel lens"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the index."
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
},
{
"ssml": "Fresnel lens"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Keepers"
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the index."
}
@@ -149,18 +3263,77 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the index."
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
},
{
"ssml": "Fresnel lens"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Keepers"
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the index."
}
@@ -169,18 +3342,77 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the index."
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Fresnel lens"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Keepers"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the index."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "index",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the index.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the list."
+ },
+ {
+ "ssml": "List item."
},
{
"ssml": "Fresnel lens"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Keepers"
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the index."
}
diff --git a/fixtures/introduction-epub-type/utterances.json b/fixtures/introduction-epub-type/utterances.json
index e6dad33..851d078 100644
--- a/fixtures/introduction-epub-type/utterances.json
+++ b/fixtures/introduction-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the introduction."
+ "plain": "This work explores the history of coastal lighthouses.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "introduction"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the introduction.",
+ "startsNewBlock": true
},
{
"plain": "This work explores the history of coastal lighthouses."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "introduction"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the introduction.",
+ "startsNewBlock": true
+ },
{
"plain": "This work explores the history of coastal lighthouses."
+ },
+ {
+ "plain": "End of the introduction."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "introduction"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the introduction."
+ "plain": "Start of the introduction.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This work explores the history of coastal lighthouses."
+ },
+ {
+ "plain": "End of the introduction."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "introduction"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the introduction.",
+ "startsNewBlock": true
},
{
"plain": "This work explores the history of coastal lighthouses."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "introduction"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the introduction."
+ "plain": "Start of the introduction.",
+ "startsNewBlock": true
},
{
"plain": "This work explores the history of coastal lighthouses."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "introduction"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the introduction.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This work explores the history of coastal lighthouses."
+ },
+ {
+ "plain": "End of the introduction."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "introduction"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the introduction."
+ "plain": "Start of the introduction.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This work explores the history of coastal lighthouses."
+ },
+ {
+ "plain": "End of the introduction."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "introduction"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the introduction.",
+ "startsNewBlock": true
},
{
"plain": "This work explores the history of coastal lighthouses."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the introduction."
+ "ssml": "This work explores the history of coastal lighthouses.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "introduction"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the introduction.",
+ "startsNewBlock": true
},
{
"ssml": "This work explores the history of coastal lighthouses."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "introduction"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the introduction.",
+ "startsNewBlock": true
+ },
{
"ssml": "This work explores the history of coastal lighthouses."
+ },
+ {
+ "ssml": "End of the introduction."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "introduction"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the introduction."
+ "ssml": "Start of the introduction.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This work explores the history of coastal lighthouses."
+ },
+ {
+ "ssml": "End of the introduction."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "introduction"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the introduction.",
+ "startsNewBlock": true
},
{
"ssml": "This work explores the history of coastal lighthouses."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "introduction"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the introduction."
+ "ssml": "Start of the introduction.",
+ "startsNewBlock": true
},
{
"ssml": "This work explores the history of coastal lighthouses."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "introduction"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the introduction.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This work explores the history of coastal lighthouses."
+ },
+ {
+ "ssml": "End of the introduction."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "introduction"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the introduction."
+ "ssml": "Start of the introduction.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This work explores the history of coastal lighthouses."
+ },
+ {
+ "ssml": "End of the introduction."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "introduction"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the introduction.",
+ "startsNewBlock": true
},
{
"ssml": "This work explores the history of coastal lighthouses."
diff --git a/fixtures/introduction-role-aria/utterances.json b/fixtures/introduction-role-aria/utterances.json
index e6dad33..851d078 100644
--- a/fixtures/introduction-role-aria/utterances.json
+++ b/fixtures/introduction-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the introduction."
+ "plain": "This work explores the history of coastal lighthouses.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "introduction"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the introduction.",
+ "startsNewBlock": true
},
{
"plain": "This work explores the history of coastal lighthouses."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "introduction"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the introduction.",
+ "startsNewBlock": true
+ },
{
"plain": "This work explores the history of coastal lighthouses."
+ },
+ {
+ "plain": "End of the introduction."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "introduction"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the introduction."
+ "plain": "Start of the introduction.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This work explores the history of coastal lighthouses."
+ },
+ {
+ "plain": "End of the introduction."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "introduction"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the introduction.",
+ "startsNewBlock": true
},
{
"plain": "This work explores the history of coastal lighthouses."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "introduction"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the introduction."
+ "plain": "Start of the introduction.",
+ "startsNewBlock": true
},
{
"plain": "This work explores the history of coastal lighthouses."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "introduction"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the introduction.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This work explores the history of coastal lighthouses."
+ },
+ {
+ "plain": "End of the introduction."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "introduction"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the introduction."
+ "plain": "Start of the introduction.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This work explores the history of coastal lighthouses."
+ },
+ {
+ "plain": "End of the introduction."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "introduction"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the introduction.",
+ "startsNewBlock": true
},
{
"plain": "This work explores the history of coastal lighthouses."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the introduction."
+ "ssml": "This work explores the history of coastal lighthouses.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "introduction"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the introduction.",
+ "startsNewBlock": true
},
{
"ssml": "This work explores the history of coastal lighthouses."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "introduction"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the introduction.",
+ "startsNewBlock": true
+ },
{
"ssml": "This work explores the history of coastal lighthouses."
+ },
+ {
+ "ssml": "End of the introduction."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "introduction"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the introduction."
+ "ssml": "Start of the introduction.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This work explores the history of coastal lighthouses."
+ },
+ {
+ "ssml": "End of the introduction."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "introduction"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the introduction.",
+ "startsNewBlock": true
},
{
"ssml": "This work explores the history of coastal lighthouses."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "introduction"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the introduction."
+ "ssml": "Start of the introduction.",
+ "startsNewBlock": true
},
{
"ssml": "This work explores the history of coastal lighthouses."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "introduction"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the introduction.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This work explores the history of coastal lighthouses."
+ },
+ {
+ "ssml": "End of the introduction."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "introduction"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the introduction."
+ "ssml": "Start of the introduction.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This work explores the history of coastal lighthouses."
+ },
+ {
+ "ssml": "End of the introduction."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "introduction"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the introduction.",
+ "startsNewBlock": true
},
{
"ssml": "This work explores the history of coastal lighthouses."
diff --git a/fixtures/landmarks-epub-type/utterances.json b/fixtures/landmarks-epub-type/utterances.json
index 0fad936..98a9563 100644
--- a/fixtures/landmarks-epub-type/utterances.json
+++ b/fixtures/landmarks-epub-type/utterances.json
@@ -4,18 +4,43 @@
"options": {
"format": "plain"
},
+ "utterances": [
+ {
+ "plain": "Cover",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks"
+ ]
+ },
"utterances": [
{
"plain": "Start of the landmarks."
},
{
- "plain": "Cover"
+ "plain": "Cover",
+ "startsNewBlock": true
},
{
- "plain": "Table of Contents"
+ "plain": "Table of Contents",
+ "startsNewBlock": true
},
{
- "plain": "Start of Content"
+ "plain": "Start of Content",
+ "startsNewBlock": true
},
{
"plain": "End of the landmarks."
@@ -25,46 +50,85 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"landmarks"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Cover",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "always"
},
"utterances": [
{
- "plain": "Cover"
+ "plain": "Start of the landmarks."
},
{
- "plain": "Table of Contents"
+ "plain": "Cover",
+ "startsNewBlock": true
},
{
- "plain": "Start of Content"
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the landmarks."
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "Start of the landmarks."
},
{
- "plain": "Cover"
+ "plain": "Cover",
+ "startsNewBlock": true
},
{
- "plain": "Table of Contents"
+ "plain": "Table of Contents",
+ "startsNewBlock": true
},
{
- "plain": "Start of Content"
+ "plain": "Start of Content",
+ "startsNewBlock": true
},
{
"plain": "End of the landmarks."
@@ -74,6 +138,9 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "landmarks"
+ ],
"language": "block-level"
},
"utterances": [
@@ -81,13 +148,16 @@
"plain": "Start of the landmarks."
},
{
- "plain": "Cover"
+ "plain": "Cover",
+ "startsNewBlock": true
},
{
- "plain": "Table of Contents"
+ "plain": "Table of Contents",
+ "startsNewBlock": true
},
{
- "plain": "Start of Content"
+ "plain": "Start of Content",
+ "startsNewBlock": true
},
{
"plain": "End of the landmarks."
@@ -97,20 +167,27 @@
{
"options": {
"format": "plain",
- "language": "none"
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "Start of the landmarks."
},
{
- "plain": "Cover"
+ "plain": "Cover",
+ "startsNewBlock": true
},
{
- "plain": "Table of Contents"
+ "plain": "Table of Contents",
+ "startsNewBlock": true
},
{
- "plain": "Start of Content"
+ "plain": "Start of Content",
+ "startsNewBlock": true
},
{
"plain": "End of the landmarks."
@@ -119,120 +196,5603 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "none"
},
"utterances": [
{
- "ssml": "Start of the landmarks."
+ "plain": "Start of the landmarks."
},
{
- "ssml": "Cover"
+ "plain": "Cover",
+ "startsNewBlock": true
},
{
- "ssml": "Table of Contents"
+ "plain": "Table of Contents",
+ "startsNewBlock": true
},
{
- "ssml": "Start of Content"
+ "plain": "Start of Content",
+ "startsNewBlock": true
},
{
- "ssml": "End of the landmarks."
+ "plain": "End of the landmarks."
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
+ "format": "plain",
+ "contextualize": [
"landmarks"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Cover",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
]
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Cover"
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Table of Contents"
+ "plain": "Cover"
},
{
- "ssml": "Start of Content"
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the landmarks."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Cover"
+ "plain": "Cover"
},
{
- "ssml": "Table of Contents"
+ "plain": "Table of Contents",
+ "startsNewBlock": true
},
{
- "ssml": "Start of Content"
+ "plain": "Start of Content",
+ "startsNewBlock": true
},
{
- "ssml": "End of the landmarks."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the landmarks."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Cover"
+ "plain": "Cover"
},
{
- "ssml": "Table of Contents"
+ "plain": "Table of Contents",
+ "startsNewBlock": true
},
{
- "ssml": "Start of Content"
+ "plain": "Start of Content",
+ "startsNewBlock": true
},
{
- "ssml": "End of the landmarks."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the landmarks."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Cover"
+ "plain": "Cover"
},
{
- "ssml": "Table of Contents"
+ "plain": "Table of Contents",
+ "startsNewBlock": true
},
{
- "ssml": "Start of Content"
+ "plain": "Start of Content",
+ "startsNewBlock": true
},
{
- "ssml": "End of the landmarks."
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the landmarks."
}
]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the landmarks."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Cover"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table of Contents"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of Content"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Cover",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Cover",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Cover",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Cover",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Cover",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Cover",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Cover",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Cover",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Cover",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "Table of Contents",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the landmarks."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Cover"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table of Contents"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of Content"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the landmarks."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "landmarks"
+ ],
+ "contextualize": [
+ "landmarks",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/language-block/utterances.json b/fixtures/language-block/utterances.json
index 740e28e..129e517 100644
--- a/fixtures/language-block/utterances.json
+++ b/fixtures/language-block/utterances.json
@@ -7,57 +7,46 @@
"utterances": [
{
"language": "en",
- "plain": "Hello."
+ "plain": "Hello.",
+ "startsNewBlock": true
},
{
"language": "fr",
- "plain": "Bonjour."
+ "plain": "Bonjour.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "language": "en",
- "plain": "Hello."
- },
- {
- "language": "fr",
- "plain": "Bonjour."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
+ "language": "none"
},
"utterances": [
{
- "language": "en",
- "plain": "Hello."
+ "plain": "Hello.",
+ "startsNewBlock": true
},
{
- "language": "fr",
- "plain": "Bonjour."
+ "plain": "Bonjour.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "plain",
- "language": "none"
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Hello."
+ "plain": "Hello.",
+ "startsNewBlock": true
},
{
- "plain": "Bonjour."
+ "plain": "Bonjour.",
+ "startsNewBlock": true
}
]
},
@@ -68,57 +57,46 @@
"utterances": [
{
"language": "en",
- "ssml": "Hello."
+ "ssml": "Hello.",
+ "startsNewBlock": true
},
{
"language": "fr",
- "ssml": "Bonjour."
+ "ssml": "Bonjour.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "language": "en",
- "ssml": "Hello."
- },
- {
- "language": "fr",
- "ssml": "Bonjour."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
+ "language": "none"
},
"utterances": [
{
- "language": "en",
- "ssml": "Hello."
+ "ssml": "Hello.",
+ "startsNewBlock": true
},
{
- "language": "fr",
- "ssml": "Bonjour."
+ "ssml": "Bonjour.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
- "language": "none"
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Hello."
+ "ssml": "Hello.",
+ "startsNewBlock": true
},
{
- "ssml": "Bonjour."
+ "ssml": "Bonjour.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/language-document/utterances.json b/fixtures/language-document/utterances.json
index 85635f6..96ad882 100644
--- a/fixtures/language-document/utterances.json
+++ b/fixtures/language-document/utterances.json
@@ -7,42 +7,33 @@
"utterances": [
{
"language": "fr",
- "plain": "Bonjour, comment allez-vous ?"
+ "plain": "Bonjour, comment allez-vous ?",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "language": "fr",
- "plain": "Bonjour, comment allez-vous ?"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
+ "language": "none"
},
"utterances": [
{
- "language": "fr",
- "plain": "Bonjour, comment allez-vous ?"
+ "plain": "Bonjour, comment allez-vous ?",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "plain",
- "language": "none"
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Bonjour, comment allez-vous ?"
+ "plain": "Bonjour, comment allez-vous ?",
+ "startsNewBlock": true
}
]
},
@@ -53,42 +44,33 @@
"utterances": [
{
"language": "fr",
- "ssml": "Bonjour, comment allez-vous ?"
+ "ssml": "Bonjour, comment allez-vous ?",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "language": "fr",
- "ssml": "Bonjour, comment allez-vous ?"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
+ "language": "none"
},
"utterances": [
{
- "language": "fr",
- "ssml": "Bonjour, comment allez-vous ?"
+ "ssml": "Bonjour, comment allez-vous ?",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
- "language": "none"
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Bonjour, comment allez-vous ?"
+ "ssml": "Bonjour, comment allez-vous ?",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/language-inline-lang-attribute/utterances.json b/fixtures/language-inline-lang-attribute/utterances.json
index 469850c..e018a35 100644
--- a/fixtures/language-inline-lang-attribute/utterances.json
+++ b/fixtures/language-inline-lang-attribute/utterances.json
@@ -7,7 +7,8 @@
"utterances": [
{
"plain": "Hello",
- "language": "en"
+ "language": "en",
+ "startsNewBlock": true
},
{
"plain": "bonjour.",
@@ -18,28 +19,27 @@
{
"options": {
"format": "plain",
- "language": "always"
+ "language": "block-level"
},
"utterances": [
{
- "plain": "Hello",
- "language": "en"
- },
- {
- "plain": "bonjour.",
- "language": "fr"
+ "language": "en",
+ "plain": "Hello bonjour.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "plain",
- "language": "block-level"
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"language": "en",
- "plain": "Hello bonjour."
+ "plain": "Hello bonjour.",
+ "startsNewBlock": true
}
]
},
@@ -50,7 +50,21 @@
},
"utterances": [
{
- "plain": "Hello bonjour."
+ "plain": "Hello bonjour.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Hello bonjour.",
+ "startsNewBlock": true
}
]
},
@@ -61,31 +75,35 @@
"utterances": [
{
"language": "en",
- "ssml": "Hello bonjour."
+ "ssml": "Hello bonjour.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
- "language": "always"
+ "language": "block-level"
},
"utterances": [
{
"language": "en",
- "ssml": "Hello bonjour."
+ "ssml": "Hello bonjour.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
- "language": "block-level"
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"language": "en",
- "ssml": "Hello bonjour."
+ "ssml": "Hello bonjour.",
+ "startsNewBlock": true
}
]
},
@@ -96,7 +114,21 @@
},
"utterances": [
{
- "ssml": "Hello bonjour."
+ "ssml": "Hello bonjour.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Hello bonjour.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/language-inline-nested/utterances.json b/fixtures/language-inline-nested/utterances.json
index 9678464..941cb9a 100644
--- a/fixtures/language-inline-nested/utterances.json
+++ b/fixtures/language-inline-nested/utterances.json
@@ -7,7 +7,8 @@
"utterances": [
{
"plain": "Start",
- "language": "en"
+ "language": "en",
+ "startsNewBlock": true
},
{
"plain": "middle",
@@ -30,40 +31,27 @@
{
"options": {
"format": "plain",
- "language": "always"
+ "language": "block-level"
},
"utterances": [
{
- "plain": "Start",
- "language": "en"
- },
- {
- "plain": "middle",
- "language": "fr"
- },
- {
- "plain": "nested",
- "language": "es"
- },
- {
- "plain": "end",
- "language": "fr"
- },
- {
- "plain": "after.",
- "language": "en"
+ "language": "en",
+ "plain": "Start middle nested end after.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "plain",
- "language": "block-level"
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"language": "en",
- "plain": "Start middle nested end after."
+ "plain": "Start middle nested end after.",
+ "startsNewBlock": true
}
]
},
@@ -74,7 +62,21 @@
},
"utterances": [
{
- "plain": "Start middle nested end after."
+ "plain": "Start middle nested end after.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start middle nested end after.",
+ "startsNewBlock": true
}
]
},
@@ -85,31 +87,35 @@
"utterances": [
{
"language": "en",
- "ssml": "Start middle nested end after."
+ "ssml": "Start middle nested end after.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
- "language": "always"
+ "language": "block-level"
},
"utterances": [
{
"language": "en",
- "ssml": "Start middle nested end after."
+ "ssml": "Start middle nested end after.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
- "language": "block-level"
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"language": "en",
- "ssml": "Start middle nested end after."
+ "ssml": "Start middle nested end after.",
+ "startsNewBlock": true
}
]
},
@@ -120,7 +126,21 @@
},
"utterances": [
{
- "ssml": "Start middle nested end after."
+ "ssml": "Start middle nested end after.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start middle nested end after.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/language-inline-repeated/utterances.json b/fixtures/language-inline-repeated/utterances.json
index 5cbc8aa..78779bf 100644
--- a/fixtures/language-inline-repeated/utterances.json
+++ b/fixtures/language-inline-repeated/utterances.json
@@ -7,7 +7,8 @@
"utterances": [
{
"plain": "One",
- "language": "en"
+ "language": "en",
+ "startsNewBlock": true
},
{
"plain": "deux",
@@ -30,40 +31,27 @@
{
"options": {
"format": "plain",
- "language": "always"
+ "language": "block-level"
},
"utterances": [
{
- "plain": "One",
- "language": "en"
- },
- {
- "plain": "deux",
- "language": "fr"
- },
- {
- "plain": "three",
- "language": "en"
- },
- {
- "plain": "quatre",
- "language": "fr"
- },
- {
- "plain": "five.",
- "language": "en"
+ "language": "en",
+ "plain": "One deux three quatre five.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "plain",
- "language": "block-level"
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"language": "en",
- "plain": "One deux three quatre five."
+ "plain": "One deux three quatre five.",
+ "startsNewBlock": true
}
]
},
@@ -74,7 +62,21 @@
},
"utterances": [
{
- "plain": "One deux three quatre five."
+ "plain": "One deux three quatre five.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "One deux three quatre five.",
+ "startsNewBlock": true
}
]
},
@@ -85,31 +87,35 @@
"utterances": [
{
"language": "en",
- "ssml": "One deux three quatre five."
+ "ssml": "One deux three quatre five.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
- "language": "always"
+ "language": "block-level"
},
"utterances": [
{
"language": "en",
- "ssml": "One deux three quatre five."
+ "ssml": "One deux three quatre five.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
- "language": "block-level"
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"language": "en",
- "ssml": "One deux three quatre five."
+ "ssml": "One deux three quatre five.",
+ "startsNewBlock": true
}
]
},
@@ -120,7 +126,21 @@
},
"utterances": [
{
- "ssml": "One deux three quatre five."
+ "ssml": "One deux three quatre five.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "One deux three quatre five.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/language-inline-two-languages/utterances.json b/fixtures/language-inline-two-languages/utterances.json
index d3f735b..144e8fe 100644
--- a/fixtures/language-inline-two-languages/utterances.json
+++ b/fixtures/language-inline-two-languages/utterances.json
@@ -7,7 +7,8 @@
"utterances": [
{
"plain": "Hello",
- "language": "en"
+ "language": "en",
+ "startsNewBlock": true
},
{
"plain": "bonjour",
@@ -30,40 +31,27 @@
{
"options": {
"format": "plain",
- "language": "always"
+ "language": "block-level"
},
"utterances": [
{
- "plain": "Hello",
- "language": "en"
- },
- {
- "plain": "bonjour",
- "language": "fr"
- },
- {
- "plain": "and",
- "language": "en"
- },
- {
- "plain": "hola",
- "language": "es"
- },
- {
- "plain": "there.",
- "language": "en"
+ "language": "en",
+ "plain": "Hello bonjour and hola there.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "plain",
- "language": "block-level"
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"language": "en",
- "plain": "Hello bonjour and hola there."
+ "plain": "Hello bonjour and hola there.",
+ "startsNewBlock": true
}
]
},
@@ -74,7 +62,21 @@
},
"utterances": [
{
- "plain": "Hello bonjour and hola there."
+ "plain": "Hello bonjour and hola there.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Hello bonjour and hola there.",
+ "startsNewBlock": true
}
]
},
@@ -85,31 +87,35 @@
"utterances": [
{
"language": "en",
- "ssml": "Hello bonjour and hola there."
+ "ssml": "Hello bonjour and hola there.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
- "language": "always"
+ "language": "block-level"
},
"utterances": [
{
"language": "en",
- "ssml": "Hello bonjour and hola there."
+ "ssml": "Hello bonjour and hola there.",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "ssml",
- "language": "block-level"
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"language": "en",
- "ssml": "Hello bonjour and hola there."
+ "ssml": "Hello bonjour and hola there.",
+ "startsNewBlock": true
}
]
},
@@ -120,7 +126,21 @@
},
"utterances": [
{
- "ssml": "Hello bonjour and hola there."
+ "ssml": "Hello bonjour and hola there.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Hello bonjour and hola there.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/list-html-native/utterances.json b/fixtures/list-html-native/utterances.json
index 5fdda46..2f63a10 100644
--- a/fixtures/list-html-native/utterances.json
+++ b/fixtures/list-html-native/utterances.json
@@ -5,132 +5,1648 @@
"format": "plain"
},
"utterances": [
+ {
+ "plain": "First item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
{
"plain": "First item"
},
{
- "plain": "Second item"
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "First item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
},
{
- "plain": "Third item"
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
}
]
},
{
"options": {
- "format": "plain",
- "language": "always"
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "First item"
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "Second item"
+ "ssml": "First item"
},
{
- "plain": "Third item"
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "First item"
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "Second item"
+ "ssml": "First item"
},
{
- "plain": "Third item"
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "First item"
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "Second item"
+ "ssml": "First item"
},
{
- "plain": "Third item"
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "First item"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Second item"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Third item"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
"language": "always"
},
"utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "First item"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Second item"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Third item"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
"language": "block-level"
},
"utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "First item"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Second item"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Third item"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
"language": "none"
},
"utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "First item"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Second item"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Third item"
+ },
+ {
+ "ssml": "End of the list."
}
]
}
diff --git a/fixtures/list-role-aria/utterances.json b/fixtures/list-role-aria/utterances.json
index 5fdda46..2f63a10 100644
--- a/fixtures/list-role-aria/utterances.json
+++ b/fixtures/list-role-aria/utterances.json
@@ -5,132 +5,1648 @@
"format": "plain"
},
"utterances": [
+ {
+ "plain": "First item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "First item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
{
"plain": "First item"
},
{
- "plain": "Second item"
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Second item"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Third item"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "First item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "Second item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
},
{
- "plain": "Third item"
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
}
]
},
{
"options": {
- "format": "plain",
- "language": "always"
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "First item"
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "Second item"
+ "ssml": "First item"
},
{
- "plain": "Third item"
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "First item"
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "Second item"
+ "ssml": "First item"
},
{
- "plain": "Third item"
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "First item"
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "Second item"
+ "ssml": "First item"
},
{
- "plain": "Third item"
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "First item"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Second item"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Third item"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
"language": "always"
},
"utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "First item"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Second item"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Third item"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
"language": "block-level"
},
"utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "First item"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Second item"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Third item"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
"language": "none"
},
"utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "First item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Second item"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Third item"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "First item"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Second item"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Third item"
+ },
+ {
+ "ssml": "End of the list."
}
]
}
diff --git a/fixtures/loa-epub-type/utterances.json b/fixtures/loa-epub-type/utterances.json
index 73f9eef..7fed36e 100644
--- a/fixtures/loa-epub-type/utterances.json
+++ b/fixtures/loa-epub-type/utterances.json
@@ -4,15 +4,35 @@
"options": {
"format": "plain"
},
+ "utterances": [
+ {
+ "plain": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa"
+ ]
+ },
"utterances": [
{
"plain": "Start of the list of audio clips."
},
{
- "plain": "Audio 1. Foghorn recording"
+ "plain": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
},
{
- "plain": "Audio 2. Keeper's log reading"
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
},
{
"plain": "End of the list of audio clips."
@@ -22,40 +42,73 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"loa"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "loa"
+ ],
+ "language": "always"
},
"utterances": [
{
- "plain": "Audio 1. Foghorn recording"
+ "plain": "Start of the list of audio clips."
},
{
- "plain": "Audio 2. Keeper's log reading"
+ "plain": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list of audio clips."
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "loa"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "Start of the list of audio clips."
},
{
- "plain": "Audio 1. Foghorn recording"
+ "plain": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
},
{
- "plain": "Audio 2. Keeper's log reading"
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
},
{
"plain": "End of the list of audio clips."
@@ -65,6 +118,9 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "loa"
+ ],
"language": "block-level"
},
"utterances": [
@@ -72,10 +128,12 @@
"plain": "Start of the list of audio clips."
},
{
- "plain": "Audio 1. Foghorn recording"
+ "plain": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
},
{
- "plain": "Audio 2. Keeper's log reading"
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
},
{
"plain": "End of the list of audio clips."
@@ -85,17 +143,23 @@
{
"options": {
"format": "plain",
- "language": "none"
+ "contextualize": [
+ "loa"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "Start of the list of audio clips."
},
{
- "plain": "Audio 1. Foghorn recording"
+ "plain": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
},
{
- "plain": "Audio 2. Keeper's log reading"
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
},
{
"plain": "End of the list of audio clips."
@@ -104,105 +168,4983 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "loa"
+ ],
+ "language": "none"
},
"utterances": [
{
- "ssml": "Start of the list of audio clips."
+ "plain": "Start of the list of audio clips."
},
{
- "ssml": "Audio 1. Foghorn recording"
+ "plain": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
},
{
- "ssml": "Audio 2. Keeper's log reading"
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
},
{
- "ssml": "End of the list of audio clips."
+ "plain": "End of the list of audio clips."
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
+ "format": "plain",
+ "contextualize": [
"loa"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
]
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Audio 1. Foghorn recording"
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Audio 2. Keeper's log reading"
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the list of audio clips."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Audio 1. Foghorn recording"
+ "plain": "Audio 1. Foghorn recording"
},
{
- "ssml": "Audio 2. Keeper's log reading"
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
},
{
- "ssml": "End of the list of audio clips."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the list of audio clips."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Audio 1. Foghorn recording"
+ "plain": "Audio 1. Foghorn recording"
},
{
- "ssml": "Audio 2. Keeper's log reading"
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
},
{
- "ssml": "End of the list of audio clips."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the list of audio clips."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Audio 1. Foghorn recording"
+ "plain": "Audio 1. Foghorn recording"
},
{
- "ssml": "Audio 2. Keeper's log reading"
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
},
{
- "ssml": "End of the list of audio clips."
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of audio clips."
}
]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of audio clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Audio 1. Foghorn recording"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Audio 2. Keeper's log reading"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of audio clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Audio 1. Foghorn recording"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Audio 2. Keeper's log reading"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of audio clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loa"
+ ],
+ "contextualize": [
+ "loa",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/loi-epub-type/utterances.json b/fixtures/loi-epub-type/utterances.json
index ad67192..0f7640d 100644
--- a/fixtures/loi-epub-type/utterances.json
+++ b/fixtures/loi-epub-type/utterances.json
@@ -4,15 +4,35 @@
"options": {
"format": "plain"
},
+ "utterances": [
+ {
+ "plain": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi"
+ ]
+ },
"utterances": [
{
"plain": "Start of the list of illustrations."
},
{
- "plain": "Figure 1. Lighthouse cross-section"
+ "plain": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
},
{
- "plain": "Figure 2. Fresnel lens diagram"
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
},
{
"plain": "End of the list of illustrations."
@@ -22,40 +42,73 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"loi"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "loi"
+ ],
+ "language": "always"
},
"utterances": [
{
- "plain": "Figure 1. Lighthouse cross-section"
+ "plain": "Start of the list of illustrations."
},
{
- "plain": "Figure 2. Fresnel lens diagram"
+ "plain": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list of illustrations."
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "loi"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "Start of the list of illustrations."
},
{
- "plain": "Figure 1. Lighthouse cross-section"
+ "plain": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
},
{
- "plain": "Figure 2. Fresnel lens diagram"
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
},
{
"plain": "End of the list of illustrations."
@@ -65,6 +118,9 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "loi"
+ ],
"language": "block-level"
},
"utterances": [
@@ -72,10 +128,12 @@
"plain": "Start of the list of illustrations."
},
{
- "plain": "Figure 1. Lighthouse cross-section"
+ "plain": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
},
{
- "plain": "Figure 2. Fresnel lens diagram"
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
},
{
"plain": "End of the list of illustrations."
@@ -85,17 +143,23 @@
{
"options": {
"format": "plain",
- "language": "none"
+ "contextualize": [
+ "loi"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "Start of the list of illustrations."
},
{
- "plain": "Figure 1. Lighthouse cross-section"
+ "plain": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
},
{
- "plain": "Figure 2. Fresnel lens diagram"
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
},
{
"plain": "End of the list of illustrations."
@@ -104,105 +168,4983 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "loi"
+ ],
+ "language": "none"
},
"utterances": [
{
- "ssml": "Start of the list of illustrations."
+ "plain": "Start of the list of illustrations."
},
{
- "ssml": "Figure 1. Lighthouse cross-section"
+ "plain": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
},
{
- "ssml": "Figure 2. Fresnel lens diagram"
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
},
{
- "ssml": "End of the list of illustrations."
+ "plain": "End of the list of illustrations."
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
+ "format": "plain",
+ "contextualize": [
"loi"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
]
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Figure 1. Lighthouse cross-section"
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Figure 2. Fresnel lens diagram"
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the list of illustrations."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Figure 1. Lighthouse cross-section"
+ "plain": "Figure 1. Lighthouse cross-section"
},
{
- "ssml": "Figure 2. Fresnel lens diagram"
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
},
{
- "ssml": "End of the list of illustrations."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the list of illustrations."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Figure 1. Lighthouse cross-section"
+ "plain": "Figure 1. Lighthouse cross-section"
},
{
- "ssml": "Figure 2. Fresnel lens diagram"
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
},
{
- "ssml": "End of the list of illustrations."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the list of illustrations."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Figure 1. Lighthouse cross-section"
+ "plain": "Figure 1. Lighthouse cross-section"
},
{
- "ssml": "Figure 2. Fresnel lens diagram"
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
},
{
- "ssml": "End of the list of illustrations."
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of illustrations."
}
]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of illustrations."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of illustrations."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Figure 1. Lighthouse cross-section"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Figure 2. Fresnel lens diagram"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of illustrations."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "loi"
+ ],
+ "contextualize": [
+ "loi",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/lot-epub-type/utterances.json b/fixtures/lot-epub-type/utterances.json
index 14c6e67..ca5d3bf 100644
--- a/fixtures/lot-epub-type/utterances.json
+++ b/fixtures/lot-epub-type/utterances.json
@@ -4,15 +4,35 @@
"options": {
"format": "plain"
},
+ "utterances": [
+ {
+ "plain": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot"
+ ]
+ },
"utterances": [
{
"plain": "Start of the list of tables."
},
{
- "plain": "Table 1. Lighthouse construction dates"
+ "plain": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
},
{
- "plain": "Table 2. Keeper staffing by decade"
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
},
{
"plain": "End of the list of tables."
@@ -22,40 +42,73 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"lot"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "lot"
+ ],
+ "language": "always"
},
"utterances": [
{
- "plain": "Table 1. Lighthouse construction dates"
+ "plain": "Start of the list of tables."
},
{
- "plain": "Table 2. Keeper staffing by decade"
+ "plain": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list of tables."
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "lot"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "Start of the list of tables."
},
{
- "plain": "Table 1. Lighthouse construction dates"
+ "plain": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
},
{
- "plain": "Table 2. Keeper staffing by decade"
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
},
{
"plain": "End of the list of tables."
@@ -65,6 +118,9 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "lot"
+ ],
"language": "block-level"
},
"utterances": [
@@ -72,10 +128,12 @@
"plain": "Start of the list of tables."
},
{
- "plain": "Table 1. Lighthouse construction dates"
+ "plain": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
},
{
- "plain": "Table 2. Keeper staffing by decade"
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
},
{
"plain": "End of the list of tables."
@@ -85,17 +143,23 @@
{
"options": {
"format": "plain",
- "language": "none"
+ "contextualize": [
+ "lot"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "Start of the list of tables."
},
{
- "plain": "Table 1. Lighthouse construction dates"
+ "plain": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
},
{
- "plain": "Table 2. Keeper staffing by decade"
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
},
{
"plain": "End of the list of tables."
@@ -104,105 +168,4983 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "lot"
+ ],
+ "language": "none"
},
"utterances": [
{
- "ssml": "Start of the list of tables."
+ "plain": "Start of the list of tables."
},
{
- "ssml": "Table 1. Lighthouse construction dates"
+ "plain": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
},
{
- "ssml": "Table 2. Keeper staffing by decade"
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
},
{
- "ssml": "End of the list of tables."
+ "plain": "End of the list of tables."
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
+ "format": "plain",
+ "contextualize": [
"lot"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
]
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Table 1. Lighthouse construction dates"
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Table 2. Keeper staffing by decade"
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the list of tables."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Table 1. Lighthouse construction dates"
+ "plain": "Table 1. Lighthouse construction dates"
},
{
- "ssml": "Table 2. Keeper staffing by decade"
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
},
{
- "ssml": "End of the list of tables."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the list of tables."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Table 1. Lighthouse construction dates"
+ "plain": "Table 1. Lighthouse construction dates"
},
{
- "ssml": "Table 2. Keeper staffing by decade"
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
},
{
- "ssml": "End of the list of tables."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the list of tables."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Table 1. Lighthouse construction dates"
+ "plain": "Table 1. Lighthouse construction dates"
},
{
- "ssml": "Table 2. Keeper staffing by decade"
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
},
{
- "ssml": "End of the list of tables."
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of tables."
}
]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of tables."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of tables."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Table 1. Lighthouse construction dates"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Table 2. Keeper staffing by decade"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of tables."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lot"
+ ],
+ "contextualize": [
+ "lot",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/lov-epub-type/utterances.json b/fixtures/lov-epub-type/utterances.json
index 838cdb0..b0600e2 100644
--- a/fixtures/lov-epub-type/utterances.json
+++ b/fixtures/lov-epub-type/utterances.json
@@ -4,15 +4,35 @@
"options": {
"format": "plain"
},
+ "utterances": [
+ {
+ "plain": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov"
+ ]
+ },
"utterances": [
{
"plain": "Start of the list of video clips."
},
{
- "plain": "Video 1. Lamp mechanism in motion"
+ "plain": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
},
{
- "plain": "Video 2. Automation retrofit"
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
},
{
"plain": "End of the list of video clips."
@@ -22,40 +42,73 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"lov"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "lov"
+ ],
+ "language": "always"
},
"utterances": [
{
- "plain": "Video 1. Lamp mechanism in motion"
+ "plain": "Start of the list of video clips."
},
{
- "plain": "Video 2. Automation retrofit"
+ "plain": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list of video clips."
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "lov"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "Start of the list of video clips."
},
{
- "plain": "Video 1. Lamp mechanism in motion"
+ "plain": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
},
{
- "plain": "Video 2. Automation retrofit"
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
},
{
"plain": "End of the list of video clips."
@@ -65,6 +118,9 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "lov"
+ ],
"language": "block-level"
},
"utterances": [
@@ -72,10 +128,12 @@
"plain": "Start of the list of video clips."
},
{
- "plain": "Video 1. Lamp mechanism in motion"
+ "plain": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
},
{
- "plain": "Video 2. Automation retrofit"
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
},
{
"plain": "End of the list of video clips."
@@ -85,17 +143,23 @@
{
"options": {
"format": "plain",
- "language": "none"
+ "contextualize": [
+ "lov"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "Start of the list of video clips."
},
{
- "plain": "Video 1. Lamp mechanism in motion"
+ "plain": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
},
{
- "plain": "Video 2. Automation retrofit"
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
},
{
"plain": "End of the list of video clips."
@@ -104,105 +168,4983 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "lov"
+ ],
+ "language": "none"
},
"utterances": [
{
- "ssml": "Start of the list of video clips."
+ "plain": "Start of the list of video clips."
},
{
- "ssml": "Video 1. Lamp mechanism in motion"
+ "plain": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
},
{
- "ssml": "Video 2. Automation retrofit"
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
},
{
- "ssml": "End of the list of video clips."
+ "plain": "End of the list of video clips."
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
+ "format": "plain",
+ "contextualize": [
"lov"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
]
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Video 1. Lamp mechanism in motion"
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Video 2. Automation retrofit"
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the list of video clips."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Video 1. Lamp mechanism in motion"
+ "plain": "Video 1. Lamp mechanism in motion"
},
{
- "ssml": "Video 2. Automation retrofit"
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
},
{
- "ssml": "End of the list of video clips."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the list of video clips."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Video 1. Lamp mechanism in motion"
+ "plain": "Video 1. Lamp mechanism in motion"
},
{
- "ssml": "Video 2. Automation retrofit"
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
},
{
- "ssml": "End of the list of video clips."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the list of video clips."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Video 1. Lamp mechanism in motion"
+ "plain": "Video 1. Lamp mechanism in motion"
},
{
- "ssml": "Video 2. Automation retrofit"
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
},
{
- "ssml": "End of the list of video clips."
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of video clips."
}
]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list of video clips."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Video 2. Automation retrofit"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "Video 2. Automation retrofit",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list of video clips."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Video 1. Lamp mechanism in motion"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Video 2. Automation retrofit"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the list of video clips."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "lov"
+ ],
+ "contextualize": [
+ "lov",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/main-html-native/utterances.json b/fixtures/main-html-native/utterances.json
index 72cffa6..3268028 100644
--- a/fixtures/main-html-native/utterances.json
+++ b/fixtures/main-html-native/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "The central topic of this document."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "The central topic of this document."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "The central topic of this document."
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "The central topic of this document."
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "The central topic of this document."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "The central topic of this document."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "The central topic of this document."
- }
- ]
}
]
}
diff --git a/fixtures/main-role-aria/utterances.json b/fixtures/main-role-aria/utterances.json
index 72cffa6..3268028 100644
--- a/fixtures/main-role-aria/utterances.json
+++ b/fixtures/main-role-aria/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "The central topic of this document."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "The central topic of this document."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "The central topic of this document."
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "The central topic of this document."
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "The central topic of this document."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "The central topic of this document."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "The central topic of this document."
- }
- ]
}
]
}
diff --git a/fixtures/math-html-native/utterances.json b/fixtures/math-html-native/utterances.json
index 6fb548f..716e2fa 100644
--- a/fixtures/math-html-native/utterances.json
+++ b/fixtures/math-html-native/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "x squared plus y squared equals z squared"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "x squared plus y squared equals z squared"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "x squared plus y squared equals z squared"
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "x squared plus y squared equals z squared"
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "x squared plus y squared equals z squared"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "x squared plus y squared equals z squared"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "x squared plus y squared equals z squared"
- }
- ]
}
]
}
diff --git a/fixtures/math-role-aria/utterances.json b/fixtures/math-role-aria/utterances.json
index 6fb548f..716e2fa 100644
--- a/fixtures/math-role-aria/utterances.json
+++ b/fixtures/math-role-aria/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "x squared plus y squared equals z squared"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "x squared plus y squared equals z squared"
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "x squared plus y squared equals z squared"
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "x squared plus y squared equals z squared"
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "x squared plus y squared equals z squared"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "x squared plus y squared equals z squared"
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "x squared plus y squared equals z squared"
- }
- ]
}
]
}
diff --git a/fixtures/navigation-html-native/utterances.json b/fixtures/navigation-html-native/utterances.json
index dc957b5..5e03c0e 100644
--- a/fixtures/navigation-html-native/utterances.json
+++ b/fixtures/navigation-html-native/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "Link to the next chapter."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "Link to the next chapter."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "Link to the next chapter."
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "Link to the next chapter."
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "Link to the next chapter."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "Link to the next chapter."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "Link to the next chapter."
- }
- ]
}
]
}
diff --git a/fixtures/navigation-role-aria/utterances.json b/fixtures/navigation-role-aria/utterances.json
index dc957b5..5e03c0e 100644
--- a/fixtures/navigation-role-aria/utterances.json
+++ b/fixtures/navigation-role-aria/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "Link to the next chapter."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "Link to the next chapter."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "Link to the next chapter."
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "Link to the next chapter."
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "Link to the next chapter."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "Link to the next chapter."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "Link to the next chapter."
- }
- ]
}
]
}
diff --git a/fixtures/noteref-role-aria/utterances.json b/fixtures/noteref-role-aria/utterances.json
index 01f4801..1ba16cc 100644
--- a/fixtures/noteref-role-aria/utterances.json
+++ b/fixtures/noteref-role-aria/utterances.json
@@ -6,71 +6,11 @@
},
"utterances": []
},
- {
- "options": {
- "format": "plain",
- "skip": [
- "noteref"
- ]
- },
- "utterances": []
- },
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": []
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": []
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": []
- },
{
"options": {
"format": "ssml"
},
"utterances": []
- },
- {
- "options": {
- "format": "ssml",
- "skip": [
- "noteref"
- ]
- },
- "utterances": []
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": []
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": []
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": []
}
]
}
diff --git a/fixtures/notice-epub-type/utterances.json b/fixtures/notice-epub-type/utterances.json
index 482fbf8..bc3dcb4 100644
--- a/fixtures/notice-epub-type/utterances.json
+++ b/fixtures/notice-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Notice."
+ "plain": "Caution: the tower stairs are uneven.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "notice"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Notice.",
+ "startsNewBlock": true
},
{
"plain": "Caution: the tower stairs are uneven."
@@ -16,9 +31,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "notice"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Notice.",
+ "startsNewBlock": true
+ },
{
"plain": "Caution: the tower stairs are uneven."
}
@@ -27,11 +49,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "notice"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Notice."
+ "plain": "Notice.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Caution: the tower stairs are uneven."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "notice"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Notice.",
+ "startsNewBlock": true
},
{
"plain": "Caution: the tower stairs are uneven."
@@ -41,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "notice"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Notice."
+ "plain": "Notice.",
+ "startsNewBlock": true
},
{
"plain": "Caution: the tower stairs are uneven."
@@ -55,11 +104,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "notice"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Notice.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Caution: the tower stairs are uneven."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "notice"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Notice."
+ "plain": "Notice.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Caution: the tower stairs are uneven."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "notice"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Notice.",
+ "startsNewBlock": true
},
{
"plain": "Caution: the tower stairs are uneven."
@@ -72,7 +163,22 @@
},
"utterances": [
{
- "ssml": "Notice."
+ "ssml": "Caution: the tower stairs are uneven.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "notice"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Notice.",
+ "startsNewBlock": true
},
{
"ssml": "Caution: the tower stairs are uneven."
@@ -82,9 +188,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "notice"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Notice.",
+ "startsNewBlock": true
+ },
{
"ssml": "Caution: the tower stairs are uneven."
}
@@ -93,11 +206,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "notice"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Notice."
+ "ssml": "Notice.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Caution: the tower stairs are uneven."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "notice"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Notice.",
+ "startsNewBlock": true
},
{
"ssml": "Caution: the tower stairs are uneven."
@@ -107,11 +243,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "notice"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Notice."
+ "ssml": "Notice.",
+ "startsNewBlock": true
},
{
"ssml": "Caution: the tower stairs are uneven."
@@ -121,11 +261,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "notice"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Notice.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Caution: the tower stairs are uneven."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "notice"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Notice."
+ "ssml": "Notice.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Caution: the tower stairs are uneven."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "notice"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Notice.",
+ "startsNewBlock": true
},
{
"ssml": "Caution: the tower stairs are uneven."
diff --git a/fixtures/notice-role-aria/utterances.json b/fixtures/notice-role-aria/utterances.json
index 482fbf8..bc3dcb4 100644
--- a/fixtures/notice-role-aria/utterances.json
+++ b/fixtures/notice-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Notice."
+ "plain": "Caution: the tower stairs are uneven.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "notice"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Notice.",
+ "startsNewBlock": true
},
{
"plain": "Caution: the tower stairs are uneven."
@@ -16,9 +31,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "notice"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Notice.",
+ "startsNewBlock": true
+ },
{
"plain": "Caution: the tower stairs are uneven."
}
@@ -27,11 +49,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "notice"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Notice."
+ "plain": "Notice.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Caution: the tower stairs are uneven."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "notice"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Notice.",
+ "startsNewBlock": true
},
{
"plain": "Caution: the tower stairs are uneven."
@@ -41,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "notice"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Notice."
+ "plain": "Notice.",
+ "startsNewBlock": true
},
{
"plain": "Caution: the tower stairs are uneven."
@@ -55,11 +104,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "notice"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Notice.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Caution: the tower stairs are uneven."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "notice"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Notice."
+ "plain": "Notice.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Caution: the tower stairs are uneven."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "notice"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Notice.",
+ "startsNewBlock": true
},
{
"plain": "Caution: the tower stairs are uneven."
@@ -72,7 +163,22 @@
},
"utterances": [
{
- "ssml": "Notice."
+ "ssml": "Caution: the tower stairs are uneven.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "notice"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Notice.",
+ "startsNewBlock": true
},
{
"ssml": "Caution: the tower stairs are uneven."
@@ -82,9 +188,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "notice"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Notice.",
+ "startsNewBlock": true
+ },
{
"ssml": "Caution: the tower stairs are uneven."
}
@@ -93,11 +206,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "notice"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Notice."
+ "ssml": "Notice.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Caution: the tower stairs are uneven."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "notice"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Notice.",
+ "startsNewBlock": true
},
{
"ssml": "Caution: the tower stairs are uneven."
@@ -107,11 +243,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "notice"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Notice."
+ "ssml": "Notice.",
+ "startsNewBlock": true
},
{
"ssml": "Caution: the tower stairs are uneven."
@@ -121,11 +261,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "notice"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Notice.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Caution: the tower stairs are uneven."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "notice"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Notice."
+ "ssml": "Notice.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Caution: the tower stairs are uneven."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "notice"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Notice.",
+ "startsNewBlock": true
},
{
"ssml": "Caution: the tower stairs are uneven."
diff --git a/fixtures/pagebreak-epub-type/utterances.json b/fixtures/pagebreak-epub-type/utterances.json
index 0f3c1af..83bced8 100644
--- a/fixtures/pagebreak-epub-type/utterances.json
+++ b/fixtures/pagebreak-epub-type/utterances.json
@@ -6,43 +6,80 @@
},
"utterances": [
{
- "plain": "Pagebreak. 4."
+ "plain": "4"
},
{
"language": "en",
- "plain": "And the next pagebreak is in the middle of a sentence."
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
},
{
- "plain": "Pagebreak. 5."
+ "plain": "5"
}
]
},
{
"options": {
"format": "plain",
- "skip": [
- "pagebreak"
- ]
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "4"
+ },
+ {
+ "plain": "And the next pagebreak is in the middle 5 of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
+ "plain": "4"
+ },
+ {
+ "plain": "And the next pagebreak is in the middle 5 of a sentence.",
"language": "en",
- "plain": "And the next pagebreak is in the middle of a sentence."
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "4"
},
{
+ "plain": "And the next pagebreak is in the middle 5 of a sentence.",
"language": "en",
- "plain": "And the next pagebreak is in the middle of a sentence."
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "4"
+ },
+ {
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
},
{
"plain": "5"
@@ -52,7 +89,47 @@
{
"options": {
"format": "plain",
- "interruptSentence": true
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "4"
+ },
+ {
+ "plain": "And the next pagebreak is in the middle 5 of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagebreak"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Pagebreak. 4."
+ },
+ {
+ "language": "en",
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Pagebreak. 5."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
@@ -60,13 +137,17 @@
},
{
"plain": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
- "language": "en"
+ "language": "en",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "pagebreak"
+ ],
"language": "always"
},
"utterances": [
@@ -75,7 +156,8 @@
},
{
"language": "en",
- "plain": "And the next pagebreak is in the middle of a sentence."
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
},
{
"plain": "Pagebreak. 5."
@@ -85,6 +167,29 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Pagebreak. 4."
+ },
+ {
+ "plain": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagebreak"
+ ],
"language": "block-level"
},
"utterances": [
@@ -93,7 +198,8 @@
},
{
"language": "en",
- "plain": "And the next pagebreak is in the middle of a sentence."
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
},
{
"plain": "Pagebreak. 5."
@@ -103,6 +209,29 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Pagebreak. 4."
+ },
+ {
+ "plain": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagebreak"
+ ],
"language": "none"
},
"utterances": [
@@ -110,7 +239,8 @@
"plain": "Pagebreak. 4."
},
{
- "plain": "And the next pagebreak is in the middle of a sentence."
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
},
{
"plain": "Pagebreak. 5."
@@ -119,24 +249,26 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Pagebreak. 4."
- },
- {
- "language": "en",
- "ssml": "And the next pagebreak is in the middle of a sentence."
+ "plain": "Pagebreak. 4."
},
{
- "ssml": "Pagebreak. 5."
+ "plain": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
"skip": [
"pagebreak"
]
@@ -144,93 +276,819 @@
"utterances": [
{
"language": "en",
- "ssml": "And the next pagebreak is in the middle of a sentence."
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "4"
- },
- {
+ "plain": "And the next pagebreak is in the middle of a sentence.",
"language": "en",
- "ssml": "And the next pagebreak is in the middle of a sentence."
- },
- {
- "ssml": "5"
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
- "interruptSentence": true
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "always"
},
"utterances": [
{
- "ssml": "Pagebreak. 4."
- },
+ "language": "en",
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
{
- "ssml": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
- "language": "en"
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
- "language": "always"
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "block-level"
},
"utterances": [
{
- "ssml": "Pagebreak. 4."
- },
+ "language": "en",
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
{
+ "plain": "And the next pagebreak is in the middle of a sentence.",
"language": "en",
- "ssml": "And the next pagebreak is in the middle of a sentence."
- },
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "none"
+ },
+ "utterances": [
{
- "ssml": "Pagebreak. 5."
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
- "language": "block-level"
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Pagebreak. 4."
- },
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ]
+ },
+ "utterances": [
{
"language": "en",
- "ssml": "And the next pagebreak is in the middle of a sentence."
- },
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
{
- "ssml": "Pagebreak. 5."
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
- "language": "none"
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "always"
},
"utterances": [
{
- "ssml": "Pagebreak. 4."
- },
+ "language": "en",
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
{
- "ssml": "And the next pagebreak is in the middle of a sentence."
- },
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
{
- "ssml": "Pagebreak. 5."
+ "language": "en",
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "4"
+ },
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "5"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "4"
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle 5 of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "4"
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle 5 of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "4"
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle 5 of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "4"
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "5"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "4"
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle 5 of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagebreak"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Pagebreak. 4."
+ },
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Pagebreak. 5."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Pagebreak. 4."
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Pagebreak. 4."
+ },
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Pagebreak. 5."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Pagebreak. 4."
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Pagebreak. 4."
+ },
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Pagebreak. 5."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Pagebreak. 4."
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Pagebreak. 4."
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Pagebreak. 5."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Pagebreak. 4."
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/pagebreak-role-aria/utterances.json b/fixtures/pagebreak-role-aria/utterances.json
index 0f3c1af..83bced8 100644
--- a/fixtures/pagebreak-role-aria/utterances.json
+++ b/fixtures/pagebreak-role-aria/utterances.json
@@ -6,43 +6,80 @@
},
"utterances": [
{
- "plain": "Pagebreak. 4."
+ "plain": "4"
},
{
"language": "en",
- "plain": "And the next pagebreak is in the middle of a sentence."
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
},
{
- "plain": "Pagebreak. 5."
+ "plain": "5"
}
]
},
{
"options": {
"format": "plain",
- "skip": [
- "pagebreak"
- ]
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "4"
+ },
+ {
+ "plain": "And the next pagebreak is in the middle 5 of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
+ "plain": "4"
+ },
+ {
+ "plain": "And the next pagebreak is in the middle 5 of a sentence.",
"language": "en",
- "plain": "And the next pagebreak is in the middle of a sentence."
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "4"
},
{
+ "plain": "And the next pagebreak is in the middle 5 of a sentence.",
"language": "en",
- "plain": "And the next pagebreak is in the middle of a sentence."
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "4"
+ },
+ {
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
},
{
"plain": "5"
@@ -52,7 +89,47 @@
{
"options": {
"format": "plain",
- "interruptSentence": true
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "4"
+ },
+ {
+ "plain": "And the next pagebreak is in the middle 5 of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagebreak"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Pagebreak. 4."
+ },
+ {
+ "language": "en",
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Pagebreak. 5."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
@@ -60,13 +137,17 @@
},
{
"plain": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
- "language": "en"
+ "language": "en",
+ "startsNewBlock": true
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "pagebreak"
+ ],
"language": "always"
},
"utterances": [
@@ -75,7 +156,8 @@
},
{
"language": "en",
- "plain": "And the next pagebreak is in the middle of a sentence."
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
},
{
"plain": "Pagebreak. 5."
@@ -85,6 +167,29 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Pagebreak. 4."
+ },
+ {
+ "plain": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagebreak"
+ ],
"language": "block-level"
},
"utterances": [
@@ -93,7 +198,8 @@
},
{
"language": "en",
- "plain": "And the next pagebreak is in the middle of a sentence."
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
},
{
"plain": "Pagebreak. 5."
@@ -103,6 +209,29 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Pagebreak. 4."
+ },
+ {
+ "plain": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagebreak"
+ ],
"language": "none"
},
"utterances": [
@@ -110,7 +239,8 @@
"plain": "Pagebreak. 4."
},
{
- "plain": "And the next pagebreak is in the middle of a sentence."
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
},
{
"plain": "Pagebreak. 5."
@@ -119,24 +249,26 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Pagebreak. 4."
- },
- {
- "language": "en",
- "ssml": "And the next pagebreak is in the middle of a sentence."
+ "plain": "Pagebreak. 4."
},
{
- "ssml": "Pagebreak. 5."
+ "plain": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
"skip": [
"pagebreak"
]
@@ -144,93 +276,819 @@
"utterances": [
{
"language": "en",
- "ssml": "And the next pagebreak is in the middle of a sentence."
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "4"
- },
- {
+ "plain": "And the next pagebreak is in the middle of a sentence.",
"language": "en",
- "ssml": "And the next pagebreak is in the middle of a sentence."
- },
- {
- "ssml": "5"
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
- "interruptSentence": true
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "always"
},
"utterances": [
{
- "ssml": "Pagebreak. 4."
- },
+ "language": "en",
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
{
- "ssml": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
- "language": "en"
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
- "language": "always"
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "block-level"
},
"utterances": [
{
- "ssml": "Pagebreak. 4."
- },
+ "language": "en",
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
{
+ "plain": "And the next pagebreak is in the middle of a sentence.",
"language": "en",
- "ssml": "And the next pagebreak is in the middle of a sentence."
- },
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "none"
+ },
+ "utterances": [
{
- "ssml": "Pagebreak. 5."
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
- "language": "block-level"
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Pagebreak. 4."
- },
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ]
+ },
+ "utterances": [
{
"language": "en",
- "ssml": "And the next pagebreak is in the middle of a sentence."
- },
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
{
- "ssml": "Pagebreak. 5."
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "ssml",
- "language": "none"
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "always"
},
"utterances": [
{
- "ssml": "Pagebreak. 4."
- },
+ "language": "en",
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
{
- "ssml": "And the next pagebreak is in the middle of a sentence."
- },
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
{
- "ssml": "Pagebreak. 5."
+ "language": "en",
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "4"
+ },
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "5"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "4"
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle 5 of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "4"
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle 5 of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "4"
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle 5 of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "4"
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "5"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "4"
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle 5 of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagebreak"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Pagebreak. 4."
+ },
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Pagebreak. 5."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Pagebreak. 4."
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Pagebreak. 4."
+ },
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Pagebreak. 5."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Pagebreak. 4."
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Pagebreak. 4."
+ },
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Pagebreak. 5."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Pagebreak. 4."
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Pagebreak. 4."
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Pagebreak. 5."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Pagebreak. 4."
+ },
+ {
+ "ssml": "And the next pagebreak is in the middle Pagebreak. 5. of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ]
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "language": "en",
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "language": "en",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pagebreak"
+ ],
+ "contextualize": [
+ "pagebreak"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "And the next pagebreak is in the middle of a sentence.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/pagelist-epub-type/utterances.json b/fixtures/pagelist-epub-type/utterances.json
index 2c25156..4d4c7ca 100644
--- a/fixtures/pagelist-epub-type/utterances.json
+++ b/fixtures/pagelist-epub-type/utterances.json
@@ -4,127 +4,3738 @@
"options": {
"format": "plain"
},
+ "utterances": [
+ {
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
"utterances": [
{
"plain": "Start of the page list."
},
{
- "plain": "Page 1"
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
},
{
- "plain": "Page 2"
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "Page 3"
+ "ssml": "Page 3"
},
{
- "plain": "End of the page list."
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
- "contextualize": false
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Page 1"
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Page 2"
+ "ssml": "List item."
},
{
- "plain": "Page 3"
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
- "language": "always"
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
},
"utterances": [
{
- "plain": "Start of the page list."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Page 1"
+ "ssml": "List item."
},
{
- "plain": "Page 2"
+ "ssml": "Page 1"
},
{
- "plain": "Page 3"
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "End of the page list."
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
- "language": "block-level"
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the page list."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Page 1"
+ "ssml": "List item."
},
{
- "plain": "Page 2"
+ "ssml": "Page 1"
},
{
- "plain": "Page 3"
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "End of the page list."
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the page list."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Page 1"
+ "ssml": "List item."
},
{
- "plain": "Page 2"
+ "ssml": "Page 1"
},
{
- "plain": "Page 3"
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "End of the page list."
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ]
},
"utterances": [
{
"ssml": "Start of the page list."
},
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Page 1"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 2"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 3"
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the page list."
}
@@ -133,38 +3744,137 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Page 1"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 2"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
"language": "always"
},
"utterances": [
{
"ssml": "Start of the page list."
},
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Page 1"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 2"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 3"
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the page list."
}
@@ -173,21 +3883,91 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
"language": "block-level"
},
"utterances": [
{
"ssml": "Start of the page list."
},
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Page 1"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 2"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 3"
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the page list."
}
@@ -196,21 +3976,91 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
"language": "none"
},
"utterances": [
{
"ssml": "Start of the page list."
},
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Page 1"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 2"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 3"
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the page list."
}
diff --git a/fixtures/pagelist-role-aria/utterances.json b/fixtures/pagelist-role-aria/utterances.json
index 2c25156..4d4c7ca 100644
--- a/fixtures/pagelist-role-aria/utterances.json
+++ b/fixtures/pagelist-role-aria/utterances.json
@@ -4,127 +4,3738 @@
"options": {
"format": "plain"
},
+ "utterances": [
+ {
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
"utterances": [
{
"plain": "Start of the page list."
},
{
- "plain": "Page 1"
+ "plain": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the page list."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Page 1"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 2"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Page 3"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Page 1",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "Page 2",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
},
{
- "plain": "Page 2"
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "Page 3"
+ "ssml": "Page 3"
},
{
- "plain": "End of the page list."
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
- "contextualize": false
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Page 1"
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Page 2"
+ "ssml": "List item."
},
{
- "plain": "Page 3"
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
- "language": "always"
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
},
"utterances": [
{
- "plain": "Start of the page list."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Page 1"
+ "ssml": "List item."
},
{
- "plain": "Page 2"
+ "ssml": "Page 1"
},
{
- "plain": "Page 3"
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "End of the page list."
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
- "language": "block-level"
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the page list."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Page 1"
+ "ssml": "List item."
},
{
- "plain": "Page 2"
+ "ssml": "Page 1"
},
{
- "plain": "Page 3"
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "End of the page list."
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the page list."
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
},
{
- "plain": "Page 1"
+ "ssml": "List item."
},
{
- "plain": "Page 2"
+ "ssml": "Page 1"
},
{
- "plain": "Page 3"
+ "ssml": "List item.",
+ "startsNewBlock": true
},
{
- "plain": "End of the page list."
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ]
},
"utterances": [
{
"ssml": "Start of the page list."
},
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Page 1"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 2"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 3"
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the page list."
}
@@ -133,38 +3744,137 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Page 1"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 2"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
"language": "always"
},
"utterances": [
{
"ssml": "Start of the page list."
},
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Page 1"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 2"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 3"
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the page list."
}
@@ -173,21 +3883,91 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
"language": "block-level"
},
"utterances": [
{
"ssml": "Start of the page list."
},
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Page 1"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 2"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 3"
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the page list."
}
@@ -196,21 +3976,91 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
"language": "none"
},
"utterances": [
{
"ssml": "Start of the page list."
},
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Page 1"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 2"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Page 3"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the page list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pagelist",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the page list."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
{
"ssml": "Page 1"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 2"
},
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
{
"ssml": "Page 3"
},
+ {
+ "ssml": "End of the list."
+ },
{
"ssml": "End of the page list."
}
diff --git a/fixtures/paragraph-basic/utterances.json b/fixtures/paragraph-basic/utterances.json
index 3ccd846..02568ee 100644
--- a/fixtures/paragraph-basic/utterances.json
+++ b/fixtures/paragraph-basic/utterances.json
@@ -6,40 +6,8 @@
},
"utterances": [
{
- "plain": "It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife."
+ "plain": "It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.",
+ "startsNewBlock": true
}
]
},
@@ -49,40 +17,8 @@
},
"utterances": [
{
- "ssml": "It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife."
+ "ssml": "It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/part-epub-type/utterances.json b/fixtures/part-epub-type/utterances.json
index 8457571..013b0f7 100644
--- a/fixtures/part-epub-type/utterances.json
+++ b/fixtures/part-epub-type/utterances.json
@@ -6,7 +6,517 @@
},
"utterances": [
{
- "plain": "Start of the part."
+ "plain": "Title of the part",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part",
+ "heading1"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
},
{
"plain": "Heading level 1."
@@ -21,82 +531,343 @@
},
{
"options": {
- "format": "plain",
- "contextualize": false
+ "format": "ssml"
},
"utterances": [
{
- "plain": "Title of the part"
+ "ssml": "Title of the part",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "part"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the part."
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 1."
+ "ssml": "Title of the part"
},
{
- "plain": "Title of the part"
+ "ssml": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
- "plain": "End of the part."
+ "ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "part"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the part."
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 1."
+ "ssml": "Title of the part"
},
{
- "plain": "Title of the part"
+ "ssml": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
- "plain": "End of the part."
+ "ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "part"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the part."
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 1."
+ "ssml": "Title of the part"
},
{
- "plain": "Title of the part"
+ "ssml": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
- "plain": "End of the part."
+ "ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part",
+ "heading1"
+ ]
},
"utterances": [
{
- "ssml": "Start of the part."
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
"ssml": "Heading level 1."
@@ -112,22 +883,67 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 1."
+ },
{
"ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the part."
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 1."
+ },
+ {
+ "ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
"ssml": "Heading level 1."
@@ -143,11 +959,42 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the part."
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 1."
+ },
+ {
+ "ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
"ssml": "Heading level 1."
@@ -163,11 +1010,42 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the part."
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 1."
+ },
+ {
+ "ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
"ssml": "Heading level 1."
diff --git a/fixtures/part-role-aria/utterances.json b/fixtures/part-role-aria/utterances.json
index 8457571..013b0f7 100644
--- a/fixtures/part-role-aria/utterances.json
+++ b/fixtures/part-role-aria/utterances.json
@@ -6,7 +6,517 @@
},
"utterances": [
{
- "plain": "Start of the part."
+ "plain": "Title of the part",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part",
+ "heading1"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Heading level 1."
+ },
+ {
+ "plain": "Title of the part"
+ },
+ {
+ "plain": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the part.",
+ "startsNewBlock": true
},
{
"plain": "Heading level 1."
@@ -21,82 +531,343 @@
},
{
"options": {
- "format": "plain",
- "contextualize": false
+ "format": "ssml"
},
"utterances": [
{
- "plain": "Title of the part"
+ "ssml": "Title of the part",
+ "startsNewBlock": true
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "part"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the part."
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 1."
+ "ssml": "Title of the part"
},
{
- "plain": "Title of the part"
+ "ssml": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
- "plain": "End of the part."
+ "ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "part"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the part."
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 1."
+ "ssml": "Title of the part"
},
{
- "plain": "Title of the part"
+ "ssml": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
- "plain": "End of the part."
+ "ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
}
]
},
{
"options": {
- "format": "plain",
+ "format": "ssml",
+ "contextualize": [
+ "part"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the part."
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
- "plain": "Heading level 1."
+ "ssml": "Title of the part"
},
{
- "plain": "Title of the part"
+ "ssml": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
- "plain": "End of the part."
+ "ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Heading level 1.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Title of the part"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part",
+ "heading1"
+ ]
},
"utterances": [
{
- "ssml": "Start of the part."
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
"ssml": "Heading level 1."
@@ -112,22 +883,67 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 1."
+ },
{
"ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the part."
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 1."
+ },
+ {
+ "ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
"ssml": "Heading level 1."
@@ -143,11 +959,42 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the part."
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 1."
+ },
+ {
+ "ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
"ssml": "Heading level 1."
@@ -163,11 +1010,42 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the part."
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Heading level 1."
+ },
+ {
+ "ssml": "Title of the part"
+ },
+ {
+ "ssml": "End of the part."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "part",
+ "heading1"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the part.",
+ "startsNewBlock": true
},
{
"ssml": "Heading level 1."
diff --git a/fixtures/preface-epub-type/utterances.json b/fixtures/preface-epub-type/utterances.json
index ef3ec80..61f1a34 100644
--- a/fixtures/preface-epub-type/utterances.json
+++ b/fixtures/preface-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the preface."
+ "plain": "This edition adds a chapter on automation.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "preface"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the preface.",
+ "startsNewBlock": true
},
{
"plain": "This edition adds a chapter on automation."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "preface"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the preface.",
+ "startsNewBlock": true
+ },
{
"plain": "This edition adds a chapter on automation."
+ },
+ {
+ "plain": "End of the preface."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "preface"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the preface."
+ "plain": "Start of the preface.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This edition adds a chapter on automation."
+ },
+ {
+ "plain": "End of the preface."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "preface"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the preface.",
+ "startsNewBlock": true
},
{
"plain": "This edition adds a chapter on automation."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "preface"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the preface."
+ "plain": "Start of the preface.",
+ "startsNewBlock": true
},
{
"plain": "This edition adds a chapter on automation."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "preface"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the preface.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This edition adds a chapter on automation."
+ },
+ {
+ "plain": "End of the preface."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "preface"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the preface."
+ "plain": "Start of the preface.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This edition adds a chapter on automation."
+ },
+ {
+ "plain": "End of the preface."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "preface"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the preface.",
+ "startsNewBlock": true
},
{
"plain": "This edition adds a chapter on automation."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the preface."
+ "ssml": "This edition adds a chapter on automation.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "preface"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the preface.",
+ "startsNewBlock": true
},
{
"ssml": "This edition adds a chapter on automation."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "preface"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the preface.",
+ "startsNewBlock": true
+ },
{
"ssml": "This edition adds a chapter on automation."
+ },
+ {
+ "ssml": "End of the preface."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "preface"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the preface."
+ "ssml": "Start of the preface.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This edition adds a chapter on automation."
+ },
+ {
+ "ssml": "End of the preface."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "preface"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the preface.",
+ "startsNewBlock": true
},
{
"ssml": "This edition adds a chapter on automation."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "preface"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the preface."
+ "ssml": "Start of the preface.",
+ "startsNewBlock": true
},
{
"ssml": "This edition adds a chapter on automation."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "preface"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the preface.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This edition adds a chapter on automation."
+ },
+ {
+ "ssml": "End of the preface."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "preface"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the preface."
+ "ssml": "Start of the preface.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This edition adds a chapter on automation."
+ },
+ {
+ "ssml": "End of the preface."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "preface"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the preface.",
+ "startsNewBlock": true
},
{
"ssml": "This edition adds a chapter on automation."
diff --git a/fixtures/preface-role-aria/utterances.json b/fixtures/preface-role-aria/utterances.json
index ef3ec80..61f1a34 100644
--- a/fixtures/preface-role-aria/utterances.json
+++ b/fixtures/preface-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the preface."
+ "plain": "This edition adds a chapter on automation.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "preface"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the preface.",
+ "startsNewBlock": true
},
{
"plain": "This edition adds a chapter on automation."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "preface"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the preface.",
+ "startsNewBlock": true
+ },
{
"plain": "This edition adds a chapter on automation."
+ },
+ {
+ "plain": "End of the preface."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "preface"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the preface."
+ "plain": "Start of the preface.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This edition adds a chapter on automation."
+ },
+ {
+ "plain": "End of the preface."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "preface"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the preface.",
+ "startsNewBlock": true
},
{
"plain": "This edition adds a chapter on automation."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "preface"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the preface."
+ "plain": "Start of the preface.",
+ "startsNewBlock": true
},
{
"plain": "This edition adds a chapter on automation."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "preface"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the preface.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This edition adds a chapter on automation."
+ },
+ {
+ "plain": "End of the preface."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "preface"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the preface."
+ "plain": "Start of the preface.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "This edition adds a chapter on automation."
+ },
+ {
+ "plain": "End of the preface."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "preface"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the preface.",
+ "startsNewBlock": true
},
{
"plain": "This edition adds a chapter on automation."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the preface."
+ "ssml": "This edition adds a chapter on automation.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "preface"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the preface.",
+ "startsNewBlock": true
},
{
"ssml": "This edition adds a chapter on automation."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "preface"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the preface.",
+ "startsNewBlock": true
+ },
{
"ssml": "This edition adds a chapter on automation."
+ },
+ {
+ "ssml": "End of the preface."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "preface"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the preface."
+ "ssml": "Start of the preface.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This edition adds a chapter on automation."
+ },
+ {
+ "ssml": "End of the preface."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "preface"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the preface.",
+ "startsNewBlock": true
},
{
"ssml": "This edition adds a chapter on automation."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "preface"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the preface."
+ "ssml": "Start of the preface.",
+ "startsNewBlock": true
},
{
"ssml": "This edition adds a chapter on automation."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "preface"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the preface.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This edition adds a chapter on automation."
+ },
+ {
+ "ssml": "End of the preface."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "preface"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the preface."
+ "ssml": "Start of the preface.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "This edition adds a chapter on automation."
+ },
+ {
+ "ssml": "End of the preface."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "preface"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the preface.",
+ "startsNewBlock": true
},
{
"ssml": "This edition adds a chapter on automation."
diff --git a/fixtures/preformatted-html-native/utterances.json b/fixtures/preformatted-html-native/utterances.json
index b885b54..1f17d4c 100644
--- a/fixtures/preformatted-html-native/utterances.json
+++ b/fixtures/preformatted-html-native/utterances.json
@@ -5,41 +5,179 @@
"format": "plain"
},
"utterances": [
+ {
+ "plain": "10 PRINT \"HELLO\" 20 GOTO 10",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "preformatted"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the preformatted text.",
+ "startsNewBlock": true
+ },
{
"plain": "10 PRINT \"HELLO\" 20 GOTO 10"
+ },
+ {
+ "plain": "End of the preformatted text."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "preformatted"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the preformatted text.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "10 PRINT \"HELLO\" 20 GOTO 10"
+ },
+ {
+ "plain": "End of the preformatted text."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "preformatted"
+ ],
"language": "always"
},
"utterances": [
+ {
+ "plain": "Start of the preformatted text.",
+ "startsNewBlock": true
+ },
{
"plain": "10 PRINT \"HELLO\" 20 GOTO 10"
+ },
+ {
+ "plain": "End of the preformatted text."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "preformatted"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the preformatted text.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "10 PRINT \"HELLO\" 20 GOTO 10"
+ },
+ {
+ "plain": "End of the preformatted text."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "preformatted"
+ ],
"language": "block-level"
},
"utterances": [
+ {
+ "plain": "Start of the preformatted text.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "10 PRINT \"HELLO\" 20 GOTO 10"
+ },
+ {
+ "plain": "End of the preformatted text."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "preformatted"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the preformatted text.",
+ "startsNewBlock": true
+ },
{
"plain": "10 PRINT \"HELLO\" 20 GOTO 10"
+ },
+ {
+ "plain": "End of the preformatted text."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "preformatted"
+ ],
"language": "none"
},
"utterances": [
+ {
+ "plain": "Start of the preformatted text.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "10 PRINT \"HELLO\" 20 GOTO 10"
+ },
+ {
+ "plain": "End of the preformatted text."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "preformatted"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the preformatted text.",
+ "startsNewBlock": true
+ },
{
"plain": "10 PRINT \"HELLO\" 20 GOTO 10"
+ },
+ {
+ "plain": "End of the preformatted text."
}
]
},
@@ -48,41 +186,179 @@
"format": "ssml"
},
"utterances": [
+ {
+ "ssml": "10 PRINT \"HELLO\" 20 GOTO 10",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "preformatted"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the preformatted text.",
+ "startsNewBlock": true
+ },
{
"ssml": "10 PRINT \"HELLO\" 20 GOTO 10"
+ },
+ {
+ "ssml": "End of the preformatted text."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "preformatted"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the preformatted text.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "10 PRINT \"HELLO\" 20 GOTO 10"
+ },
+ {
+ "ssml": "End of the preformatted text."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "preformatted"
+ ],
"language": "always"
},
"utterances": [
+ {
+ "ssml": "Start of the preformatted text.",
+ "startsNewBlock": true
+ },
{
"ssml": "10 PRINT \"HELLO\" 20 GOTO 10"
+ },
+ {
+ "ssml": "End of the preformatted text."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "preformatted"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the preformatted text.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "10 PRINT \"HELLO\" 20 GOTO 10"
+ },
+ {
+ "ssml": "End of the preformatted text."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "preformatted"
+ ],
"language": "block-level"
},
"utterances": [
+ {
+ "ssml": "Start of the preformatted text.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "10 PRINT \"HELLO\" 20 GOTO 10"
+ },
+ {
+ "ssml": "End of the preformatted text."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "preformatted"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the preformatted text.",
+ "startsNewBlock": true
+ },
{
"ssml": "10 PRINT \"HELLO\" 20 GOTO 10"
+ },
+ {
+ "ssml": "End of the preformatted text."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "preformatted"
+ ],
"language": "none"
},
"utterances": [
+ {
+ "ssml": "Start of the preformatted text.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "10 PRINT \"HELLO\" 20 GOTO 10"
+ },
+ {
+ "ssml": "End of the preformatted text."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "preformatted"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the preformatted text.",
+ "startsNewBlock": true
+ },
{
"ssml": "10 PRINT \"HELLO\" 20 GOTO 10"
+ },
+ {
+ "ssml": "End of the preformatted text."
}
]
}
diff --git a/fixtures/presentation-role-aria/utterances.json b/fixtures/presentation-role-aria/utterances.json
index 2c3144d..2c0f6f7 100644
--- a/fixtures/presentation-role-aria/utterances.json
+++ b/fixtures/presentation-role-aria/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "Decorative content with no semantic meaning."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "Decorative content with no semantic meaning."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "Decorative content with no semantic meaning."
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "Decorative content with no semantic meaning."
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "Decorative content with no semantic meaning."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "Decorative content with no semantic meaning."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "Decorative content with no semantic meaning."
- }
- ]
}
]
}
diff --git a/fixtures/prologue-epub-type/utterances.json b/fixtures/prologue-epub-type/utterances.json
index eb734f4..d9be8f9 100644
--- a/fixtures/prologue-epub-type/utterances.json
+++ b/fixtures/prologue-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the prologue."
+ "plain": "Before the lamp was ever lit, the rock was already feared.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "prologue"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the prologue.",
+ "startsNewBlock": true
},
{
"plain": "Before the lamp was ever lit, the rock was already feared."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "prologue"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the prologue.",
+ "startsNewBlock": true
+ },
{
"plain": "Before the lamp was ever lit, the rock was already feared."
+ },
+ {
+ "plain": "End of the prologue."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "prologue"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the prologue."
+ "plain": "Start of the prologue.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Before the lamp was ever lit, the rock was already feared."
+ },
+ {
+ "plain": "End of the prologue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "prologue"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the prologue.",
+ "startsNewBlock": true
},
{
"plain": "Before the lamp was ever lit, the rock was already feared."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "prologue"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the prologue."
+ "plain": "Start of the prologue.",
+ "startsNewBlock": true
},
{
"plain": "Before the lamp was ever lit, the rock was already feared."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "prologue"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the prologue.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Before the lamp was ever lit, the rock was already feared."
+ },
+ {
+ "plain": "End of the prologue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "prologue"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the prologue."
+ "plain": "Start of the prologue.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Before the lamp was ever lit, the rock was already feared."
+ },
+ {
+ "plain": "End of the prologue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "prologue"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the prologue.",
+ "startsNewBlock": true
},
{
"plain": "Before the lamp was ever lit, the rock was already feared."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the prologue."
+ "ssml": "Before the lamp was ever lit, the rock was already feared.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "prologue"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the prologue.",
+ "startsNewBlock": true
},
{
"ssml": "Before the lamp was ever lit, the rock was already feared."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "prologue"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the prologue.",
+ "startsNewBlock": true
+ },
{
"ssml": "Before the lamp was ever lit, the rock was already feared."
+ },
+ {
+ "ssml": "End of the prologue."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "prologue"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the prologue."
+ "ssml": "Start of the prologue.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Before the lamp was ever lit, the rock was already feared."
+ },
+ {
+ "ssml": "End of the prologue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "prologue"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the prologue.",
+ "startsNewBlock": true
},
{
"ssml": "Before the lamp was ever lit, the rock was already feared."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "prologue"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the prologue."
+ "ssml": "Start of the prologue.",
+ "startsNewBlock": true
},
{
"ssml": "Before the lamp was ever lit, the rock was already feared."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "prologue"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the prologue.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Before the lamp was ever lit, the rock was already feared."
+ },
+ {
+ "ssml": "End of the prologue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "prologue"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the prologue."
+ "ssml": "Start of the prologue.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Before the lamp was ever lit, the rock was already feared."
+ },
+ {
+ "ssml": "End of the prologue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "prologue"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the prologue.",
+ "startsNewBlock": true
},
{
"ssml": "Before the lamp was ever lit, the rock was already feared."
diff --git a/fixtures/prologue-role-aria/utterances.json b/fixtures/prologue-role-aria/utterances.json
index eb734f4..d9be8f9 100644
--- a/fixtures/prologue-role-aria/utterances.json
+++ b/fixtures/prologue-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the prologue."
+ "plain": "Before the lamp was ever lit, the rock was already feared.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "prologue"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the prologue.",
+ "startsNewBlock": true
},
{
"plain": "Before the lamp was ever lit, the rock was already feared."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "prologue"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the prologue.",
+ "startsNewBlock": true
+ },
{
"plain": "Before the lamp was ever lit, the rock was already feared."
+ },
+ {
+ "plain": "End of the prologue."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "prologue"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the prologue."
+ "plain": "Start of the prologue.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Before the lamp was ever lit, the rock was already feared."
+ },
+ {
+ "plain": "End of the prologue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "prologue"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the prologue.",
+ "startsNewBlock": true
},
{
"plain": "Before the lamp was ever lit, the rock was already feared."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "prologue"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the prologue."
+ "plain": "Start of the prologue.",
+ "startsNewBlock": true
},
{
"plain": "Before the lamp was ever lit, the rock was already feared."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "prologue"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the prologue.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Before the lamp was ever lit, the rock was already feared."
+ },
+ {
+ "plain": "End of the prologue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "prologue"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the prologue."
+ "plain": "Start of the prologue.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Before the lamp was ever lit, the rock was already feared."
+ },
+ {
+ "plain": "End of the prologue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "prologue"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the prologue.",
+ "startsNewBlock": true
},
{
"plain": "Before the lamp was ever lit, the rock was already feared."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the prologue."
+ "ssml": "Before the lamp was ever lit, the rock was already feared.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "prologue"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the prologue.",
+ "startsNewBlock": true
},
{
"ssml": "Before the lamp was ever lit, the rock was already feared."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "prologue"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the prologue.",
+ "startsNewBlock": true
+ },
{
"ssml": "Before the lamp was ever lit, the rock was already feared."
+ },
+ {
+ "ssml": "End of the prologue."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "prologue"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the prologue."
+ "ssml": "Start of the prologue.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Before the lamp was ever lit, the rock was already feared."
+ },
+ {
+ "ssml": "End of the prologue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "prologue"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the prologue.",
+ "startsNewBlock": true
},
{
"ssml": "Before the lamp was ever lit, the rock was already feared."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "prologue"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the prologue."
+ "ssml": "Start of the prologue.",
+ "startsNewBlock": true
},
{
"ssml": "Before the lamp was ever lit, the rock was already feared."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "prologue"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the prologue.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Before the lamp was ever lit, the rock was already feared."
+ },
+ {
+ "ssml": "End of the prologue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "prologue"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the prologue."
+ "ssml": "Start of the prologue.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Before the lamp was ever lit, the rock was already feared."
+ },
+ {
+ "ssml": "End of the prologue."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "prologue"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the prologue.",
+ "startsNewBlock": true
},
{
"ssml": "Before the lamp was ever lit, the rock was already feared."
diff --git a/fixtures/pullquote-epub-type/utterances.json b/fixtures/pullquote-epub-type/utterances.json
index 97f13b3..9c6fa42 100644
--- a/fixtures/pullquote-epub-type/utterances.json
+++ b/fixtures/pullquote-epub-type/utterances.json
@@ -6,10 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the aside."
- },
+ "plain": "The lamp still turns, though no one climbs the stairs anymore.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
{
- "plain": "Pull quote."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
@@ -22,43 +34,101 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"aside"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "skip": [
- "pullquote"
- ]
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the aside."
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
},
"utterances": [
{
- "plain": "Start of the aside."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
- "plain": "Pull quote."
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
@@ -71,14 +141,37 @@
{
"options": {
"format": "plain",
- "language": "block-level"
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
},
"utterances": [
{
- "plain": "Start of the aside."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
- "plain": "Pull quote."
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
@@ -91,130 +184,3391 @@
{
"options": {
"format": "plain",
- "language": "none"
+ "contextualize": [
+ "pullquote"
+ ]
},
"utterances": [
{
- "plain": "Start of the aside."
+ "plain": "Pull quote.",
+ "startsNewBlock": true
},
{
- "plain": "Pull quote."
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Pull quote.",
+ "startsNewBlock": true
},
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Pull quote.",
+ "startsNewBlock": true
},
{
- "plain": "End of the aside."
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the aside."
+ "plain": "Pull quote.",
+ "startsNewBlock": true
},
{
- "ssml": "Pull quote."
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Pull quote.",
+ "startsNewBlock": true
},
{
- "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Pull quote.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the aside."
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
- "aside"
- ]
+ "format": "plain",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none"
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Pull quote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
},
{
"options": {
- "format": "ssml",
- "skip": [
+ "format": "plain",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Pull quote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
"pullquote"
]
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Pull quote."
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Pull quote."
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the aside."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the aside."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
- "ssml": "Pull quote."
+ "plain": "Pull quote."
},
{
- "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
},
{
- "ssml": "End of the aside."
+ "plain": "End of the aside."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Pull quote."
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the aside."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
- "ssml": "Pull quote."
+ "plain": "Pull quote."
},
{
- "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
},
{
- "ssml": "End of the aside."
+ "plain": "End of the aside."
}
]
},
{
"options": {
- "format": "ssml",
- "language": "none"
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the aside."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
- "ssml": "Pull quote."
+ "plain": "Pull quote."
},
{
- "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
},
{
- "ssml": "End of the aside."
+ "plain": "End of the aside."
}
]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Pull quote."
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Pull quote."
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pullquote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Pull quote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Pull quote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Pull quote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Pull quote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Pull quote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Pull quote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Pull quote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Pull quote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Pull quote."
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Pull quote."
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Pull quote."
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Pull quote."
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Pull quote."
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Pull quote."
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Pull quote."
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Pull quote."
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside",
+ "pullquote"
+ ],
+ "contextualize": [
+ "aside",
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/pullquote-role-aria/utterances.json b/fixtures/pullquote-role-aria/utterances.json
index 42f3bd8..d9ef74a 100644
--- a/fixtures/pullquote-role-aria/utterances.json
+++ b/fixtures/pullquote-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Pull quote."
+ "plain": "The lamp still turns, though no one climbs the stairs anymore.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pullquote"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Pull quote.",
+ "startsNewBlock": true
},
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
@@ -16,18 +31,34 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"pullquote"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Pull quote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always"
},
"utterances": [
+ {
+ "plain": "Pull quote.",
+ "startsNewBlock": true
+ },
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
}
@@ -36,11 +67,16 @@
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Pull quote."
+ "plain": "Pull quote.",
+ "startsNewBlock": true
},
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
@@ -50,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "pullquote"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Pull quote."
+ "plain": "Pull quote.",
+ "startsNewBlock": true
},
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
@@ -64,11 +104,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Pull quote.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "pullquote"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Pull quote."
+ "plain": "Pull quote.",
+ "startsNewBlock": true
},
{
"plain": "The lamp still turns, though no one climbs the stairs anymore."
@@ -77,32 +140,252 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Pull quote."
+ "plain": "Pull quote.",
+ "startsNewBlock": true
},
{
- "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ "plain": "The lamp still turns, though no one climbs the stairs anymore."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
"skip": [
"pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
]
},
"utterances": []
},
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pullquote"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Pull quote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "pullquote"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Pull quote.",
+ "startsNewBlock": true
+ },
{
"ssml": "The lamp still turns, though no one climbs the stairs anymore."
}
@@ -111,11 +394,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "pullquote"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Pull quote."
+ "ssml": "Pull quote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Pull quote.",
+ "startsNewBlock": true
},
{
"ssml": "The lamp still turns, though no one climbs the stairs anymore."
@@ -125,11 +431,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "pullquote"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Pull quote."
+ "ssml": "Pull quote.",
+ "startsNewBlock": true
},
{
"ssml": "The lamp still turns, though no one climbs the stairs anymore."
@@ -139,16 +449,246 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Pull quote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pullquote"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Pull quote."
+ "ssml": "Pull quote.",
+ "startsNewBlock": true
},
{
"ssml": "The lamp still turns, though no one climbs the stairs anymore."
}
]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Pull quote.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp still turns, though no one climbs the stairs anymore."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "pullquote"
+ ],
+ "contextualize": [
+ "pullquote"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/qna-epub-type/utterances.json b/fixtures/qna-epub-type/utterances.json
index 06a1472..6c103d1 100644
--- a/fixtures/qna-epub-type/utterances.json
+++ b/fixtures/qna-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the questions and answers."
+ "plain": "Q: How often was the lamp refueled? A: Nightly, by hand.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "qna"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the questions and answers.",
+ "startsNewBlock": true
},
{
"plain": "Q: How often was the lamp refueled? A: Nightly, by hand."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "qna"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the questions and answers.",
+ "startsNewBlock": true
+ },
{
"plain": "Q: How often was the lamp refueled? A: Nightly, by hand."
+ },
+ {
+ "plain": "End of the questions and answers."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "qna"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the questions and answers."
+ "plain": "Start of the questions and answers.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Q: How often was the lamp refueled? A: Nightly, by hand."
+ },
+ {
+ "plain": "End of the questions and answers."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "qna"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the questions and answers.",
+ "startsNewBlock": true
},
{
"plain": "Q: How often was the lamp refueled? A: Nightly, by hand."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "qna"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the questions and answers."
+ "plain": "Start of the questions and answers.",
+ "startsNewBlock": true
},
{
"plain": "Q: How often was the lamp refueled? A: Nightly, by hand."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "qna"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the questions and answers.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Q: How often was the lamp refueled? A: Nightly, by hand."
+ },
+ {
+ "plain": "End of the questions and answers."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "qna"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the questions and answers."
+ "plain": "Start of the questions and answers.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Q: How often was the lamp refueled? A: Nightly, by hand."
+ },
+ {
+ "plain": "End of the questions and answers."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "qna"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the questions and answers.",
+ "startsNewBlock": true
},
{
"plain": "Q: How often was the lamp refueled? A: Nightly, by hand."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the questions and answers."
+ "ssml": "Q: How often was the lamp refueled? A: Nightly, by hand.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "qna"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the questions and answers.",
+ "startsNewBlock": true
},
{
"ssml": "Q: How often was the lamp refueled? A: Nightly, by hand."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "qna"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the questions and answers.",
+ "startsNewBlock": true
+ },
{
"ssml": "Q: How often was the lamp refueled? A: Nightly, by hand."
+ },
+ {
+ "ssml": "End of the questions and answers."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "qna"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the questions and answers."
+ "ssml": "Start of the questions and answers.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Q: How often was the lamp refueled? A: Nightly, by hand."
+ },
+ {
+ "ssml": "End of the questions and answers."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "qna"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the questions and answers.",
+ "startsNewBlock": true
},
{
"ssml": "Q: How often was the lamp refueled? A: Nightly, by hand."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "qna"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the questions and answers."
+ "ssml": "Start of the questions and answers.",
+ "startsNewBlock": true
},
{
"ssml": "Q: How often was the lamp refueled? A: Nightly, by hand."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "qna"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the questions and answers.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Q: How often was the lamp refueled? A: Nightly, by hand."
+ },
+ {
+ "ssml": "End of the questions and answers."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "qna"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the questions and answers."
+ "ssml": "Start of the questions and answers.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Q: How often was the lamp refueled? A: Nightly, by hand."
+ },
+ {
+ "ssml": "End of the questions and answers."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "qna"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the questions and answers.",
+ "startsNewBlock": true
},
{
"ssml": "Q: How often was the lamp refueled? A: Nightly, by hand."
diff --git a/fixtures/qna-role-aria/utterances.json b/fixtures/qna-role-aria/utterances.json
index 06a1472..6c103d1 100644
--- a/fixtures/qna-role-aria/utterances.json
+++ b/fixtures/qna-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the questions and answers."
+ "plain": "Q: How often was the lamp refueled? A: Nightly, by hand.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "qna"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the questions and answers.",
+ "startsNewBlock": true
},
{
"plain": "Q: How often was the lamp refueled? A: Nightly, by hand."
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "qna"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the questions and answers.",
+ "startsNewBlock": true
+ },
{
"plain": "Q: How often was the lamp refueled? A: Nightly, by hand."
+ },
+ {
+ "plain": "End of the questions and answers."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "qna"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the questions and answers."
+ "plain": "Start of the questions and answers.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Q: How often was the lamp refueled? A: Nightly, by hand."
+ },
+ {
+ "plain": "End of the questions and answers."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "qna"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the questions and answers.",
+ "startsNewBlock": true
},
{
"plain": "Q: How often was the lamp refueled? A: Nightly, by hand."
@@ -47,11 +98,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "qna"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the questions and answers."
+ "plain": "Start of the questions and answers.",
+ "startsNewBlock": true
},
{
"plain": "Q: How often was the lamp refueled? A: Nightly, by hand."
@@ -64,11 +119,59 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "qna"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the questions and answers.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Q: How often was the lamp refueled? A: Nightly, by hand."
+ },
+ {
+ "plain": "End of the questions and answers."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "qna"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the questions and answers."
+ "plain": "Start of the questions and answers.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Q: How often was the lamp refueled? A: Nightly, by hand."
+ },
+ {
+ "plain": "End of the questions and answers."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "qna"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the questions and answers.",
+ "startsNewBlock": true
},
{
"plain": "Q: How often was the lamp refueled? A: Nightly, by hand."
@@ -84,7 +187,22 @@
},
"utterances": [
{
- "ssml": "Start of the questions and answers."
+ "ssml": "Q: How often was the lamp refueled? A: Nightly, by hand.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "qna"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the questions and answers.",
+ "startsNewBlock": true
},
{
"ssml": "Q: How often was the lamp refueled? A: Nightly, by hand."
@@ -97,22 +215,58 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "qna"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Start of the questions and answers.",
+ "startsNewBlock": true
+ },
{
"ssml": "Q: How often was the lamp refueled? A: Nightly, by hand."
+ },
+ {
+ "ssml": "End of the questions and answers."
}
]
},
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "qna"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the questions and answers."
+ "ssml": "Start of the questions and answers.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Q: How often was the lamp refueled? A: Nightly, by hand."
+ },
+ {
+ "ssml": "End of the questions and answers."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "qna"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the questions and answers.",
+ "startsNewBlock": true
},
{
"ssml": "Q: How often was the lamp refueled? A: Nightly, by hand."
@@ -125,11 +279,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "qna"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the questions and answers."
+ "ssml": "Start of the questions and answers.",
+ "startsNewBlock": true
},
{
"ssml": "Q: How often was the lamp refueled? A: Nightly, by hand."
@@ -142,11 +300,59 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "qna"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the questions and answers.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Q: How often was the lamp refueled? A: Nightly, by hand."
+ },
+ {
+ "ssml": "End of the questions and answers."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "qna"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the questions and answers."
+ "ssml": "Start of the questions and answers.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Q: How often was the lamp refueled? A: Nightly, by hand."
+ },
+ {
+ "ssml": "End of the questions and answers."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "qna"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the questions and answers.",
+ "startsNewBlock": true
},
{
"ssml": "Q: How often was the lamp refueled? A: Nightly, by hand."
diff --git a/fixtures/region-role-aria/utterances.json b/fixtures/region-role-aria/utterances.json
index 8076ff7..2ef01d8 100644
--- a/fixtures/region-role-aria/utterances.json
+++ b/fixtures/region-role-aria/utterances.json
@@ -10,39 +10,6 @@
}
]
},
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "A named region of interest within the page."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "A named region of interest within the page."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "A named region of interest within the page."
- }
- ]
- },
{
"options": {
"format": "ssml"
@@ -52,39 +19,6 @@
"ssml": "A named region of interest within the page."
}
]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "A named region of interest within the page."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "A named region of interest within the page."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "A named region of interest within the page."
- }
- ]
}
]
}
diff --git a/fixtures/section-html-native/utterances.json b/fixtures/section-html-native/utterances.json
index 4c53309..d51df96 100644
--- a/fixtures/section-html-native/utterances.json
+++ b/fixtures/section-html-native/utterances.json
@@ -6,40 +6,8 @@
},
"utterances": [
{
- "plain": "The lighthouse was decommissioned in 1998, though its light still functions as a private aid to navigation."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "The lighthouse was decommissioned in 1998, though its light still functions as a private aid to navigation."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "The lighthouse was decommissioned in 1998, though its light still functions as a private aid to navigation."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "The lighthouse was decommissioned in 1998, though its light still functions as a private aid to navigation."
+ "plain": "The lighthouse was decommissioned in 1998, though its light still functions as a private aid to navigation.",
+ "startsNewBlock": true
}
]
},
@@ -49,40 +17,8 @@
},
"utterances": [
{
- "ssml": "The lighthouse was decommissioned in 1998, though its light still functions as a private aid to navigation."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "The lighthouse was decommissioned in 1998, though its light still functions as a private aid to navigation."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "The lighthouse was decommissioned in 1998, though its light still functions as a private aid to navigation."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "The lighthouse was decommissioned in 1998, though its light still functions as a private aid to navigation."
+ "ssml": "The lighthouse was decommissioned in 1998, though its light still functions as a private aid to navigation.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/separator-html-native/utterances.json b/fixtures/separator-html-native/utterances.json
index be684d1..5240826 100644
--- a/fixtures/separator-html-native/utterances.json
+++ b/fixtures/separator-html-native/utterances.json
@@ -6,52 +6,12 @@
},
"utterances": [
{
- "plain": "Section one."
+ "plain": "Section one.",
+ "startsNewBlock": true
},
{
- "plain": "Section two."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "Section one."
- },
- {
- "plain": "Section two."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "Section one."
- },
- {
- "plain": "Section two."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "Section one."
- },
- {
- "plain": "Section two."
+ "plain": "Section two.",
+ "startsNewBlock": true
}
]
},
@@ -61,52 +21,12 @@
},
"utterances": [
{
- "ssml": "Section one."
- },
- {
- "ssml": "Section two."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "Section one."
- },
- {
- "ssml": "Section two."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "Section one."
- },
- {
- "ssml": "Section two."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "Section one."
+ "ssml": "Section one.",
+ "startsNewBlock": true
},
{
- "ssml": "Section two."
+ "ssml": "Section two.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/separator-role-aria/utterances.json b/fixtures/separator-role-aria/utterances.json
index be684d1..5240826 100644
--- a/fixtures/separator-role-aria/utterances.json
+++ b/fixtures/separator-role-aria/utterances.json
@@ -6,52 +6,12 @@
},
"utterances": [
{
- "plain": "Section one."
+ "plain": "Section one.",
+ "startsNewBlock": true
},
{
- "plain": "Section two."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "always"
- },
- "utterances": [
- {
- "plain": "Section one."
- },
- {
- "plain": "Section two."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
- {
- "plain": "Section one."
- },
- {
- "plain": "Section two."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "none"
- },
- "utterances": [
- {
- "plain": "Section one."
- },
- {
- "plain": "Section two."
+ "plain": "Section two.",
+ "startsNewBlock": true
}
]
},
@@ -61,52 +21,12 @@
},
"utterances": [
{
- "ssml": "Section one."
- },
- {
- "ssml": "Section two."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "always"
- },
- "utterances": [
- {
- "ssml": "Section one."
- },
- {
- "ssml": "Section two."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "block-level"
- },
- "utterances": [
- {
- "ssml": "Section one."
- },
- {
- "ssml": "Section two."
- }
- ]
- },
- {
- "options": {
- "format": "ssml",
- "language": "none"
- },
- "utterances": [
- {
- "ssml": "Section one."
+ "ssml": "Section one.",
+ "startsNewBlock": true
},
{
- "ssml": "Section two."
+ "ssml": "Section two.",
+ "startsNewBlock": true
}
]
}
diff --git a/fixtures/subtitle-epub-type/utterances.json b/fixtures/subtitle-epub-type/utterances.json
index c37f920..80a470c 100644
--- a/fixtures/subtitle-epub-type/utterances.json
+++ b/fixtures/subtitle-epub-type/utterances.json
@@ -4,6 +4,19 @@
"options": {
"format": "plain"
},
+ "utterances": [
+ {
+ "plain": "A History of Coastal Lights"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "subtitle"
+ ]
+ },
"utterances": [
{
"plain": "Subtitle."
@@ -16,9 +29,15 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "subtitle"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Subtitle."
+ },
{
"plain": "A History of Coastal Lights"
}
@@ -27,6 +46,9 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "subtitle"
+ ],
"language": "always"
},
"utterances": [
@@ -41,6 +63,27 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "subtitle"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Subtitle."
+ },
+ {
+ "plain": "A History of Coastal Lights"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "subtitle"
+ ],
"language": "block-level"
},
"utterances": [
@@ -55,6 +98,27 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "subtitle"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Subtitle."
+ },
+ {
+ "plain": "A History of Coastal Lights"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "subtitle"
+ ],
"language": "none"
},
"utterances": [
@@ -66,10 +130,41 @@
}
]
},
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "subtitle"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Subtitle."
+ },
+ {
+ "plain": "A History of Coastal Lights"
+ }
+ ]
+ },
{
"options": {
"format": "ssml"
},
+ "utterances": [
+ {
+ "ssml": "A History of Coastal Lights"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "subtitle"
+ ]
+ },
"utterances": [
{
"ssml": "Subtitle."
@@ -82,9 +177,15 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "subtitle"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Subtitle."
+ },
{
"ssml": "A History of Coastal Lights"
}
@@ -93,6 +194,9 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "subtitle"
+ ],
"language": "always"
},
"utterances": [
@@ -107,6 +211,27 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "subtitle"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Subtitle."
+ },
+ {
+ "ssml": "A History of Coastal Lights"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "subtitle"
+ ],
"language": "block-level"
},
"utterances": [
@@ -121,6 +246,27 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "subtitle"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Subtitle."
+ },
+ {
+ "ssml": "A History of Coastal Lights"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "subtitle"
+ ],
"language": "none"
},
"utterances": [
@@ -131,6 +277,24 @@
"ssml": "A History of Coastal Lights"
}
]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "subtitle"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Subtitle."
+ },
+ {
+ "ssml": "A History of Coastal Lights"
+ }
+ ]
}
]
}
diff --git a/fixtures/subtitle-role-aria/utterances.json b/fixtures/subtitle-role-aria/utterances.json
index c37f920..80a470c 100644
--- a/fixtures/subtitle-role-aria/utterances.json
+++ b/fixtures/subtitle-role-aria/utterances.json
@@ -4,6 +4,19 @@
"options": {
"format": "plain"
},
+ "utterances": [
+ {
+ "plain": "A History of Coastal Lights"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "subtitle"
+ ]
+ },
"utterances": [
{
"plain": "Subtitle."
@@ -16,9 +29,15 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "subtitle"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Subtitle."
+ },
{
"plain": "A History of Coastal Lights"
}
@@ -27,6 +46,9 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "subtitle"
+ ],
"language": "always"
},
"utterances": [
@@ -41,6 +63,27 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "subtitle"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Subtitle."
+ },
+ {
+ "plain": "A History of Coastal Lights"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "subtitle"
+ ],
"language": "block-level"
},
"utterances": [
@@ -55,6 +98,27 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "subtitle"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Subtitle."
+ },
+ {
+ "plain": "A History of Coastal Lights"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "subtitle"
+ ],
"language": "none"
},
"utterances": [
@@ -66,10 +130,41 @@
}
]
},
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "subtitle"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Subtitle."
+ },
+ {
+ "plain": "A History of Coastal Lights"
+ }
+ ]
+ },
{
"options": {
"format": "ssml"
},
+ "utterances": [
+ {
+ "ssml": "A History of Coastal Lights"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "subtitle"
+ ]
+ },
"utterances": [
{
"ssml": "Subtitle."
@@ -82,9 +177,15 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "subtitle"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Subtitle."
+ },
{
"ssml": "A History of Coastal Lights"
}
@@ -93,6 +194,9 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "subtitle"
+ ],
"language": "always"
},
"utterances": [
@@ -107,6 +211,27 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "subtitle"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Subtitle."
+ },
+ {
+ "ssml": "A History of Coastal Lights"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "subtitle"
+ ],
"language": "block-level"
},
"utterances": [
@@ -121,6 +246,27 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "subtitle"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Subtitle."
+ },
+ {
+ "ssml": "A History of Coastal Lights"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "subtitle"
+ ],
"language": "none"
},
"utterances": [
@@ -131,6 +277,24 @@
"ssml": "A History of Coastal Lights"
}
]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "subtitle"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Subtitle."
+ },
+ {
+ "ssml": "A History of Coastal Lights"
+ }
+ ]
}
]
}
diff --git a/fixtures/summary-html-native/utterances.json b/fixtures/summary-html-native/utterances.json
index 1a0be5c..6524355 100644
--- a/fixtures/summary-html-native/utterances.json
+++ b/fixtures/summary-html-native/utterances.json
@@ -5,6 +5,24 @@
"format": "plain"
},
"utterances": [
+ {
+ "plain": "Click to expand",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "summary"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
{
"plain": "Click to expand"
}
@@ -13,9 +31,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "summary"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Click to expand"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "summary"
+ ],
"language": "always"
},
"utterances": [
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
{
"plain": "Click to expand"
}
@@ -24,9 +67,54 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "summary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Click to expand"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "summary"
+ ],
"language": "block-level"
},
"utterances": [
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Click to expand"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "summary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
{
"plain": "Click to expand"
}
@@ -35,9 +123,35 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "summary"
+ ],
"language": "none"
},
"utterances": [
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Click to expand"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "summary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Summary.",
+ "startsNewBlock": true
+ },
{
"plain": "Click to expand"
}
@@ -48,6 +162,24 @@
"format": "ssml"
},
"utterances": [
+ {
+ "ssml": "Click to expand",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "summary"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
{
"ssml": "Click to expand"
}
@@ -56,9 +188,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "summary"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "summary"
+ ],
"language": "always"
},
"utterances": [
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
{
"ssml": "Click to expand"
}
@@ -67,9 +224,54 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "summary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "summary"
+ ],
"language": "block-level"
},
"utterances": [
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "summary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
{
"ssml": "Click to expand"
}
@@ -78,9 +280,35 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "summary"
+ ],
"language": "none"
},
"utterances": [
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Click to expand"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "summary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Summary.",
+ "startsNewBlock": true
+ },
{
"ssml": "Click to expand"
}
diff --git a/fixtures/table-html-native/utterances.json b/fixtures/table-html-native/utterances.json
index 017acfd..3407cab 100644
--- a/fixtures/table-html-native/utterances.json
+++ b/fixtures/table-html-native/utterances.json
@@ -6,179 +6,28751 @@
},
"utterances": [
{
- "plain": "Start of the table."
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
},
{
"plain": "Name"
},
{
- "plain": "Role"
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
},
{
- "plain": "Ada"
+ "ssml": "Name"
},
{
- "plain": "Engineer"
+ "ssml": "Column header.",
+ "startsNewBlock": true
},
{
- "plain": "Grace"
+ "ssml": "Role"
},
{
- "plain": "Admiral"
+ "ssml": "End of the row."
},
{
- "plain": "End of the table."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "contextualize": false
- },
- "utterances": [
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
{
- "plain": "Name"
+ "ssml": "Row header."
},
{
- "plain": "Role"
+ "ssml": "Ada"
},
{
- "plain": "Ada"
+ "ssml": "Cell.",
+ "startsNewBlock": true
},
{
- "plain": "Engineer"
+ "ssml": "Engineer"
},
{
- "plain": "Grace"
+ "ssml": "End of the row."
},
{
- "plain": "Admiral"
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
}
]
},
{
"options": {
- "format": "plain",
- "language": "always"
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the table."
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
},
{
- "plain": "Name"
+ "ssml": "Start of the row."
},
{
- "plain": "Role"
+ "ssml": "Column header."
},
{
- "plain": "Ada"
+ "ssml": "Name"
},
{
- "plain": "Engineer"
+ "ssml": "Column header.",
+ "startsNewBlock": true
},
{
- "plain": "Grace"
+ "ssml": "Role"
},
{
- "plain": "Admiral"
+ "ssml": "End of the row."
},
{
- "plain": "End of the table."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
{
- "plain": "Start of the table."
+ "ssml": "Row header."
},
{
- "plain": "Name"
+ "ssml": "Ada"
},
{
- "plain": "Role"
+ "ssml": "Cell.",
+ "startsNewBlock": true
},
{
- "plain": "Ada"
+ "ssml": "Engineer"
},
{
- "plain": "Engineer"
+ "ssml": "End of the row."
},
{
- "plain": "Grace"
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
},
{
- "plain": "Admiral"
+ "ssml": "Row header."
},
{
- "plain": "End of the table."
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
}
]
},
{
"options": {
- "format": "plain",
- "language": "none"
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
},
"utterances": [
{
- "plain": "Start of the table."
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
},
{
- "plain": "Name"
+ "ssml": "Start of the row."
},
{
- "plain": "Role"
+ "ssml": "Column header."
},
{
- "plain": "Ada"
+ "ssml": "Name"
},
{
- "plain": "Engineer"
+ "ssml": "Column header.",
+ "startsNewBlock": true
},
{
- "plain": "Grace"
+ "ssml": "Role"
},
{
- "plain": "Admiral"
+ "ssml": "End of the row."
},
{
- "plain": "End of the table."
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the table."
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
},
{
"ssml": "Name"
},
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
{
"ssml": "Role"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Ada"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Engineer"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Grace"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Admiral"
},
+ {
+ "ssml": "End of the row."
+ },
{
"ssml": "End of the table."
}
@@ -187,56 +28759,161 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
},
"utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
{
"ssml": "Name"
},
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
{
"ssml": "Role"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Ada"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Engineer"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Grace"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
}
]
},
{
"options": {
"format": "ssml",
- "language": "always"
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the table."
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
},
{
"ssml": "Name"
},
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
{
"ssml": "Role"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Ada"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Engineer"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Grace"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Admiral"
},
+ {
+ "ssml": "End of the row."
+ },
{
"ssml": "End of the table."
}
@@ -245,30 +28922,79 @@
{
"options": {
"format": "ssml",
- "language": "block-level"
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
},
"utterances": [
{
- "ssml": "Start of the table."
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
},
{
"ssml": "Name"
},
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
{
"ssml": "Role"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Ada"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Engineer"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Grace"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Admiral"
},
+ {
+ "ssml": "End of the row."
+ },
{
"ssml": "End of the table."
}
@@ -277,30 +29003,80 @@
{
"options": {
"format": "ssml",
- "language": "none"
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the table."
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
},
{
"ssml": "Name"
},
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
{
"ssml": "Role"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Ada"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Engineer"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Grace"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Admiral"
},
+ {
+ "ssml": "End of the row."
+ },
{
"ssml": "End of the table."
}
diff --git a/fixtures/table-role-aria/utterances.json b/fixtures/table-role-aria/utterances.json
index 017acfd..3407cab 100644
--- a/fixtures/table-role-aria/utterances.json
+++ b/fixtures/table-role-aria/utterances.json
@@ -6,179 +6,28751 @@
},
"utterances": [
{
- "plain": "Start of the table."
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
},
{
"plain": "Name"
},
{
- "plain": "Role"
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Start of the row."
+ },
+ {
+ "plain": "Column header."
+ },
+ {
+ "plain": "Name"
+ },
+ {
+ "plain": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Role"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Ada"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Engineer"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Row header."
+ },
+ {
+ "plain": "Grace"
+ },
+ {
+ "plain": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Admiral"
+ },
+ {
+ "plain": "End of the row."
+ },
+ {
+ "plain": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Engineer",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Admiral",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Ada",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Grace",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Name",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Role",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "Row header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the table."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Column header."
+ },
+ {
+ "ssml": "Name"
+ },
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Role"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
},
{
- "plain": "Ada"
+ "ssml": "Name"
},
{
- "plain": "Engineer"
+ "ssml": "Column header.",
+ "startsNewBlock": true
},
{
- "plain": "Grace"
+ "ssml": "Role"
},
{
- "plain": "Admiral"
+ "ssml": "End of the row."
},
{
- "plain": "End of the table."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "contextualize": false
- },
- "utterances": [
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
{
- "plain": "Name"
+ "ssml": "Row header."
},
{
- "plain": "Role"
+ "ssml": "Ada"
},
{
- "plain": "Ada"
+ "ssml": "Cell.",
+ "startsNewBlock": true
},
{
- "plain": "Engineer"
+ "ssml": "Engineer"
},
{
- "plain": "Grace"
+ "ssml": "End of the row."
},
{
- "plain": "Admiral"
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
}
]
},
{
"options": {
- "format": "plain",
- "language": "always"
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the table."
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
},
{
- "plain": "Name"
+ "ssml": "Start of the row."
},
{
- "plain": "Role"
+ "ssml": "Column header."
},
{
- "plain": "Ada"
+ "ssml": "Name"
},
{
- "plain": "Engineer"
+ "ssml": "Column header.",
+ "startsNewBlock": true
},
{
- "plain": "Grace"
+ "ssml": "Role"
},
{
- "plain": "Admiral"
+ "ssml": "End of the row."
},
{
- "plain": "End of the table."
- }
- ]
- },
- {
- "options": {
- "format": "plain",
- "language": "block-level"
- },
- "utterances": [
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
{
- "plain": "Start of the table."
+ "ssml": "Row header."
},
{
- "plain": "Name"
+ "ssml": "Ada"
},
{
- "plain": "Role"
+ "ssml": "Cell.",
+ "startsNewBlock": true
},
{
- "plain": "Ada"
+ "ssml": "Engineer"
},
{
- "plain": "Engineer"
+ "ssml": "End of the row."
},
{
- "plain": "Grace"
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
},
{
- "plain": "Admiral"
+ "ssml": "Row header."
},
{
- "plain": "End of the table."
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
}
]
},
{
"options": {
- "format": "plain",
- "language": "none"
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always"
},
"utterances": [
{
- "plain": "Start of the table."
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
},
{
- "plain": "Name"
+ "ssml": "Start of the row."
},
{
- "plain": "Role"
+ "ssml": "Column header."
},
{
- "plain": "Ada"
+ "ssml": "Name"
},
{
- "plain": "Engineer"
+ "ssml": "Column header.",
+ "startsNewBlock": true
},
{
- "plain": "Grace"
+ "ssml": "Role"
},
{
- "plain": "Admiral"
+ "ssml": "End of the row."
},
{
- "plain": "End of the table."
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Ada"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Engineer"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
+ {
+ "ssml": "Grace"
+ },
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
}
]
},
{
"options": {
- "format": "ssml"
+ "format": "ssml",
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the table."
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
},
{
"ssml": "Name"
},
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
{
"ssml": "Role"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Ada"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Engineer"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Grace"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Admiral"
},
+ {
+ "ssml": "End of the row."
+ },
{
"ssml": "End of the table."
}
@@ -187,56 +28759,161 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level"
},
"utterances": [
+ {
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
+ },
{
"ssml": "Name"
},
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
{
"ssml": "Role"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Ada"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Engineer"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Grace"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Admiral"
+ },
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "End of the table."
}
]
},
{
"options": {
"format": "ssml",
- "language": "always"
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the table."
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
},
{
"ssml": "Name"
},
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
{
"ssml": "Role"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Ada"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Engineer"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Grace"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Admiral"
},
+ {
+ "ssml": "End of the row."
+ },
{
"ssml": "End of the table."
}
@@ -245,30 +28922,79 @@
{
"options": {
"format": "ssml",
- "language": "block-level"
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none"
},
"utterances": [
{
- "ssml": "Start of the table."
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
},
{
"ssml": "Name"
},
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
{
"ssml": "Role"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Ada"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Engineer"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Grace"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Admiral"
},
+ {
+ "ssml": "End of the row."
+ },
{
"ssml": "End of the table."
}
@@ -277,30 +29003,80 @@
{
"options": {
"format": "ssml",
- "language": "none"
+ "contextualize": [
+ "table",
+ "row",
+ "columnheader",
+ "rowheader",
+ "cell"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the table."
+ "ssml": "Start of the table.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Start of the row."
+ },
+ {
+ "ssml": "Column header."
},
{
"ssml": "Name"
},
+ {
+ "ssml": "Column header.",
+ "startsNewBlock": true
+ },
{
"ssml": "Role"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Ada"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Engineer"
},
+ {
+ "ssml": "End of the row."
+ },
+ {
+ "ssml": "Start of the row.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Row header."
+ },
{
"ssml": "Grace"
},
+ {
+ "ssml": "Cell.",
+ "startsNewBlock": true
+ },
{
"ssml": "Admiral"
},
+ {
+ "ssml": "End of the row."
+ },
{
"ssml": "End of the table."
}
diff --git a/fixtures/term-epub-type/utterances.json b/fixtures/term-epub-type/utterances.json
index 992756e..d3c2147 100644
--- a/fixtures/term-epub-type/utterances.json
+++ b/fixtures/term-epub-type/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the glossary."
+ "plain": "lighthouse",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"plain": "lighthouse"
@@ -19,22 +34,58 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "glossary"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
{
"plain": "lighthouse"
+ },
+ {
+ "plain": "End of the glossary."
}
]
},
{
"options": {
"format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Start of the glossary."
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "lighthouse"
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"plain": "lighthouse"
@@ -47,11 +98,37 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the glossary."
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "lighthouse"
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"plain": "lighthouse"
@@ -64,11 +141,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the glossary."
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
"plain": "lighthouse"
@@ -80,73 +161,894 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Start of the glossary."
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
},
{
- "ssml": "lighthouse"
+ "plain": "lighthouse"
},
{
- "ssml": "End of the glossary."
+ "plain": "End of the glossary."
}
]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ]
},
"utterances": [
{
- "ssml": "lighthouse"
+ "plain": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "lighthouse"
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the glossary."
+ "plain": "Term.",
+ "startsNewBlock": true
},
{
- "ssml": "lighthouse"
+ "plain": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the glossary."
+ "plain": "lighthouse"
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the glossary."
+ "plain": "Term.",
+ "startsNewBlock": true
},
{
- "ssml": "lighthouse"
+ "plain": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the glossary."
+ "plain": "lighthouse"
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the glossary."
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ },
+ {
+ "plain": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "lighthouse",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "lighthouse"
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "lighthouse"
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "lighthouse"
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "lighthouse"
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "lighthouse"
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "lighthouse"
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "lighthouse"
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "lighthouse"
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ },
+ {
+ "ssml": "End of the glossary."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "glossary",
+ "term"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the glossary.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Term."
},
{
"ssml": "lighthouse"
diff --git a/fixtures/term-html-native/utterances.json b/fixtures/term-html-native/utterances.json
index 7fea59f..e067f64 100644
--- a/fixtures/term-html-native/utterances.json
+++ b/fixtures/term-html-native/utterances.json
@@ -13,9 +13,66 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "term"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
"language": "always"
},
"utterances": [
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term."
+ },
{
"plain": "lighthouse"
}
@@ -24,9 +81,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "term"
+ ],
"language": "block-level"
},
"utterances": [
+ {
+ "plain": "Term."
+ },
{
"plain": "lighthouse"
}
@@ -35,9 +98,51 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
"language": "none"
},
"utterances": [
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term."
+ },
{
"plain": "lighthouse"
}
@@ -56,9 +161,66 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "term"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
"language": "always"
},
"utterances": [
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term."
+ },
{
"ssml": "lighthouse"
}
@@ -67,9 +229,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "term"
+ ],
"language": "block-level"
},
"utterances": [
+ {
+ "ssml": "Term."
+ },
{
"ssml": "lighthouse"
}
@@ -78,9 +246,51 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
"language": "none"
},
"utterances": [
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term."
+ },
{
"ssml": "lighthouse"
}
diff --git a/fixtures/term-role-aria/utterances.json b/fixtures/term-role-aria/utterances.json
index 7fea59f..e067f64 100644
--- a/fixtures/term-role-aria/utterances.json
+++ b/fixtures/term-role-aria/utterances.json
@@ -13,9 +13,66 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "term"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
"language": "always"
},
"utterances": [
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term."
+ },
{
"plain": "lighthouse"
}
@@ -24,9 +81,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "term"
+ ],
"language": "block-level"
},
"utterances": [
+ {
+ "plain": "Term."
+ },
{
"plain": "lighthouse"
}
@@ -35,9 +98,51 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
"language": "none"
},
"utterances": [
+ {
+ "plain": "Term."
+ },
+ {
+ "plain": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "term"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Term."
+ },
{
"plain": "lighthouse"
}
@@ -56,9 +161,66 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "term"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
"language": "always"
},
"utterances": [
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term."
+ },
{
"ssml": "lighthouse"
}
@@ -67,9 +229,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "term"
+ ],
"language": "block-level"
},
"utterances": [
+ {
+ "ssml": "Term."
+ },
{
"ssml": "lighthouse"
}
@@ -78,9 +246,51 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
"language": "none"
},
"utterances": [
+ {
+ "ssml": "Term."
+ },
+ {
+ "ssml": "lighthouse"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "term"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Term."
+ },
{
"ssml": "lighthouse"
}
diff --git a/fixtures/tip-epub-type/utterances.json b/fixtures/tip-epub-type/utterances.json
index 4aa81d0..744a9d6 100644
--- a/fixtures/tip-epub-type/utterances.json
+++ b/fixtures/tip-epub-type/utterances.json
@@ -6,10 +6,22 @@
},
"utterances": [
{
- "plain": "Start of the aside."
- },
+ "plain": "Tip: wind the mechanism fully before dusk.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
{
- "plain": "Tip."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
"plain": "Tip: wind the mechanism fully before dusk."
@@ -22,34 +34,58 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"aside"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
},
"utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
{
"plain": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "plain": "End of the aside."
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
- "plain": "Start of the aside."
- },
- {
- "plain": "Tip."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
"plain": "Tip: wind the mechanism fully before dusk."
@@ -62,14 +98,37 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "aside"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Start of the aside."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
- "plain": "Tip."
+ "plain": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
"plain": "Tip: wind the mechanism fully before dusk."
@@ -82,14 +141,37 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "aside"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Start of the aside."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
- "plain": "Tip."
+ "plain": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
"plain": "Tip: wind the mechanism fully before dusk."
@@ -101,102 +183,1696 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "tip"
+ ]
},
"utterances": [
{
- "ssml": "Start of the aside."
+ "plain": "Tip.",
+ "startsNewBlock": true
},
{
- "ssml": "Tip."
+ "plain": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "tip"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Tip.",
+ "startsNewBlock": true
},
{
- "ssml": "Tip: wind the mechanism fully before dusk."
+ "plain": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Tip.",
+ "startsNewBlock": true
},
{
- "ssml": "End of the aside."
+ "plain": "Tip: wind the mechanism fully before dusk."
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
- "aside"
+ "format": "plain",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "tip"
]
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Tip."
+ },
+ {
+ "plain": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Tip: wind the mechanism fully before dusk."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Tip."
+ },
+ {
+ "plain": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "plain": "End of the aside."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the aside."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
- "ssml": "Tip."
+ "plain": "Tip."
},
{
- "ssml": "Tip: wind the mechanism fully before dusk."
+ "plain": "Tip: wind the mechanism fully before dusk."
},
{
- "ssml": "End of the aside."
+ "plain": "End of the aside."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Tip."
+ },
+ {
+ "plain": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the aside."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
- "ssml": "Tip."
+ "plain": "Tip."
},
{
- "ssml": "Tip: wind the mechanism fully before dusk."
+ "plain": "Tip: wind the mechanism fully before dusk."
},
{
- "ssml": "End of the aside."
+ "plain": "End of the aside."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Tip."
+ },
+ {
+ "plain": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the aside."
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
},
{
- "ssml": "Tip."
+ "plain": "Tip."
},
{
- "ssml": "Tip: wind the mechanism fully before dusk."
+ "plain": "Tip: wind the mechanism fully before dusk."
},
{
- "ssml": "End of the aside."
+ "plain": "End of the aside."
}
]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Tip."
+ },
+ {
+ "plain": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "plain": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "tip"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "tip"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "tip"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "tip"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "tip"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "tip"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "tip"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "tip"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "tip"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "tip"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "tip"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "tip"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip."
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip."
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip."
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip."
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip."
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip."
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip."
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the aside.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip."
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ },
+ {
+ "ssml": "End of the aside."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "tip"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "tip"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "tip"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "tip"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "tip"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "tip"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "tip"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "tip"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "tip"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "aside"
+ ],
+ "contextualize": [
+ "aside",
+ "tip"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/tip-role-aria/utterances.json b/fixtures/tip-role-aria/utterances.json
index b558cbd..5e0e402 100644
--- a/fixtures/tip-role-aria/utterances.json
+++ b/fixtures/tip-role-aria/utterances.json
@@ -6,7 +6,22 @@
},
"utterances": [
{
- "plain": "Tip."
+ "plain": "Tip: wind the mechanism fully before dusk.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "tip"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Tip.",
+ "startsNewBlock": true
},
{
"plain": "Tip: wind the mechanism fully before dusk."
@@ -16,9 +31,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "tip"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Tip.",
+ "startsNewBlock": true
+ },
{
"plain": "Tip: wind the mechanism fully before dusk."
}
@@ -27,11 +49,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "tip"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Tip."
+ "plain": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Tip.",
+ "startsNewBlock": true
},
{
"plain": "Tip: wind the mechanism fully before dusk."
@@ -41,11 +86,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "tip"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Tip."
+ "plain": "Tip.",
+ "startsNewBlock": true
},
{
"plain": "Tip: wind the mechanism fully before dusk."
@@ -55,11 +104,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "tip"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Tip."
+ "plain": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Tip.",
+ "startsNewBlock": true
},
{
"plain": "Tip: wind the mechanism fully before dusk."
@@ -72,7 +163,22 @@
},
"utterances": [
{
- "ssml": "Tip."
+ "ssml": "Tip: wind the mechanism fully before dusk.",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "tip"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Tip.",
+ "startsNewBlock": true
},
{
"ssml": "Tip: wind the mechanism fully before dusk."
@@ -82,9 +188,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "tip"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Tip.",
+ "startsNewBlock": true
+ },
{
"ssml": "Tip: wind the mechanism fully before dusk."
}
@@ -93,11 +206,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "tip"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Tip."
+ "ssml": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Tip.",
+ "startsNewBlock": true
},
{
"ssml": "Tip: wind the mechanism fully before dusk."
@@ -107,11 +243,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "tip"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Tip."
+ "ssml": "Tip.",
+ "startsNewBlock": true
},
{
"ssml": "Tip: wind the mechanism fully before dusk."
@@ -121,11 +261,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "tip"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Tip."
+ "ssml": "Tip.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Tip: wind the mechanism fully before dusk."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "tip"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Tip.",
+ "startsNewBlock": true
},
{
"ssml": "Tip: wind the mechanism fully before dusk."
diff --git a/fixtures/toc-epub-type/utterances.json b/fixtures/toc-epub-type/utterances.json
index 1a07a1e..5db14bc 100644
--- a/fixtures/toc-epub-type/utterances.json
+++ b/fixtures/toc-epub-type/utterances.json
@@ -4,18 +4,43 @@
"options": {
"format": "plain"
},
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc"
+ ]
+ },
"utterances": [
{
"plain": "Start of the table of contents."
},
{
- "plain": "Chapter One"
+ "plain": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Two"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Three"
+ "plain": "Chapter Three",
+ "startsNewBlock": true
},
{
"plain": "End of the table of contents."
@@ -25,46 +50,85 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"toc"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "toc"
+ ],
+ "language": "always"
},
"utterances": [
{
- "plain": "Chapter One"
+ "plain": "Start of the table of contents."
},
{
- "plain": "Chapter Two"
+ "plain": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Three"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table of contents."
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "toc"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "Start of the table of contents."
},
{
- "plain": "Chapter One"
+ "plain": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Two"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Three"
+ "plain": "Chapter Three",
+ "startsNewBlock": true
},
{
"plain": "End of the table of contents."
@@ -74,6 +138,9 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "toc"
+ ],
"language": "block-level"
},
"utterances": [
@@ -81,13 +148,16 @@
"plain": "Start of the table of contents."
},
{
- "plain": "Chapter One"
+ "plain": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Two"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Three"
+ "plain": "Chapter Three",
+ "startsNewBlock": true
},
{
"plain": "End of the table of contents."
@@ -97,20 +167,27 @@
{
"options": {
"format": "plain",
- "language": "none"
+ "contextualize": [
+ "toc"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "Start of the table of contents."
},
{
- "plain": "Chapter One"
+ "plain": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Two"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Three"
+ "plain": "Chapter Three",
+ "startsNewBlock": true
},
{
"plain": "End of the table of contents."
@@ -119,120 +196,5603 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "toc"
+ ],
+ "language": "none"
},
"utterances": [
{
- "ssml": "Start of the table of contents."
+ "plain": "Start of the table of contents."
},
{
- "ssml": "Chapter One"
+ "plain": "Chapter One",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter Two"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter Three"
+ "plain": "Chapter Three",
+ "startsNewBlock": true
},
{
- "ssml": "End of the table of contents."
+ "plain": "End of the table of contents."
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
+ "format": "plain",
+ "contextualize": [
"toc"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
]
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Chapter One"
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter Two"
+ "plain": "Chapter One"
},
{
- "ssml": "Chapter Three"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the table of contents."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter One"
+ "plain": "Chapter One"
},
{
- "ssml": "Chapter Two"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter Three"
+ "plain": "Chapter Three",
+ "startsNewBlock": true
},
{
- "ssml": "End of the table of contents."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the table of contents."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter One"
+ "plain": "Chapter One"
},
{
- "ssml": "Chapter Two"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter Three"
+ "plain": "Chapter Three",
+ "startsNewBlock": true
},
{
- "ssml": "End of the table of contents."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the table of contents."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter One"
+ "plain": "Chapter One"
},
{
- "ssml": "Chapter Two"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter Three"
+ "plain": "Chapter Three",
+ "startsNewBlock": true
},
{
- "ssml": "End of the table of contents."
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
}
]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/toc-role-aria/utterances.json b/fixtures/toc-role-aria/utterances.json
index 1a07a1e..5db14bc 100644
--- a/fixtures/toc-role-aria/utterances.json
+++ b/fixtures/toc-role-aria/utterances.json
@@ -4,18 +4,43 @@
"options": {
"format": "plain"
},
+ "utterances": [
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc"
+ ]
+ },
"utterances": [
{
"plain": "Start of the table of contents."
},
{
- "plain": "Chapter One"
+ "plain": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Two"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Three"
+ "plain": "Chapter Three",
+ "startsNewBlock": true
},
{
"plain": "End of the table of contents."
@@ -25,46 +50,85 @@
{
"options": {
"format": "plain",
- "skip": [
+ "contextualize": [
"toc"
- ]
+ ],
+ "inlineContextualization": true
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
},
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "toc"
+ ],
+ "language": "always"
},
"utterances": [
{
- "plain": "Chapter One"
+ "plain": "Start of the table of contents."
},
{
- "plain": "Chapter Two"
+ "plain": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Three"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table of contents."
}
]
},
{
"options": {
"format": "plain",
- "language": "always"
+ "contextualize": [
+ "toc"
+ ],
+ "language": "always",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "Start of the table of contents."
},
{
- "plain": "Chapter One"
+ "plain": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Two"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Three"
+ "plain": "Chapter Three",
+ "startsNewBlock": true
},
{
"plain": "End of the table of contents."
@@ -74,6 +138,9 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "toc"
+ ],
"language": "block-level"
},
"utterances": [
@@ -81,13 +148,16 @@
"plain": "Start of the table of contents."
},
{
- "plain": "Chapter One"
+ "plain": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Two"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Three"
+ "plain": "Chapter Three",
+ "startsNewBlock": true
},
{
"plain": "End of the table of contents."
@@ -97,20 +167,27 @@
{
"options": {
"format": "plain",
- "language": "none"
+ "contextualize": [
+ "toc"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
},
"utterances": [
{
"plain": "Start of the table of contents."
},
{
- "plain": "Chapter One"
+ "plain": "Chapter One",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Two"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
},
{
- "plain": "Chapter Three"
+ "plain": "Chapter Three",
+ "startsNewBlock": true
},
{
"plain": "End of the table of contents."
@@ -119,120 +196,5603 @@
},
{
"options": {
- "format": "ssml"
+ "format": "plain",
+ "contextualize": [
+ "toc"
+ ],
+ "language": "none"
},
"utterances": [
{
- "ssml": "Start of the table of contents."
+ "plain": "Start of the table of contents."
},
{
- "ssml": "Chapter One"
+ "plain": "Chapter One",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter Two"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter Three"
+ "plain": "Chapter Three",
+ "startsNewBlock": true
},
{
- "ssml": "End of the table of contents."
+ "plain": "End of the table of contents."
}
]
},
{
"options": {
- "format": "ssml",
- "skip": [
+ "format": "plain",
+ "contextualize": [
"toc"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
]
},
- "utterances": []
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
},
{
"options": {
- "format": "ssml",
- "contextualize": false
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
},
"utterances": [
{
- "ssml": "Chapter One"
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter Two"
+ "plain": "Chapter One"
},
{
- "ssml": "Chapter Three"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Start of the table of contents."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter One"
+ "plain": "Chapter One"
},
{
- "ssml": "Chapter Two"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter Three"
+ "plain": "Chapter Three",
+ "startsNewBlock": true
},
{
- "ssml": "End of the table of contents."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Start of the table of contents."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter One"
+ "plain": "Chapter One"
},
{
- "ssml": "Chapter Two"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter Three"
+ "plain": "Chapter Three",
+ "startsNewBlock": true
},
{
- "ssml": "End of the table of contents."
+ "plain": "End of the list."
}
]
},
{
"options": {
- "format": "ssml",
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Start of the table of contents."
+ "plain": "Start of the list.",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter One"
+ "plain": "Chapter One"
},
{
- "ssml": "Chapter Two"
+ "plain": "Chapter Two",
+ "startsNewBlock": true
},
{
- "ssml": "Chapter Three"
+ "plain": "Chapter Three",
+ "startsNewBlock": true
},
{
- "ssml": "End of the table of contents."
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
}
]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Start of the table of contents."
+ },
+ {
+ "plain": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "List item."
+ },
+ {
+ "plain": "Chapter One"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Two"
+ },
+ {
+ "plain": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "Chapter Three"
+ },
+ {
+ "plain": "End of the list."
+ },
+ {
+ "plain": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "plain",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml"
+ },
+ "utterances": [
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Chapter One",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "Chapter Two",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Start of the table of contents."
+ },
+ {
+ "ssml": "Start of the list.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "List item."
+ },
+ {
+ "ssml": "Chapter One"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Two"
+ },
+ {
+ "ssml": "List item.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "Chapter Three"
+ },
+ {
+ "ssml": "End of the list."
+ },
+ {
+ "ssml": "End of the table of contents."
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ]
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "always"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "none"
+ },
+ "utterances": []
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "skip": [
+ "toc"
+ ],
+ "contextualize": [
+ "toc",
+ "list",
+ "listItem"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": []
}
]
}
diff --git a/fixtures/video-html-native/utterances.json b/fixtures/video-html-native/utterances.json
index 6e1c09f..fe20033 100644
--- a/fixtures/video-html-native/utterances.json
+++ b/fixtures/video-html-native/utterances.json
@@ -6,7 +6,21 @@
},
"utterances": [
{
- "plain": "Video."
+ "plain": "The lamp mechanism rotating at dusk"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "video"
+ ]
+ },
+ "utterances": [
+ {
+ "plain": "Video.",
+ "startsNewBlock": true
},
{
"plain": "The lamp mechanism rotating at dusk"
@@ -16,9 +30,16 @@
{
"options": {
"format": "plain",
- "contextualize": false
+ "contextualize": [
+ "video"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "plain": "Video.",
+ "startsNewBlock": true
+ },
{
"plain": "The lamp mechanism rotating at dusk"
}
@@ -27,11 +48,34 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "video"
+ ],
"language": "always"
},
"utterances": [
{
- "plain": "Video."
+ "plain": "Video.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The lamp mechanism rotating at dusk"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "video"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Video.",
+ "startsNewBlock": true
},
{
"plain": "The lamp mechanism rotating at dusk"
@@ -41,11 +85,15 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "video"
+ ],
"language": "block-level"
},
"utterances": [
{
- "plain": "Video."
+ "plain": "Video.",
+ "startsNewBlock": true
},
{
"plain": "The lamp mechanism rotating at dusk"
@@ -55,11 +103,53 @@
{
"options": {
"format": "plain",
+ "contextualize": [
+ "video"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Video.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The lamp mechanism rotating at dusk"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "video"
+ ],
"language": "none"
},
"utterances": [
{
- "plain": "Video."
+ "plain": "Video.",
+ "startsNewBlock": true
+ },
+ {
+ "plain": "The lamp mechanism rotating at dusk"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "plain",
+ "contextualize": [
+ "video"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "plain": "Video.",
+ "startsNewBlock": true
},
{
"plain": "The lamp mechanism rotating at dusk"
@@ -72,7 +162,21 @@
},
"utterances": [
{
- "ssml": "Video."
+ "ssml": "The lamp mechanism rotating at dusk"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "video"
+ ]
+ },
+ "utterances": [
+ {
+ "ssml": "Video.",
+ "startsNewBlock": true
},
{
"ssml": "The lamp mechanism rotating at dusk"
@@ -82,9 +186,16 @@
{
"options": {
"format": "ssml",
- "contextualize": false
+ "contextualize": [
+ "video"
+ ],
+ "inlineContextualization": true
},
"utterances": [
+ {
+ "ssml": "Video.",
+ "startsNewBlock": true
+ },
{
"ssml": "The lamp mechanism rotating at dusk"
}
@@ -93,11 +204,34 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "video"
+ ],
"language": "always"
},
"utterances": [
{
- "ssml": "Video."
+ "ssml": "Video.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp mechanism rotating at dusk"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "video"
+ ],
+ "language": "always",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Video.",
+ "startsNewBlock": true
},
{
"ssml": "The lamp mechanism rotating at dusk"
@@ -107,11 +241,15 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "video"
+ ],
"language": "block-level"
},
"utterances": [
{
- "ssml": "Video."
+ "ssml": "Video.",
+ "startsNewBlock": true
},
{
"ssml": "The lamp mechanism rotating at dusk"
@@ -121,11 +259,53 @@
{
"options": {
"format": "ssml",
+ "contextualize": [
+ "video"
+ ],
+ "language": "block-level",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Video.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp mechanism rotating at dusk"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "video"
+ ],
"language": "none"
},
"utterances": [
{
- "ssml": "Video."
+ "ssml": "Video.",
+ "startsNewBlock": true
+ },
+ {
+ "ssml": "The lamp mechanism rotating at dusk"
+ }
+ ]
+ },
+ {
+ "options": {
+ "format": "ssml",
+ "contextualize": [
+ "video"
+ ],
+ "language": "none",
+ "inlineContextualization": true
+ },
+ "utterances": [
+ {
+ "ssml": "Video.",
+ "startsNewBlock": true
},
{
"ssml": "The lamp mechanism rotating at dusk"
diff --git a/package.json b/package.json
index 84f006a..b86165b 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@readium/speech",
- "version": "0.5.0",
+ "version": "0.6.0",
"description": "A TypeScript library for implementing read aloud features with Web technologies, following best practices for digital publishing.",
"author": "Readium Foundation",
"keywords": [
diff --git a/scripts/generate-utterances.js b/scripts/generate-utterances.js
index b4b8be3..35b8dd8 100644
--- a/scripts/generate-utterances.js
+++ b/scripts/generate-utterances.js
@@ -5,19 +5,11 @@ import { fileURLToPath } from "url";
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const FIXTURES_DIR = path.join(__dirname, "../fixtures");
-// Regenerates every fixture's utterances.json — a flat `cases` array, each
-// a full ExtractUtterancesOptions object paired with its expected
-// utterances — from its gnd.json, using the actual @readium/speech build —
-// the exact same extractUtterances() a consumer would call. Run this after
-// any change to extractUtterances.ts, announcements.ts, or roles.ts's
-// skippableRoles that should propagate to the fixture suite (e.g. rewording
-// an announcement, adding a role's contextualization). `npm run build` first.
+// Regenerates every fixture's utterances.json from its gnd.json, using the
+// real @readium/speech build. `npm run build` first.
//
-// This is *not* a substitute for reviewing what changed: utterances.json is
-// still the ground truth other (non-TypeScript) implementations are meant
-// to match, so a diff this script produces should be read over — did the
-// change do what was intended, everywhere it applies — not blindly
-// committed.
+// A case is only stored when it diverges from that fixture's default —
+// unlisted in-scope combinations are implicitly the default (fixtures/README.md).
let mod;
try {
mod = await import("../build/index.js");
@@ -25,7 +17,7 @@ try {
console.error("Run `npm run build` first — could not import build/index.js.");
throw err;
}
-const { extractUtterances, skippableRoles } = mod;
+const { extractUtterances, skippableRoles, defaultAnnouncements } = mod;
function expectedTopLevel(gnd) {
if (gnd && typeof gnd === "object" && !Array.isArray(gnd)) {
@@ -43,10 +35,31 @@ function collectRoles(nodes, acc = new Set()) {
return acc;
}
-function containsPlaceholder(gnd) {
- return JSON.stringify(gnd).includes(" acc.concat(acc.map((set) => [...set, item])), [[]]);
}
+function sortKeysDeep(value) {
+ if (Array.isArray(value)) return value.map(sortKeysDeep);
+ if (value && typeof value === "object") {
+ return Object.keys(value)
+ .sort()
+ .reduce((acc, key) => {
+ acc[key] = sortKeysDeep(value[key]);
+ return acc;
+ }, {});
+ }
+ return value;
+}
+
+function sameUtterances(a, b) {
+ return JSON.stringify(sortKeysDeep(a)) === JSON.stringify(sortKeysDeep(b));
+}
+
+const languageValues = [undefined, "always", "block-level", "none"];
+const inlineContextualizationValues = [false, true];
+
const ids = readdirSync(FIXTURES_DIR, { withFileTypes: true })
.filter((e) => e.isDirectory())
.map((e) => e.name)
@@ -66,35 +79,36 @@ for (const id of ids) {
const nodes = expectedTopLevel(gnd);
const rolesInTree = collectRoles(nodes);
- const variantSpecs = [];
-
- for (const role of skippableRoles) {
- if (rolesInTree.has(role)) variantSpecs.push({ skip: [role] });
- }
-
- const hasAnnouncement = [...rolesInTree].some((role) => mod.defaultAnnouncements?.[role] !== undefined);
- if (hasAnnouncement) variantSpecs.push({ contextualize: false });
-
- if (containsPlaceholder(gnd)) variantSpecs.push({ interruptSentence: true });
-
- // Every `language` state gets its own case for every fixture, per format,
- // regardless of whether it matches the base case.
- const languageSpecs = ["always", "block-level", "none"];
+ const skipSubsets = subsets(skippableRoles.filter((role) => rolesInTree.has(role)));
+ const contextualizeSubsets = subsets(
+ [...rolesInTree].filter((role) => defaultAnnouncements?.[role] !== undefined),
+ );
const cases = [];
for (const format of ["plain", "ssml"]) {
- const base = extractUtterances(nodes, { format });
- cases.push({ options: { format }, utterances: base });
-
- // Ships every applicable variant's case, even when identical to base.
- for (const options of variantSpecs) {
- const utterances = extractUtterances(nodes, { format, ...options });
- cases.push({ options: { format, ...options }, utterances });
- }
-
- for (const language of languageSpecs) {
- const utterances = extractUtterances(nodes, { format, language });
- cases.push({ options: { format, language }, utterances });
+ const defaultUtterances = extractUtterances(nodes, { format });
+ cases.push({ options: { format }, utterances: defaultUtterances });
+
+ for (const skip of skipSubsets) {
+ for (const contextualize of contextualizeSubsets) {
+ for (const language of languageValues) {
+ for (const inlineContextualization of inlineContextualizationValues) {
+ if (skip.length === 0 && contextualize.length === 0 && language === undefined && !inlineContextualization) {
+ continue; // the default case itself, already pushed above
+ }
+ const options = { format };
+ if (skip.length > 0) options.skip = skip;
+ if (contextualize.length > 0) options.contextualize = contextualize;
+ if (language !== undefined) options.language = language;
+ if (inlineContextualization) options.inlineContextualization = true;
+
+ const utterances = extractUtterances(nodes, options);
+ if (!sameUtterances(utterances, defaultUtterances)) {
+ cases.push({ options, utterances });
+ }
+ }
+ }
+ }
}
}
diff --git a/src/index.ts b/src/index.ts
index 448fcb2..f1de8c1 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -19,4 +19,5 @@ export * from "./providerRegistry";
export * from "./speechNavigator";
export * from "./utterance";
export * from "./gnd";
-export * from "./utterances";
\ No newline at end of file
+export * from "./utterances";
+export * from "./preferences";
\ No newline at end of file
diff --git a/src/navigator.ts b/src/navigator.ts
index e8b0f5b..67fe11e 100644
--- a/src/navigator.ts
+++ b/src/navigator.ts
@@ -1,3 +1,7 @@
+import { GndObject } from "./gnd/types";
+import { Configurable } from "./preferences/Configurable";
+import { SpeechPreferences } from "./preferences/SpeechPreferences";
+import { SpeechSettings } from "./preferences/SpeechSettings";
import { ReadiumSpeechVoice } from "./voices/types";
import { ReadiumSpeechUtterance } from "./utterance";
@@ -22,16 +26,21 @@ export interface ReadiumSpeechPlaybackEvent {
detail?: any; // Event-specific data
}
-export interface ReadiumSpeechNavigatorContract {
+export interface ReadiumSpeechNavigatorContract extends Configurable {
// Voice Management
getVoices(): Promise;
setVoice(voice: ReadiumSpeechVoice | string): void;
getCurrentVoice(): ReadiumSpeechVoice | null;
setSpeakInContentLanguage(enabled: boolean): void;
getSpeakInContentLanguage(): boolean;
-
+
// Content Management
loadContent(content: ReadiumSpeechUtterance | ReadiumSpeechUtterance[]): void;
+ // Loads a raw Guided Navigation tree and re-runs extraction whenever
+ // preferences change via `submitPreferences()`. `loadContent()` above
+ // keeps no source, so preference changes are no-ops on content loaded
+ // that way.
+ loadGndContent(nodes: GndObject[]): void;
getCurrentContent(): ReadiumSpeechUtterance | null;
getContentQueue(): ReadiumSpeechUtterance[];
@@ -44,15 +53,7 @@ export interface ReadiumSpeechNavigatorContract {
next(): boolean;
previous(): boolean;
jumpTo(utteranceIndex: number): void;
-
- // Playback Parameters
- setRate(rate: number): void;
- getRate(): number;
- setPitch(pitch: number): void;
- getPitch(): number;
- setVolume(volume: number): void;
- getVolume(): number;
-
+
// State
getState(): ReadiumSpeechPlaybackState;
diff --git a/src/preferences/Configurable.ts b/src/preferences/Configurable.ts
new file mode 100644
index 0000000..d1ce579
--- /dev/null
+++ b/src/preferences/Configurable.ts
@@ -0,0 +1,17 @@
+import { IPreferencesEditor } from "./PreferencesEditor.js";
+
+// Readium's Preferences API shapes
+// (https://readium.org/architecture/proposals/009-preferences-api.html).
+export interface ConfigurableSettings {
+ [key: string]: unknown;
+}
+
+export interface ConfigurablePreferences {
+ merging(other: T): T;
+}
+
+export interface Configurable> {
+ settings: S;
+ submitPreferences(preferences: P): void;
+ preferencesEditor: IPreferencesEditor;
+}
diff --git a/src/preferences/Preference.ts b/src/preferences/Preference.ts
new file mode 100644
index 0000000..05a9475
--- /dev/null
+++ b/src/preferences/Preference.ts
@@ -0,0 +1,202 @@
+import { ensureBoolean, ensureEnumValue, ensureStringArray, ensureValueInRange } from "./guards.js";
+
+export interface IPreference {
+ value: T | null | undefined;
+ effectiveValue: T | null | undefined;
+ isEffective: boolean;
+ clear(): void;
+}
+
+export interface IEnumPreference extends IPreference {
+ supportedValues: T[];
+}
+
+export interface IRangePreference extends IPreference {
+ supportedRange: [T, T];
+ step: number;
+ increment(): void;
+ decrement(): void;
+ format(value: T): string;
+}
+
+export class Preference implements IPreference {
+ protected _value?: T | null;
+ protected readonly _effectiveValue?: T | null;
+ protected readonly _isEffective: boolean;
+ protected _onChange: (newValue: T | null | undefined) => void;
+
+ constructor({
+ initialValue = null,
+ effectiveValue,
+ isEffective,
+ onChange,
+ }: {
+ initialValue?: T | null;
+ effectiveValue?: T | null;
+ isEffective: boolean;
+ onChange: (newValue: T | null | undefined) => void;
+ }) {
+ this._value = initialValue;
+ this._effectiveValue = effectiveValue;
+ this._isEffective = isEffective;
+ this._onChange = onChange;
+ }
+
+ set value(value: T | null | undefined) {
+ this._value = value;
+ this._onChange(this._value);
+ }
+
+ get value(): T | null | undefined {
+ return this._value;
+ }
+
+ get effectiveValue(): T | null | undefined {
+ return this._effectiveValue;
+ }
+
+ get isEffective(): boolean {
+ return this._isEffective;
+ }
+
+ clear(): void {
+ this._value = null;
+ this._onChange(this._value);
+ }
+}
+
+export class EnumPreference extends Preference implements IEnumPreference {
+ private readonly _supportedValues: T[];
+
+ constructor({
+ initialValue = null,
+ effectiveValue,
+ isEffective,
+ onChange,
+ supportedValues,
+ }: {
+ initialValue?: T | null;
+ effectiveValue?: T | null;
+ isEffective: boolean;
+ onChange: (newValue: T | null | undefined) => void;
+ supportedValues: T[];
+ }) {
+ super({ initialValue, effectiveValue, isEffective, onChange });
+ this._supportedValues = supportedValues;
+ }
+
+ set value(value: T | null | undefined) {
+ if (value != null && ensureEnumValue(value, this._supportedValues) === undefined) {
+ throw new Error(`Value '${String(value)}' is not in the supported values for this preference.`);
+ }
+ this._value = value;
+ this._onChange(this._value);
+ }
+
+ get value(): T | null | undefined {
+ return this._value;
+ }
+
+ get supportedValues(): T[] {
+ return this._supportedValues;
+ }
+}
+
+export class BooleanPreference extends Preference {
+ set value(value: boolean | null | undefined) {
+ if (value != null && ensureBoolean(value) === undefined) {
+ throw new Error(`Value '${String(value)}' is not a boolean.`);
+ }
+ this._value = value;
+ this._onChange(this._value);
+ }
+
+ get value(): boolean | null | undefined {
+ return this._value;
+ }
+}
+
+export class StringArrayPreference extends Preference {
+ set value(value: string[] | null | undefined) {
+ if (value != null && ensureStringArray(value) === undefined) {
+ throw new Error(`Value '${String(value)}' is not an array of strings.`);
+ }
+ this._value = value;
+ this._onChange(this._value);
+ }
+
+ get value(): string[] | null | undefined {
+ return this._value;
+ }
+}
+
+export class RangePreference extends Preference implements IRangePreference {
+ private readonly _supportedRange: [T, T];
+ private readonly _step: number;
+ private readonly _decimals: number;
+
+ constructor({
+ initialValue = null,
+ effectiveValue,
+ isEffective,
+ onChange,
+ supportedRange,
+ step,
+ }: {
+ initialValue?: T | null;
+ effectiveValue?: T | null;
+ isEffective: boolean;
+ onChange: (newValue: T | null | undefined) => void;
+ supportedRange: [T, T];
+ step: number;
+ }) {
+ super({ initialValue, effectiveValue, isEffective, onChange });
+ this._supportedRange = supportedRange;
+ this._step = step;
+ this._decimals = this._step.toString().includes(".") ? this._step.toString().split(".")[1].length : 0;
+ }
+
+ set value(value: T | null | undefined) {
+ if (value != null && ensureValueInRange(value, this._supportedRange) === undefined) {
+ throw new Error(`Value '${String(value)}' is out of the supported range for this preference.`);
+ }
+ this._value = value;
+ this._onChange(this._value);
+ }
+
+ get value(): T | null | undefined {
+ return this._value;
+ }
+
+ get supportedRange(): [T, T] {
+ return this._supportedRange;
+ }
+
+ get step(): number {
+ return this._step;
+ }
+
+ increment(): void {
+ if (this._value != null && this._value < this._supportedRange[1]) {
+ this._value = Math.min(
+ Math.round((this._value + this._step) * 10 ** this._decimals) / 10 ** this._decimals,
+ this._supportedRange[1],
+ ) as T;
+ this._onChange(this._value);
+ }
+ }
+
+ decrement(): void {
+ if (this._value != null && this._value > this._supportedRange[0]) {
+ this._value = Math.max(
+ Math.round((this._value - this._step) * 10 ** this._decimals) / 10 ** this._decimals,
+ this._supportedRange[0],
+ ) as T;
+ this._onChange(this._value);
+ }
+ }
+
+ format(value: T): string {
+ return value.toString();
+ }
+}
diff --git a/src/preferences/PreferencesEditor.ts b/src/preferences/PreferencesEditor.ts
new file mode 100644
index 0000000..6fbe5fa
--- /dev/null
+++ b/src/preferences/PreferencesEditor.ts
@@ -0,0 +1,6 @@
+import { ConfigurablePreferences } from "./Configurable.js";
+
+export interface IPreferencesEditor {
+ preferences: ConfigurablePreferences;
+ clear(): void;
+}
diff --git a/src/preferences/SpeechDefaults.ts b/src/preferences/SpeechDefaults.ts
new file mode 100644
index 0000000..fa4707b
--- /dev/null
+++ b/src/preferences/SpeechDefaults.ts
@@ -0,0 +1,59 @@
+import type { GndRole } from "../gnd/types.js";
+import {
+ extractionFormats,
+ languageModes,
+ pauseDurationRangeConfig,
+ pauseScopes,
+ pitchRangeConfig,
+ rateRangeConfig,
+ verbosityPresets,
+ volumeRangeConfig,
+} from "./constraints.js";
+import { ensureBoolean, ensureEnumValue, ensureStringArray, ensureValueInRange } from "./guards.js";
+import type { ExtractionFormat, LanguageMode, PauseScope, VerbosityPreset } from "./SpeechPreferences.js";
+
+// Guarded like ISpeechPreferences — an invalid value here falls back to the literal default below.
+export interface ISpeechDefaults {
+ format?: ExtractionFormat | null;
+ inlineContextualization?: boolean | null;
+ verbosity?: VerbosityPreset | null;
+ skip?: GndRole[] | null;
+ contextualize?: GndRole[] | null;
+ language?: LanguageMode | null;
+ pauseDuration?: number | null;
+ pauseScope?: PauseScope | null;
+ automaticPausesAtPageOrSpreadEnd?: boolean | null;
+ rate?: number | null;
+ pitch?: number | null;
+ volume?: number | null;
+}
+
+export class SpeechDefaults {
+ public readonly format: ExtractionFormat;
+ public readonly inlineContextualization: boolean;
+ public readonly verbosity: VerbosityPreset;
+ public readonly skip: GndRole[];
+ public readonly contextualize: GndRole[];
+ public readonly language: LanguageMode;
+ public readonly pauseDuration: number;
+ public readonly pauseScope: PauseScope;
+ public readonly automaticPausesAtPageOrSpreadEnd: boolean;
+ public readonly rate: number;
+ public readonly pitch: number;
+ public readonly volume: number;
+
+ constructor(defaults: ISpeechDefaults = {}) {
+ this.format = ensureEnumValue(defaults.format, extractionFormats) ?? "plain";
+ this.inlineContextualization = ensureBoolean(defaults.inlineContextualization) ?? false;
+ this.verbosity = ensureEnumValue(defaults.verbosity, verbosityPresets) ?? "few";
+ this.skip = ensureStringArray(defaults.skip) ?? [];
+ this.contextualize = ensureStringArray(defaults.contextualize) ?? [];
+ this.language = ensureEnumValue(defaults.language, languageModes) ?? "always";
+ this.pauseDuration = ensureValueInRange(defaults.pauseDuration, pauseDurationRangeConfig.range) ?? 300;
+ this.pauseScope = ensureEnumValue(defaults.pauseScope, pauseScopes) ?? "utterance";
+ this.automaticPausesAtPageOrSpreadEnd = ensureBoolean(defaults.automaticPausesAtPageOrSpreadEnd) ?? false;
+ this.rate = ensureValueInRange(defaults.rate, rateRangeConfig.range) ?? 1.0;
+ this.pitch = ensureValueInRange(defaults.pitch, pitchRangeConfig.range) ?? 1.0;
+ this.volume = ensureValueInRange(defaults.volume, volumeRangeConfig.range) ?? 1.0;
+ }
+}
diff --git a/src/preferences/SpeechPreferences.ts b/src/preferences/SpeechPreferences.ts
new file mode 100644
index 0000000..8091216
--- /dev/null
+++ b/src/preferences/SpeechPreferences.ts
@@ -0,0 +1,82 @@
+import type { GndRole } from "../gnd/types.js";
+import type { ConfigurablePreferences } from "./Configurable.js";
+import {
+ extractionFormats,
+ languageModes,
+ pauseDurationRangeConfig,
+ pauseScopes,
+ pitchRangeConfig,
+ rateRangeConfig,
+ verbosityPresets,
+ volumeRangeConfig,
+} from "./constraints.js";
+import { ensureBoolean, ensureEnumValue, ensureStringArray, ensureValueInRange } from "./guards.js";
+
+export type VerbosityPreset = "none" | "few" | "some" | "most" | "custom";
+export type LanguageMode = "none" | "block-level" | "always";
+
+export type ExtractionFormat = "plain" | "ssml";
+
+export type PauseScope = "utterance" | "block";
+
+export interface ISpeechPreferences {
+ // Extraction rendering — consumed by extractUtterances via the
+ // Navigator's reextract(), or directly by a standalone
+ // extractUtterances() caller.
+ format?: ExtractionFormat | null; // default "plain"
+ inlineContextualization?: boolean | null; // default false
+
+ // Verbosity group — same consumers as above.
+ verbosity?: VerbosityPreset | null; // default "few"
+ skip?: GndRole[] | null; // only consulted when verbosity === "custom"
+ contextualize?: GndRole[] | null; // only consulted when verbosity === "custom"
+ language?: LanguageMode | null;
+
+ // Prosody group — consumed by ReadiumSpeechNavigator's playback sequencing.
+ pauseDuration?: number | null; // ms, default 300
+ pauseScope?: PauseScope | null; // "utterance" (default, pause between every utterance) | "block" (pause only at block boundaries)
+ automaticPausesAtPageOrSpreadEnd?: boolean | null; // typed, no-op today — see speechNavigator.ts
+ rate?: number | null; // default 1.0, engine range [0.1, 10]
+ pitch?: number | null; // default 1.0, engine range [0, 2]
+ volume?: number | null; // default 1.0, engine range [0, 1]
+}
+
+export class SpeechPreferences implements ISpeechPreferences, ConfigurablePreferences {
+ public format: ExtractionFormat | null | undefined;
+ public inlineContextualization: boolean | null | undefined;
+ public verbosity: VerbosityPreset | null | undefined;
+ public skip: GndRole[] | null | undefined;
+ public contextualize: GndRole[] | null | undefined;
+ public language: LanguageMode | null | undefined;
+ public pauseDuration: number | null | undefined;
+ public pauseScope: PauseScope | null | undefined;
+ public automaticPausesAtPageOrSpreadEnd: boolean | null | undefined;
+ public rate: number | null | undefined;
+ public pitch: number | null | undefined;
+ public volume: number | null | undefined;
+
+ constructor(preferences: ISpeechPreferences = {}) {
+ this.format = ensureEnumValue(preferences.format, extractionFormats);
+ this.inlineContextualization = ensureBoolean(preferences.inlineContextualization);
+ this.verbosity = ensureEnumValue(preferences.verbosity, verbosityPresets);
+ this.skip = ensureStringArray(preferences.skip);
+ this.contextualize = ensureStringArray(preferences.contextualize);
+ this.language = ensureEnumValue(preferences.language, languageModes);
+ this.pauseDuration = ensureValueInRange(preferences.pauseDuration, pauseDurationRangeConfig.range);
+ this.pauseScope = ensureEnumValue(preferences.pauseScope, pauseScopes);
+ this.automaticPausesAtPageOrSpreadEnd = ensureBoolean(preferences.automaticPausesAtPageOrSpreadEnd);
+ this.rate = ensureValueInRange(preferences.rate, rateRangeConfig.range);
+ this.pitch = ensureValueInRange(preferences.pitch, pitchRangeConfig.range);
+ this.volume = ensureValueInRange(preferences.volume, volumeRangeConfig.range);
+ }
+
+ merging(other: SpeechPreferences): SpeechPreferences {
+ const merged: ISpeechPreferences = { ...this };
+ for (const key of Object.keys(other) as (keyof ISpeechPreferences)[]) {
+ if (other[key] !== undefined) {
+ (merged as Record)[key] = other[key];
+ }
+ }
+ return new SpeechPreferences(merged);
+ }
+}
diff --git a/src/preferences/SpeechPreferencesEditor.ts b/src/preferences/SpeechPreferencesEditor.ts
new file mode 100644
index 0000000..b862500
--- /dev/null
+++ b/src/preferences/SpeechPreferencesEditor.ts
@@ -0,0 +1,174 @@
+import type { GndRole } from "../gnd/types.js";
+import {
+ extractionFormats,
+ languageModes,
+ pauseDurationRangeConfig,
+ pauseScopes,
+ pitchRangeConfig,
+ rateRangeConfig,
+ verbosityPresets,
+ volumeRangeConfig,
+} from "./constraints.js";
+import type { IPreferencesEditor } from "./PreferencesEditor.js";
+import { BooleanPreference, EnumPreference, RangePreference, StringArrayPreference } from "./Preference.js";
+import { SpeechPreferences, VerbosityPreset, LanguageMode, ExtractionFormat, PauseScope } from "./SpeechPreferences.js";
+import { SpeechSettings } from "./SpeechSettings.js";
+
+export class SpeechPreferencesEditor implements IPreferencesEditor {
+ preferences: SpeechPreferences;
+ private settings: SpeechSettings;
+
+ // Cloned rather than aliased: edits made through this editor's setters
+ // are staged on this copy and only reach the navigator's own preferences
+ // once explicitly passed to submitPreferences() — discarding the editor
+ // without submitting must leave the navigator untouched.
+ constructor(initialPreferences: SpeechPreferences, settings: SpeechSettings) {
+ this.preferences = new SpeechPreferences({ ...initialPreferences });
+ this.settings = settings;
+ }
+
+ // Explicit `null`s, not `undefined` — merging() skips `undefined` fields,
+ // so only `null` actually clears them once submitted.
+ clear(): void {
+ this.preferences = new SpeechPreferences({
+ format: null,
+ inlineContextualization: null,
+ verbosity: null,
+ skip: null,
+ contextualize: null,
+ language: null,
+ pauseDuration: null,
+ pauseScope: null,
+ automaticPausesAtPageOrSpreadEnd: null,
+ rate: null,
+ pitch: null,
+ volume: null,
+ });
+ }
+
+ private updatePreference(key: K, value: SpeechPreferences[K]) {
+ this.preferences[key] = value;
+ }
+
+ get format(): EnumPreference {
+ return new EnumPreference({
+ initialValue: this.preferences.format,
+ effectiveValue: this.settings.format,
+ isEffective: this.preferences.format != null,
+ onChange: (value) => this.updatePreference("format", value ?? null),
+ supportedValues: extractionFormats,
+ });
+ }
+
+ get inlineContextualization(): BooleanPreference {
+ return new BooleanPreference({
+ initialValue: this.preferences.inlineContextualization,
+ effectiveValue: this.settings.inlineContextualization,
+ isEffective: this.preferences.inlineContextualization != null,
+ onChange: (value) => this.updatePreference("inlineContextualization", value ?? null),
+ });
+ }
+
+ get verbosity(): EnumPreference {
+ return new EnumPreference({
+ initialValue: this.preferences.verbosity,
+ effectiveValue: this.settings.verbosity,
+ isEffective: this.preferences.verbosity != null,
+ onChange: (value) => this.updatePreference("verbosity", value ?? null),
+ supportedValues: verbosityPresets,
+ });
+ }
+
+ get skip(): StringArrayPreference {
+ return new StringArrayPreference({
+ initialValue: this.preferences.skip,
+ effectiveValue: this.settings.skip,
+ isEffective: this.preferences.skip != null,
+ onChange: (value) => this.updatePreference("skip", (value ?? null) as GndRole[] | null),
+ });
+ }
+
+ get contextualize(): StringArrayPreference {
+ return new StringArrayPreference({
+ initialValue: this.preferences.contextualize,
+ effectiveValue: this.settings.contextualize,
+ isEffective: this.preferences.contextualize != null,
+ onChange: (value) => this.updatePreference("contextualize", (value ?? null) as GndRole[] | null),
+ });
+ }
+
+ get language(): EnumPreference {
+ return new EnumPreference({
+ initialValue: this.preferences.language,
+ effectiveValue: this.settings.language,
+ isEffective: this.preferences.language != null,
+ onChange: (value) => this.updatePreference("language", value ?? null),
+ supportedValues: languageModes,
+ });
+ }
+
+ get pauseDuration(): RangePreference {
+ return new RangePreference({
+ initialValue: this.preferences.pauseDuration,
+ effectiveValue: this.settings.pauseDuration,
+ isEffective: this.preferences.pauseDuration != null,
+ onChange: (value) => this.updatePreference("pauseDuration", value ?? null),
+ supportedRange: pauseDurationRangeConfig.range,
+ step: pauseDurationRangeConfig.step,
+ });
+ }
+
+ get pauseScope(): EnumPreference {
+ return new EnumPreference({
+ initialValue: this.preferences.pauseScope,
+ effectiveValue: this.settings.pauseScope,
+ isEffective: this.preferences.pauseScope != null,
+ onChange: (value) => this.updatePreference("pauseScope", value ?? null),
+ supportedValues: pauseScopes,
+ });
+ }
+
+ // No page/spread boundary signal exists in this library yet, so this
+ // has no effect on playback.
+ get automaticPausesAtPageOrSpreadEnd(): BooleanPreference {
+ return new BooleanPreference({
+ initialValue: this.preferences.automaticPausesAtPageOrSpreadEnd,
+ effectiveValue: this.settings.automaticPausesAtPageOrSpreadEnd,
+ isEffective: this.preferences.automaticPausesAtPageOrSpreadEnd != null,
+ onChange: (value) => this.updatePreference("automaticPausesAtPageOrSpreadEnd", value ?? null),
+ });
+ }
+
+ get rate(): RangePreference {
+ return new RangePreference({
+ initialValue: this.preferences.rate,
+ effectiveValue: this.settings.rate,
+ isEffective: this.preferences.rate != null,
+ onChange: (value) => this.updatePreference("rate", value ?? null),
+ supportedRange: rateRangeConfig.range,
+ step: rateRangeConfig.step,
+ });
+ }
+
+ get pitch(): RangePreference {
+ return new RangePreference({
+ initialValue: this.preferences.pitch,
+ effectiveValue: this.settings.pitch,
+ isEffective: this.preferences.pitch != null,
+ onChange: (value) => this.updatePreference("pitch", value ?? null),
+ supportedRange: pitchRangeConfig.range,
+ step: pitchRangeConfig.step,
+ });
+ }
+
+ get volume(): RangePreference {
+ return new RangePreference({
+ initialValue: this.preferences.volume,
+ effectiveValue: this.settings.volume,
+ isEffective: this.preferences.volume != null,
+ onChange: (value) => this.updatePreference("volume", value ?? null),
+ supportedRange: volumeRangeConfig.range,
+ step: volumeRangeConfig.step,
+ });
+ }
+}
diff --git a/src/preferences/SpeechSettings.ts b/src/preferences/SpeechSettings.ts
new file mode 100644
index 0000000..230f128
--- /dev/null
+++ b/src/preferences/SpeechSettings.ts
@@ -0,0 +1,46 @@
+import type { GndRole } from "../gnd/types.js";
+import type { ConfigurableSettings } from "./Configurable.js";
+import { SpeechDefaults } from "./SpeechDefaults.js";
+import type { ExtractionFormat, LanguageMode, PauseScope, SpeechPreferences, VerbosityPreset } from "./SpeechPreferences.js";
+import { contextualizedAtVerbosity, skippableAtVerbosity } from "./verbosityTables.js";
+
+export class SpeechSettings implements ConfigurableSettings {
+ [key: string]: unknown;
+
+ public readonly format: ExtractionFormat;
+ public readonly inlineContextualization: boolean;
+ public readonly verbosity: VerbosityPreset;
+ public readonly skip: GndRole[];
+ public readonly contextualize: GndRole[];
+ public readonly language: LanguageMode;
+ public readonly pauseDuration: number;
+ public readonly pauseScope: PauseScope;
+ public readonly automaticPausesAtPageOrSpreadEnd: boolean;
+ public readonly rate: number;
+ public readonly pitch: number;
+ public readonly volume: number;
+
+ constructor(preferences: SpeechPreferences, defaults: SpeechDefaults) {
+ this.format = preferences.format ?? defaults.format;
+ this.inlineContextualization = preferences.inlineContextualization ?? defaults.inlineContextualization;
+ this.verbosity = preferences.verbosity ?? defaults.verbosity;
+
+ // `skip`/`contextualize` only apply under "custom" — every other preset
+ // uses its own fixed table, ignoring whatever `skip`/`contextualize`
+ // were set to.
+ if (this.verbosity === "custom") {
+ this.skip = preferences.skip ?? defaults.skip;
+ this.contextualize = preferences.contextualize ?? defaults.contextualize;
+ } else {
+ this.skip = [...skippableAtVerbosity[this.verbosity]];
+ this.contextualize = [...contextualizedAtVerbosity[this.verbosity]];
+ }
+ this.language = preferences.language ?? defaults.language;
+ this.pauseDuration = preferences.pauseDuration ?? defaults.pauseDuration;
+ this.pauseScope = preferences.pauseScope ?? defaults.pauseScope;
+ this.automaticPausesAtPageOrSpreadEnd = preferences.automaticPausesAtPageOrSpreadEnd ?? defaults.automaticPausesAtPageOrSpreadEnd;
+ this.rate = preferences.rate ?? defaults.rate;
+ this.pitch = preferences.pitch ?? defaults.pitch;
+ this.volume = preferences.volume ?? defaults.volume;
+ }
+}
diff --git a/src/preferences/constraints.ts b/src/preferences/constraints.ts
new file mode 100644
index 0000000..1835c26
--- /dev/null
+++ b/src/preferences/constraints.ts
@@ -0,0 +1,28 @@
+import type { ExtractionFormat, ISpeechPreferences, LanguageMode, PauseScope, VerbosityPreset } from "./SpeechPreferences.js";
+
+export interface RangeConfig {
+ range: [number, number];
+ step: number;
+}
+
+export const pauseDurationRangeConfig: RangeConfig = { range: [0, 5000], step: 100 };
+export const rateRangeConfig: RangeConfig = { range: [0.1, 10], step: 0.1 };
+export const pitchRangeConfig: RangeConfig = { range: [0, 2], step: 0.1 };
+export const volumeRangeConfig: RangeConfig = { range: [0, 1], step: 0.05 };
+
+export const verbosityPresets: VerbosityPreset[] = ["none", "few", "some", "most", "custom"];
+export const languageModes: LanguageMode[] = ["none", "block-level", "always"];
+export const extractionFormats: ExtractionFormat[] = ["plain", "ssml"];
+export const pauseScopes: PauseScope[] = ["utterance", "block"];
+
+// Fields that only affect the extracted content queue, resolved via
+// ReadiumSpeechNavigator's reextract() — as opposed to the prosody group,
+// which applies regardless of how content was loaded.
+export const extractionPreferenceKeys: (keyof ISpeechPreferences)[] = [
+ "format",
+ "inlineContextualization",
+ "verbosity",
+ "skip",
+ "contextualize",
+ "language",
+];
diff --git a/src/preferences/guards.ts b/src/preferences/guards.ts
new file mode 100644
index 0000000..ef23f6f
--- /dev/null
+++ b/src/preferences/guards.ts
@@ -0,0 +1,25 @@
+// Invalid values drop to undefined rather than throwing — SpeechPreferencesEditor's setters throw separately.
+
+export function ensureBoolean(value: boolean | null | undefined): boolean | null | undefined {
+ if (value === undefined || value === null) return value;
+ return typeof value === "boolean" ? value : undefined;
+}
+
+export function ensureEnumValue(value: T | null | undefined, supportedValues: readonly T[]): T | null | undefined {
+ if (value === undefined || value === null) return value;
+ return supportedValues.includes(value) ? value : undefined;
+}
+
+export function ensureValueInRange(value: number | null | undefined, range: [number, number]): number | null | undefined {
+ if (value === undefined || value === null) return value;
+ if (typeof value !== "number" || Number.isNaN(value)) return undefined;
+ const min = Math.min(...range);
+ const max = Math.max(...range);
+ return value >= min && value <= max ? value : undefined;
+}
+
+// GND roles are an open vocabulary — only the shape is checked, not role names.
+export function ensureStringArray(value: string[] | null | undefined): string[] | null | undefined {
+ if (value === undefined || value === null) return value;
+ return Array.isArray(value) && value.every((item) => typeof item === "string") ? value : undefined;
+}
diff --git a/src/preferences/index.ts b/src/preferences/index.ts
new file mode 100644
index 0000000..5f377b9
--- /dev/null
+++ b/src/preferences/index.ts
@@ -0,0 +1,11 @@
+export type { Configurable, ConfigurablePreferences, ConfigurableSettings } from "./Configurable.js";
+export type { IPreferencesEditor } from "./PreferencesEditor.js";
+export { BooleanPreference, EnumPreference, Preference, RangePreference, StringArrayPreference } from "./Preference.js";
+export type { IEnumPreference, IPreference, IRangePreference } from "./Preference.js";
+export { SpeechPreferences } from "./SpeechPreferences.js";
+export type { ISpeechPreferences, LanguageMode, VerbosityPreset } from "./SpeechPreferences.js";
+export { SpeechDefaults } from "./SpeechDefaults.js";
+export type { ISpeechDefaults } from "./SpeechDefaults.js";
+export { SpeechSettings } from "./SpeechSettings.js";
+export { SpeechPreferencesEditor } from "./SpeechPreferencesEditor.js";
+export { contextualizedAtVerbosity, skippableAtVerbosity } from "./verbosityTables.js";
diff --git a/src/preferences/verbosityTables.ts b/src/preferences/verbosityTables.ts
new file mode 100644
index 0000000..3bb6c27
--- /dev/null
+++ b/src/preferences/verbosityTables.ts
@@ -0,0 +1,101 @@
+import type { GndRole } from "../gnd/types.js";
+import type { VerbosityPreset } from "./SpeechPreferences.js";
+
+// Per-role skip/contextualize behavior at each verbosity preset. Both
+// tables are monotonic, but each level's set is listed explicitly rather
+// than derived from a threshold, for direct auditability.
+
+const few: readonly GndRole[] = ["audio", "figure", "image", "math", "table", "video"];
+
+const some: readonly GndRole[] = [
+ ...few,
+ "blockquote",
+ "cell",
+ "chapter",
+ "columnheader",
+ "cover",
+ "details",
+ "notice",
+ "part",
+ "preformatted",
+ "qna",
+ "row",
+ "rowheader",
+ "subtitle",
+ "tip",
+];
+
+const most: readonly GndRole[] = [
+ ...some,
+ "abstract",
+ "acknowledgments",
+ "afterword",
+ "appendix",
+ "aside",
+ "bibliography",
+ "caption",
+ "colophon",
+ "complementary",
+ "conclusion",
+ "credit",
+ "credits",
+ "dedication",
+ "definition",
+ "endnotes",
+ "epigraph",
+ "epilogue",
+ "errata",
+ "example",
+ "footnote",
+ "foreword",
+ "glossary",
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6",
+ "index",
+ "introduction",
+ "list",
+ "listItem",
+ "pagebreak",
+ "pagelist",
+ "preface",
+ "prologue",
+ "pullquote",
+ "separator",
+ "summary",
+ "term",
+];
+
+// Roles a reader may choose to skip, at each verbosity level — a few
+// (`toc`, `landmarks`, ...) stay skipped even at "most".
+export const skippableAtVerbosity: Readonly, ReadonlySet>> = {
+ none: new Set([
+ "aside", "bibliography", "endnotes", "footnote", "noteref", "pullquote", "pagebreak",
+ "details", "columnheader", "rowheader", "row", "cell",
+ "audio", "image", "figure", "video", "table",
+ "landmarks", "loa", "loi", "lot", "lov", "toc",
+ ]),
+ few: new Set([
+ "aside", "bibliography", "endnotes", "footnote", "noteref", "pullquote", "pagebreak",
+ "details", "columnheader", "rowheader", "row", "cell",
+ "landmarks", "loa", "loi", "lot", "lov", "toc",
+ ]),
+ some: new Set([
+ "aside", "bibliography", "endnotes", "footnote", "noteref", "pullquote", "pagebreak",
+ "landmarks", "loa", "loi", "lot", "lov", "toc",
+ ]),
+ most: new Set(["landmarks", "loa", "loi", "lot", "lov", "toc"]),
+};
+
+// Roles contextualized (their announcement fires) at each verbosity level.
+// Reference-only roles (`backlink`, `biblioref`, `glossref`, `noteref`)
+// stay out entirely — see `defaultAnnouncements`'s header comment.
+export const contextualizedAtVerbosity: Readonly, ReadonlySet>> = {
+ none: new Set(),
+ few: new Set(few),
+ some: new Set(some),
+ most: new Set(most),
+};
diff --git a/src/speechNavigator.ts b/src/speechNavigator.ts
index 1a22c21..5c0c361 100644
--- a/src/speechNavigator.ts
+++ b/src/speechNavigator.ts
@@ -1,8 +1,20 @@
import { ReadiumSpeechPlaybackEngine } from "./engine";
+import { GndObject } from "./gnd/types";
import { ReadiumSpeechNavigatorContract, ReadiumSpeechPlaybackEvent, ReadiumSpeechPlaybackState } from "./navigator";
+import { extractionPreferenceKeys } from "./preferences/constraints";
+import { ISpeechDefaults, SpeechDefaults } from "./preferences/SpeechDefaults";
+import { ISpeechPreferences, SpeechPreferences } from "./preferences/SpeechPreferences";
+import { SpeechPreferencesEditor } from "./preferences/SpeechPreferencesEditor";
+import { SpeechSettings } from "./preferences/SpeechSettings";
import { ReadiumSpeechUtterance } from "./utterance";
+import { extractUtterancesWithSources } from "./utterances/extractUtterances";
import { ReadiumSpeechVoice } from "./voices/types";
+export interface ReadiumSpeechNavigatorConfiguration {
+ preferences?: ISpeechPreferences;
+ defaults?: ISpeechDefaults;
+}
+
export class ReadiumSpeechNavigator implements ReadiumSpeechNavigatorContract {
private engine: ReadiumSpeechPlaybackEngine;
private contentQueue: ReadiumSpeechUtterance[] = [];
@@ -11,12 +23,50 @@ export class ReadiumSpeechNavigator implements ReadiumSpeechNavigatorContract {
// Navigator owns the state, not the engine
private navigatorState: ReadiumSpeechPlaybackState = "idle";
- constructor(engine: ReadiumSpeechPlaybackEngine) {
+ // Scheduled by the "end" handler's pauseDuration delay — cleared on
+ // stop()/pause()/destroy() so a stale delayed speak() can't fire after
+ // playback was told to stop or pause.
+ private pendingAdvanceTimeout: ReturnType | null = null;
+
+ // Preferences API (Configurable)
+ private _defaults: SpeechDefaults;
+ private _preferences: SpeechPreferences;
+ private _settings: SpeechSettings;
+ private _preferencesEditor: SpeechPreferencesEditor | null = null;
+
+ // The raw GND source, retained only when content was loaded via
+ // `loadGndContent()`. Its absence is what makes submitPreferences()'s
+ // extraction-affecting fields (format, verbosity, skip, contextualize,
+ // language) a no-op on content loaded via loadContent() — prosody
+ // fields (rate/pitch/volume/pauseDuration/pauseScope) still apply.
+ private source: GndObject[] | undefined;
+
+ // Parallel to `contentQueue`, from the extraction that produced it — lets
+ // reextract() find where to resume after a reload (see resolveResumeIndex).
+ private contentSources: (GndObject | undefined)[] = [];
+
+ // Set by setContentQueue() when a reload should resume mid-queue rather
+ // than at the start; consumed once by the engine's "ready" handler.
+ private pendingResumeIndex: number | null = null;
+ private pendingResumeState: "playing" | "paused" | null = null;
+
+ constructor(engine: ReadiumSpeechPlaybackEngine, configuration: ReadiumSpeechNavigatorConfiguration = {}) {
this.engine = engine;
+ this._defaults = new SpeechDefaults(configuration.defaults);
+ this._preferences = new SpeechPreferences(configuration.preferences);
+ this._settings = new SpeechSettings(this._preferences, this._defaults);
this.setupEngineListeners();
+ this.applyEngineParameters();
void this.initializeEngine();
}
+ // Unlike pauseDuration/pauseScope (read live off settings), the engine owns rate/pitch/volume and must be pushed.
+ private applyEngineParameters(): void {
+ this.engine.setRate(this._settings.rate);
+ this.engine.setPitch(this._settings.pitch);
+ this.engine.setVolume(this._settings.volume);
+ }
+
private async initializeEngine(): Promise {
try {
await this.engine.initialize?.();
@@ -37,8 +87,18 @@ export class ReadiumSpeechNavigator implements ReadiumSpeechNavigatorContract {
const totalCount = this.engine.getUtteranceCount();
if (currentIndex < totalCount - 1) {
- // Navigator handles continuous playback
- this.engine.speak(currentIndex + 1);
+ // Navigator handles continuous playback. `pauseScope` picks which
+ // transitions get `pauseDuration`: every one ("utterance", default),
+ // or only where the next utterance starts a new block ("block").
+ // Out-of-scope transitions still yield to the event loop (delay 0),
+ // never a synchronous call.
+ const inPauseScope =
+ this._settings.pauseScope === "utterance" || this.contentQueue[currentIndex + 1]?.startsNewBlock === true;
+ const delay = inPauseScope ? this._settings.pauseDuration : 0;
+ this.pendingAdvanceTimeout = setTimeout(() => {
+ this.pendingAdvanceTimeout = null;
+ this.engine.speak(currentIndex + 1);
+ }, delay);
} else {
// Reached end - set navigator to idle
this.setNavigatorState("idle");
@@ -68,10 +128,28 @@ export class ReadiumSpeechNavigator implements ReadiumSpeechNavigatorContract {
});
this.engine.on("ready", () => {
- if (this.contentQueue.length > 0) {
- this.setNavigatorState("ready");
- this.emitEvent({ type: "ready" });
+ if (this.contentQueue.length === 0) return;
+
+ const resumeIndex = this.pendingResumeIndex;
+ const resumeState = this.pendingResumeState;
+ this.pendingResumeIndex = null;
+ this.pendingResumeState = null;
+ if (this.navigatorState !== "loading") return; // stop()/pause()/play() already took over
+
+ if (resumeState === "playing") {
+ this.setNavigatorState("playing");
+ this.engine.speak(resumeIndex ?? 0);
+ return;
}
+ if (resumeState === "paused") {
+ const index = resumeIndex ?? 0;
+ if (index > 0) this.engine.setCurrentUtteranceIndex(index, () => this.setNavigatorState("paused"));
+ else this.setNavigatorState("paused");
+ return;
+ }
+
+ this.setNavigatorState("ready");
+ this.emitEvent({ type: "ready" });
});
this.engine.on("boundary", (event) => {
@@ -118,8 +196,33 @@ export class ReadiumSpeechNavigator implements ReadiumSpeechNavigatorContract {
// Content Management
loadContent(content: ReadiumSpeechUtterance | ReadiumSpeechUtterance[]): void {
+ if (this.source) {
+ throw new Error("loadContent() cannot be used after loadGndContent() — the two are exclusive. Create a new navigator instance to switch content sources.");
+ }
+
+ this.setContentQueue(content);
+ }
+
+ loadGndContent(nodes: GndObject[]): void {
+ this.source = nodes;
+ this.reextract();
+ }
+
+ private setContentQueue(
+ content: ReadiumSpeechUtterance | ReadiumSpeechUtterance[],
+ resumeIndex: number | null = null,
+ resumeState: "playing" | "paused" | null = null,
+ ): void {
+ // Cancel any in-flight speech/pause before the reload — loadUtterances() resets the engine's index regardless.
+ this.clearPendingAdvance();
+ if (this.navigatorState === "playing" || this.navigatorState === "paused") {
+ this.engine.stop();
+ }
+
const contents = Array.isArray(content) ? content : [content];
this.contentQueue = [...contents];
+ this.pendingResumeIndex = resumeIndex;
+ this.pendingResumeState = resumeState;
// Readiness comes from the engine's own "ready" event (see setupEngineListeners),
// not set here — engines that buffer ahead (e.g. SpeechServerEngine) fire it once
@@ -130,6 +233,37 @@ export class ReadiumSpeechNavigator implements ReadiumSpeechNavigatorContract {
this.emitContentChangeEvent({ content: contents });
}
+ // Re-runs extraction from `this.source`, resuming near the old position if playback was underway.
+ private reextract(): void {
+ if (!this.source) return;
+ const resumeState = this.navigatorState === "playing" || this.navigatorState === "paused" ? this.navigatorState : null;
+ const oldSources = this.contentSources;
+ const oldIndex = this.getCurrentUtteranceIndex();
+
+ const { utterances, sources } = extractUtterancesWithSources(this.source, {
+ format: this._settings.format,
+ inlineContextualization: this._settings.inlineContextualization,
+ skip: this._settings.skip,
+ contextualize: this._settings.contextualize,
+ language: this._settings.language,
+ });
+ this.contentSources = sources;
+
+ const resumeIndex = resumeState ? this.resolveResumeIndex(oldSources, oldIndex, sources) : null;
+ this.setContentQueue(utterances, resumeIndex, resumeState);
+ }
+
+ // Nearest node at or before oldIndex that's still present in newSources.
+ private resolveResumeIndex(oldSources: (GndObject | undefined)[], oldIndex: number, newSources: (GndObject | undefined)[]): number | null {
+ for (let i = Math.min(oldIndex, oldSources.length - 1); i >= 0; i--) {
+ const node = oldSources[i];
+ if (node === undefined) continue;
+ const found = newSources.indexOf(node);
+ if (found !== -1) return found;
+ }
+ return null;
+ }
+
getCurrentContent(): ReadiumSpeechUtterance | null {
const index = this.getCurrentUtteranceIndex();
return index < this.contentQueue.length ? this.contentQueue[index] : null;
@@ -161,17 +295,26 @@ export class ReadiumSpeechNavigator implements ReadiumSpeechNavigatorContract {
pause(): void {
if (this.navigatorState === "playing") {
+ this.clearPendingAdvance();
this.setNavigatorState("paused");
this.engine.pause();
}
}
stop(): void {
+ this.clearPendingAdvance();
this.setNavigatorState("idle");
this.engine.stop(); // Reset engine index first
this.emitEvent({ type: "stop" }); // Then emit event for UI update
}
+ private clearPendingAdvance(): void {
+ if (this.pendingAdvanceTimeout !== null) {
+ clearTimeout(this.pendingAdvanceTimeout);
+ this.pendingAdvanceTimeout = null;
+ }
+ }
+
private skipToPosition(targetIndex: number, forcePlay: boolean = false): boolean {
const currentIndex = this.getCurrentUtteranceIndex();
@@ -185,6 +328,8 @@ export class ReadiumSpeechNavigator implements ReadiumSpeechNavigatorContract {
return true;
}
+ this.clearPendingAdvance();
+
if (this.navigatorState === "paused" && !forcePlay) {
// For paused state, just update the index without speaking
this.engine.setCurrentUtteranceIndex(targetIndex, (success) => {
@@ -218,31 +363,6 @@ export class ReadiumSpeechNavigator implements ReadiumSpeechNavigatorContract {
return this.skipToPosition(utteranceIndex, forcePlay);
}
- // Playback Parameters
- setRate(rate: number): void {
- this.engine.setRate(rate);
- }
-
- getRate(): number {
- return this.engine.getRate();
- }
-
- setPitch(pitch: number): void {
- this.engine.setPitch(pitch);
- }
-
- getPitch(): number {
- return this.engine.getPitch();
- }
-
- setVolume(volume: number): void {
- this.engine.setVolume(volume);
- }
-
- getVolume(): number {
- return this.engine.getVolume();
- }
-
// State - Navigator is the single source of truth
getState(): ReadiumSpeechPlaybackState {
return this.navigatorState;
@@ -280,7 +400,54 @@ export class ReadiumSpeechNavigator implements ReadiumSpeechNavigatorContract {
}
}
+ // Preferences API (Configurable)
+ get settings(): SpeechSettings {
+ return this._settings;
+ }
+
+ get preferencesEditor(): SpeechPreferencesEditor {
+ if (this._preferencesEditor === null) {
+ this._preferencesEditor = new SpeechPreferencesEditor(this._preferences, this.settings);
+ }
+ return this._preferencesEditor;
+ }
+
+ submitPreferences(preferences: SpeechPreferences): void {
+ if (!this.source && extractionPreferenceKeys.some((key) => preferences[key] !== undefined)) {
+ console.warn(
+ "submitPreferences(): extraction-affecting preferences (format, inlineContextualization, verbosity, skip, contextualize, language) have no effect on content loaded via loadContent() — use loadGndContent() to re-extract on submission.",
+ );
+ }
+
+ this._preferences = this._preferences.merging(preferences);
+ this.applyPreferences();
+ }
+
+ private applyPreferences(): void {
+ const previousSettings = this._settings;
+ this._settings = new SpeechSettings(this._preferences, this._defaults);
+ this.applyEngineParameters();
+
+ if (this._preferencesEditor !== null) {
+ this._preferencesEditor = new SpeechPreferencesEditor(this._preferences, this._settings);
+ }
+
+ // Skip reextract() unless it would actually produce a different queue.
+ if (extractionPreferenceKeys.some((key) => !this.sameSettingValue(previousSettings[key], this._settings[key]))) {
+ this.reextract();
+ }
+ }
+
+ // Arrays (skip/contextualize) compare as sets, not by reference.
+ private sameSettingValue(a: unknown, b: unknown): boolean {
+ if (Array.isArray(a) && Array.isArray(b)) {
+ return a.length === b.length && a.every((role) => b.includes(role));
+ }
+ return a === b;
+ }
+
async destroy(): Promise {
+ this.clearPendingAdvance();
this.eventListeners.clear();
await this.engine.destroy();
}
diff --git a/src/utterance.ts b/src/utterance.ts
index ae798f0..0d9c89a 100644
--- a/src/utterance.ts
+++ b/src/utterance.ts
@@ -3,4 +3,5 @@ export interface ReadiumSpeechUtterance {
plain?: string; // Plain-text rendering, when available
ssml?: string; // SSML rendering, when available
language?: string; // Language of this content (BCP 47)
+ startsNewBlock?: true; // Present (and true) only when this utterance begins a new block-level element
}
\ No newline at end of file
diff --git a/src/utterances/announcements.ts b/src/utterances/announcements.ts
index 43e596f..6c4c10b 100644
--- a/src/utterances/announcements.ts
+++ b/src/utterances/announcements.ts
@@ -50,6 +50,11 @@ export const defaultAnnouncements: Announcements = {
aside: { start: "Start of the aside.", end: "End of the aside." },
details: { start: "Start of the details.", end: "End of the details." },
credits: { start: "Start of the credits.", end: "End of the credits." },
+ blockquote: { start: "Start of the quote.", end: "End of the quote." },
+ list: { start: "Start of the list.", end: "End of the list." },
+ preformatted: { start: "Start of the preformatted text.", end: "End of the preformatted text." },
+ row: { start: "Start of the row.", end: "End of the row." },
+ complementary: { start: "Start of the complementary content.", end: "End of the complementary content." },
// Single, self-contained pieces of content — one announcement each.
pagebreak: "Pagebreak.",
@@ -74,4 +79,12 @@ export const defaultAnnouncements: Announcements = {
image: "Image.",
audio: "Audio.",
video: "Video.",
+ caption: "Caption.",
+ listItem: "List item.",
+ cell: "Cell.",
+ columnheader: "Column header.",
+ rowheader: "Row header.",
+ term: "Term.",
+ summary: "Summary.",
+ separator: "Separator.",
};
diff --git a/src/utterances/extractUtterances.ts b/src/utterances/extractUtterances.ts
index be5868c..450593e 100644
--- a/src/utterances/extractUtterances.ts
+++ b/src/utterances/extractUtterances.ts
@@ -13,17 +13,23 @@ import {
type ResolvedNodeText,
} from "./text.js";
import { isAnnouncementPair, type Announcement, type Announcements, type ExtractUtterancesOptions } from "./types.js";
+import { blockLevelRoles } from "./roles.js";
import { startsWithBindingPunct } from "../utils/text.js";
interface WalkContext {
announcements: Announcements;
skip: ReadonlySet;
+ contextualize: ReadonlySet;
format: "plain" | "ssml";
- contextualize: boolean;
- interruptSentence: boolean;
+ inlineContextualization: boolean;
language?: "none" | "block-level" | "always";
}
+// Parallel to `out`: which node produced each utterance, `undefined` when none (e.g. a merged span).
+type SourceTrace = (GndObject | undefined)[];
+
+const blockLevelRoleSet: ReadonlySet = new Set(blockLevelRoles);
+
function resolveAnnouncement(announcement: Announcement, params?: Record): string {
return typeof announcement === "function" ? announcement(params) : announcement;
}
@@ -36,29 +42,36 @@ function formatPlain(text: string, format: "plain" | "ssml"): ReadiumSpeechUtter
return format === "ssml" ? { ssml: ssmlTextEscape(text) } : { plain: text };
}
+function push(out: ReadiumSpeechUtterance[], sources: SourceTrace, node: GndObject | undefined, items: ReadiumSpeechUtterance[]): void {
+ out.push(...items);
+ for (let i = 0; i < items.length; i++) sources.push(node);
+}
+
// Looks up `role`'s entry in the catalog and speaks the appropriate half
// of it for this `phase`: a plain entry only has anything to say at
// "before" (a single, self-contained announcement); a `{start, end}` pair
// says its `start` at "before" and its `end` at "after". No-ops when the
// role has no entry, or the shape doesn't have anything for this phase
-// (a plain entry at "after", or `contextualize: false`).
+// (a plain entry at "after"), or `contextualize` doesn't include this role.
function pushRoleAnnouncement(
out: ReadiumSpeechUtterance[],
+ sources: SourceTrace,
+ node: GndObject,
ctx: WalkContext,
role: string,
phase: "before" | "after",
params?: Record,
): void {
- if (!ctx.contextualize) return;
+ if (!ctx.contextualize.has(role)) return;
const entry = ctx.announcements[role];
if (entry === undefined) return;
if (isAnnouncementPair(entry)) {
const announcement = phase === "before" ? entry.start : entry.end;
- out.push(formatPlain(resolveAnnouncement(announcement, params), ctx.format));
+ push(out, sources, node, [formatPlain(resolveAnnouncement(announcement, params), ctx.format)]);
return;
}
if (phase === "before") {
- out.push(formatPlain(resolveAnnouncement(entry, params), ctx.format));
+ push(out, sources, node, [formatPlain(resolveAnnouncement(entry, params), ctx.format)]);
}
}
@@ -102,7 +115,7 @@ function mergeUtterances(
function buildPagebreakUtterance(node: GndObject, ctx: WalkContext): ReadiumSpeechUtterance[] {
const resolved = resolveNodeText(node.text);
const own = resolved ? applyFormat(resolved, ctx.format, ctx.language) : [];
- if (!ctx.contextualize) return own;
+ if (!ctx.contextualize.has("pagebreak")) return own;
const entry = ctx.announcements.pagebreak;
if (entry === undefined) return own;
const announcement = formatPlain(resolveAnnouncement(isAnnouncementPair(entry) ? entry.start : entry), ctx.format);
@@ -156,22 +169,25 @@ function applyFormat(
return [utterance];
}
-// `interruptSentence`: splits the sentence on its embedded placeholder,
+// `inlineContextualization`: splits the sentence on its embedded placeholder,
// then merges the fragments and the referenced node's own utterance back
// into one continuous utterance.
function emitInterrupted(
node: GndObject,
rawSsml: string,
out: ReadiumSpeechUtterance[],
+ sources: SourceTrace,
ctx: WalkContext,
+ suppress: boolean,
): void {
const language = typeof node.text === "object" ? node.text.language : undefined;
const childrenById = new Map((node.children ?? []).map((child) => [child.id, child] as const));
const pieces: ReadiumSpeechUtterance[] = [];
+ const pieceSources: SourceTrace = [];
for (const segment of splitOnPlaceholders(rawSsml)) {
if (segment.placeholderId !== undefined) {
const child = childrenById.get(segment.placeholderId);
- if (child) walkNode(child, pieces, ctx);
+ if (child) walkNode(child, pieces, pieceSources, ctx, suppress);
continue;
}
if (!segment.ssml) continue;
@@ -185,6 +201,7 @@ function emitInterrupted(
const utterance: ReadiumSpeechUtterance = { plain: langSegment.plain };
if (langSegment.language) utterance.language = langSegment.language;
pieces.push(utterance);
+ pieceSources.push(node);
}
continue;
}
@@ -197,15 +214,34 @@ function emitInterrupted(
if (ctx.language === "none") delete utterance.language;
}
pieces.push(utterance);
+ pieceSources.push(node);
}
const merged = pieces.length > 1 ? mergeUtterances(pieces, ctx.format) : undefined;
- out.push(...(merged ? [merged] : pieces));
+ if (merged) {
+ push(out, sources, pieceSources[0] ?? node, [merged]);
+ } else {
+ out.push(...pieces);
+ sources.push(...pieceSources);
+ }
}
-function walkNode(node: GndObject, out: ReadiumSpeechUtterance[], ctx: WalkContext): void {
+function walkNode(node: GndObject, out: ReadiumSpeechUtterance[], sources: SourceTrace, ctx: WalkContext, suppress: boolean): void {
const roles = node.role ?? [];
if (isSkipped(roles, ctx.skip)) return;
+ // A node carrying a block-level role opens a new block — unless
+ // `suppress` says an ancestor already claimed this same boundary. That
+ // happens when the ancestor is itself a block-level node reached with
+ // nothing in between: nested containers with no content of their own
+ // (e.g. a bare around a ) collapse onto whichever
+ // descendant utterance turns out to be first; a container that *did*
+ // speak something of its own (e.g. a contextualized announcement)
+ // claims the boundary itself and suppresses every nested block reached
+ // through it, so entering deeply nested markup never stacks pauses.
+ const isBlockRole = roles.some((role) => blockLevelRoleSet.has(role));
+ const eligible = isBlockRole && !suppress;
+ const beforeLength = out.length;
+
// Footnote and pagebreak are handled specially below (merged with their
// own content/label), so they're excluded from the generic loop here.
const isFootnoteNode = roles.includes("footnote");
@@ -218,7 +254,7 @@ function walkNode(node: GndObject, out: ReadiumSpeechUtterance[], ctx: WalkConte
// is (see `pushRoleAnnouncement` and `announcements.ts`) — a no-op for
// the vast majority of roles, which have no entry at all.
for (const role of announcedRoles) {
- pushRoleAnnouncement(out, ctx, role, "before");
+ pushRoleAnnouncement(out, sources, node, ctx, role, "before");
}
// A noteref's own visible text (e.g. "[1]") is a visual marker only,
@@ -230,53 +266,88 @@ function walkNode(node: GndObject, out: ReadiumSpeechUtterance[], ctx: WalkConte
if (isSkipped(childRoles, ctx.skip)) continue;
if (childRoles.includes("footnote")) {
const inner: ReadiumSpeechUtterance[] = [];
- walk([child], inner, ctx);
- const entry = ctx.contextualize ? ctx.announcements.footnote : undefined;
+ const innerSources: SourceTrace = [];
+ walk([child], inner, innerSources, ctx, suppress);
+ const entry = ctx.contextualize.has("footnote") ? ctx.announcements.footnote : undefined;
const pieces: ReadiumSpeechUtterance[] = [];
+ const pieceSources: SourceTrace = [];
if (entry !== undefined) {
const startText = isAnnouncementPair(entry) ? entry.start : entry;
pieces.push(formatPlain(resolveAnnouncement(startText), ctx.format));
+ pieceSources.push(child);
}
pieces.push(...inner);
+ pieceSources.push(...innerSources);
if (entry !== undefined && isAnnouncementPair(entry)) {
pieces.push(formatPlain(resolveAnnouncement(entry.end), ctx.format));
+ pieceSources.push(child);
}
const merged = entry !== undefined && pieces.length > 1 ? mergeUtterances(pieces, ctx.format) : undefined;
- out.push(...(merged ? [merged] : pieces));
+ if (merged) {
+ push(out, sources, pieceSources[0] ?? child, [merged]);
+ } else {
+ out.push(...pieces);
+ sources.push(...pieceSources);
+ }
} else {
- walk([child], out, ctx);
+ walk([child], out, sources, ctx, suppress);
}
}
} else {
const rawSsml = typeof node.text === "object" ? node.text.ssml : undefined;
- if (ctx.interruptSentence && rawSsml && hasPlaceholder(rawSsml)) {
- emitInterrupted(node, rawSsml, out, ctx);
+ if (ctx.inlineContextualization && rawSsml && hasPlaceholder(rawSsml)) {
+ emitInterrupted(node, rawSsml, out, sources, ctx, suppress);
} else if (roles.includes("pagebreak")) {
- out.push(...buildPagebreakUtterance(node, ctx));
- if (node.children) walk(node.children, out, ctx);
+ push(out, sources, node, buildPagebreakUtterance(node, ctx));
+ if (node.children) {
+ const childSuppress = suppress || (isBlockRole && out.length > beforeLength);
+ walk(node.children, out, sources, ctx, childSuppress);
+ }
} else {
const resolved = resolveNodeText(node.text);
if (resolved) {
- out.push(...applyFormat(resolved, ctx.format, ctx.language));
+ push(out, sources, node, applyFormat(resolved, ctx.format, ctx.language));
+ }
+ if (node.children) {
+ const childSuppress = suppress || (isBlockRole && out.length > beforeLength);
+ walk(node.children, out, sources, ctx, childSuppress);
}
- if (node.children) walk(node.children, out, ctx);
}
}
+ if (eligible && out.length > beforeLength) {
+ out[beforeLength].startsNewBlock = true;
+ }
+
// A description is supplementary/elaborating content (e.g. an extended
// audio description), spoken after the primary content but still within
// the node's own start/end announcement boundary.
if (node.description !== undefined) {
- out.push(formatPlain(node.description, ctx.format));
+ push(out, sources, node, [formatPlain(node.description, ctx.format)]);
}
for (const role of announcedRoles) {
- pushRoleAnnouncement(out, ctx, role, "after");
+ pushRoleAnnouncement(out, sources, node, ctx, role, "after");
}
}
-function walk(nodes: GndObject[], out: ReadiumSpeechUtterance[], ctx: WalkContext): void {
- for (const node of nodes) walkNode(node, out, ctx);
+// `suppress` only carries forward to the first node — once we move on to a
+// sibling, whatever a prior sibling's subtree spoke has already broken any
+// "nothing in between" chain, so each subsequent sibling is free to open
+// its own boundary.
+function walk(nodes: GndObject[], out: ReadiumSpeechUtterance[], sources: SourceTrace, ctx: WalkContext, suppress: boolean): void {
+ nodes.forEach((node, index) => walkNode(node, out, sources, ctx, index === 0 ? suppress : false));
+}
+
+function makeWalkContext(options: ExtractUtterancesOptions): WalkContext {
+ return {
+ announcements: { ...defaultAnnouncements, ...options.announcements },
+ skip: new Set(options.skip ?? []),
+ contextualize: new Set(options.contextualize ?? []),
+ format: options.format ?? "plain",
+ inlineContextualization: options.inlineContextualization ?? false,
+ language: options.language,
+ };
}
/**
@@ -291,15 +362,20 @@ export function extractUtterances(
nodes: GndObject[],
options: ExtractUtterancesOptions,
): ReadiumSpeechUtterance[] {
- const ctx: WalkContext = {
- announcements: { ...defaultAnnouncements, ...options.announcements },
- skip: new Set(options.skip ?? []),
- format: options.format ?? "plain",
- contextualize: options.contextualize ?? true,
- interruptSentence: options.interruptSentence ?? false,
- language: options.language,
- };
const out: ReadiumSpeechUtterance[] = [];
- walk(nodes, out, ctx);
+ walk(nodes, out, [], makeWalkContext(options), false);
return out;
}
+
+/**
+ * Same as `extractUtterances()`, plus `sources[i]`: the node that produced `utterances[i]`.
+ */
+export function extractUtterancesWithSources(
+ nodes: GndObject[],
+ options: ExtractUtterancesOptions,
+): { utterances: ReadiumSpeechUtterance[]; sources: (GndObject | undefined)[] } {
+ const utterances: ReadiumSpeechUtterance[] = [];
+ const sources: SourceTrace = [];
+ walk(nodes, utterances, sources, makeWalkContext(options), false);
+ return { utterances, sources };
+}
diff --git a/src/utterances/index.ts b/src/utterances/index.ts
index fc9a1af..c3f8756 100644
--- a/src/utterances/index.ts
+++ b/src/utterances/index.ts
@@ -1,5 +1,5 @@
export { extractUtterances } from "./extractUtterances.js";
-export { skippableRoles } from "./roles.js";
+export { blockLevelRoles, skippableRoles } from "./roles.js";
export { defaultAnnouncements } from "./announcements.js";
export type {
Announcement,
diff --git a/src/utterances/roles.ts b/src/utterances/roles.ts
index b6289db..f0dbb3b 100644
--- a/src/utterances/roles.ts
+++ b/src/utterances/roles.ts
@@ -24,3 +24,68 @@ export const skippableRoles: GndRole[] = [
"pagebreak",
"toc",
];
+
+// Roles that constitute their own block for pause purposes — a node
+// carrying one of these starts a new "paragraph-like" unit whenever it
+// isn't a continuation of the block already in progress. Reference-only
+// roles (`backlink`, `biblioref`, `glossref`, `noteref`, `term`) are
+// intentionally excluded: they're inline, not their own block.
+export const blockLevelRoles: GndRole[] = [
+ // Headings
+ "heading1",
+ "heading2",
+ "heading3",
+ "heading4",
+ "heading5",
+ "heading6",
+ // Text blocks
+ "paragraph",
+ "blockquote",
+ "preformatted",
+ "pullquote",
+ // Lists
+ "list",
+ "listItem",
+ // Tables
+ "table",
+ "row",
+ "cell",
+ "columnheader",
+ "rowheader",
+ // Media
+ "audio",
+ "video",
+ "figure",
+ "image",
+ "math",
+ // Sectioning / landmark containers
+ "abstract",
+ "acknowledgments",
+ "afterword",
+ "appendix",
+ "article",
+ "aside",
+ "bibliography",
+ "chapter",
+ "colophon",
+ "conclusion",
+ "dedication",
+ "endnotes",
+ "epigraph",
+ "epilogue",
+ "errata",
+ "example",
+ "footnote",
+ "foreword",
+ "glossary",
+ "index",
+ "introduction",
+ "notice",
+ "part",
+ "preface",
+ "prologue",
+ "qna",
+ "section",
+ "summary",
+ "tip",
+];
diff --git a/src/utterances/text.ts b/src/utterances/text.ts
index 589224f..f669f0e 100644
--- a/src/utterances/text.ts
+++ b/src/utterances/text.ts
@@ -249,7 +249,7 @@ export function hasPlaceholder(ssml: string): boolean {
/**
* Splits a raw (pre-`stripPlaceholders`) SSML string on its embedded
- * `` placeholders, for `interruptSentence`: each
+ * `` placeholders, for `inlineContextualization`: each
* placeholder becomes its own segment (resolved via the `GndObject` sharing
* its `id`) instead of being spoken after the whole enclosing text.
*/
diff --git a/src/utterances/types.ts b/src/utterances/types.ts
index 26f1a78..a6db379 100644
--- a/src/utterances/types.ts
+++ b/src/utterances/types.ts
@@ -58,6 +58,11 @@ export interface ExtractUtterancesOptions {
// Nothing is skipped by default (`[]`).
skip?: GndRole[];
+ // Which roles' announcements are spoken (still needs a catalog entry to
+ // say anything). Nothing announces by default, same as `skip` defaulting
+ // to nothing skipped — unlike `skip`, the underlying content still plays.
+ contextualize?: GndRole[];
+
// Which language declarations in the *input* the extraction respects.
// This never merges separate sibling nodes into one utterance — each
// already has its own utterance and keeps it regardless — it only
@@ -80,13 +85,5 @@ export interface ExtractUtterancesOptions {
// content spoken *during* the sentence) instead of after the whole
// sentence finishes (default, `false` — today's only behavior, for
// either `format`).
- interruptSentence?: boolean;
-
- // Master on/off switch for all synthesized contextualizing
- // announcements (see `Announcements` for the growing per-role catalog).
- // Default `true` (today's behavior). Distinct from `announcements`,
- // which customizes *text*, not whether announcements happen at all;
- // distinct from `skip`, which omits the underlying content too, not
- // just its announcement.
- contextualize?: boolean;
+ inlineContextualization?: boolean;
}
diff --git a/test/navigator/mockEngine.ts b/test/navigator/mockEngine.ts
new file mode 100644
index 0000000..dc0172c
--- /dev/null
+++ b/test/navigator/mockEngine.ts
@@ -0,0 +1,95 @@
+import type { ReadiumSpeechPlaybackEngine } from "../../src/engine.js";
+import type { ReadiumSpeechPlaybackEvent, ReadiumSpeechPlaybackState } from "../../src/navigator.js";
+import type { ReadiumSpeechUtterance } from "../../src/utterance.js";
+import type { ReadiumSpeechVoice } from "../../src/voices/types.js";
+
+// Minimal in-memory ReadiumSpeechPlaybackEngine — enough for
+// ReadiumSpeechNavigator's own logic (content loading, preferences,
+// end-of-utterance sequencing) without a real speech backend.
+export class MockEngine implements ReadiumSpeechPlaybackEngine {
+ loadedUtterances: ReadiumSpeechUtterance[] = [];
+ speakCalls: number[] = [];
+ stopCalls = 0;
+ private index = 0;
+ private listeners = new Map void)[]>();
+
+ loadUtterances(contents: ReadiumSpeechUtterance[]): void {
+ this.loadedUtterances = contents;
+ this.index = 0;
+ }
+
+ setVoice(): void {}
+ getCurrentVoice(): ReadiumSpeechVoice | null {
+ return null;
+ }
+ async getAvailableVoices(): Promise {
+ return [];
+ }
+ setSpeakInContentLanguage(): void {}
+ getSpeakInContentLanguage(): boolean {
+ return false;
+ }
+
+ speak(utteranceIndex?: number): void {
+ if (utteranceIndex !== undefined) this.index = utteranceIndex;
+ this.speakCalls.push(Date.now());
+ }
+ pause(): void {}
+ resume(): void {}
+ stop(): void {
+ this.stopCalls++;
+ this.emit({ type: "stop" });
+ }
+
+ rate = 1;
+ pitch = 1;
+ volume = 1;
+
+ setRate(rate: number): void {
+ this.rate = rate;
+ }
+ getRate(): number {
+ return this.rate;
+ }
+ setPitch(pitch: number): void {
+ this.pitch = pitch;
+ }
+ getPitch(): number {
+ return this.pitch;
+ }
+ setVolume(volume: number): void {
+ this.volume = volume;
+ }
+ getVolume(): number {
+ return this.volume;
+ }
+
+ getState(): ReadiumSpeechPlaybackState {
+ return "idle";
+ }
+ getCurrentUtteranceIndex(): number {
+ return this.index;
+ }
+ setCurrentUtteranceIndex(index: number, onComplete?: (success: boolean) => void): void {
+ this.index = index;
+ onComplete?.(true);
+ }
+ getUtteranceCount(): number {
+ return this.loadedUtterances.length;
+ }
+
+ on(event: ReadiumSpeechPlaybackEvent["type"], callback: (event: ReadiumSpeechPlaybackEvent) => void): () => void {
+ const list = this.listeners.get(event) ?? [];
+ list.push(callback);
+ this.listeners.set(event, list);
+ return () => {
+ this.listeners.set(event, (this.listeners.get(event) ?? []).filter((cb) => cb !== callback));
+ };
+ }
+
+ emit(event: ReadiumSpeechPlaybackEvent): void {
+ for (const cb of this.listeners.get(event.type) ?? []) cb(event);
+ }
+
+ async destroy(): Promise {}
+}
diff --git a/test/navigator/speechNavigator.test.ts b/test/navigator/speechNavigator.test.ts
new file mode 100644
index 0000000..3f66247
--- /dev/null
+++ b/test/navigator/speechNavigator.test.ts
@@ -0,0 +1,303 @@
+import test from "ava";
+import type { GndObject } from "../../src/gnd/types.js";
+import { ReadiumSpeechNavigator, SpeechPreferences } from "../../build/index.js";
+import { MockEngine } from "./mockEngine.js";
+
+const chapterTree: GndObject[] = [{ role: ["chapter"], text: { language: "en", plain: "Hello world." } }];
+
+const twoParagraphTree: GndObject[] = [
+ { role: ["paragraph"], text: { language: "en", plain: "First." } },
+ { role: ["paragraph"], text: { language: "en", plain: "Second." } },
+];
+
+// "few" skips the footnote entirely; "most" doesn't — shifts every later index.
+const footnoteThenParagraphsTree: GndObject[] = [
+ { role: ["footnote"], text: { language: "en", plain: "A footnote." } },
+ { role: ["paragraph"], text: { language: "en", plain: "First." } },
+ { role: ["paragraph"], text: { language: "en", plain: "Second." } },
+];
+
+test("loadGndContent extracts with the default (few) verbosity", (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.loadGndContent(chapterTree);
+ t.deepEqual(navigator.getContentQueue(), [{ language: "en", plain: "Hello world.", startsNewBlock: true }]);
+});
+
+test("submitPreferences re-extracts content loaded via loadGndContent", (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.loadGndContent(chapterTree);
+ navigator.submitPreferences(new SpeechPreferences({ verbosity: "most" }));
+ t.deepEqual(navigator.getContentQueue(), [
+ { plain: "Start of the chapter.", startsNewBlock: true },
+ { language: "en", plain: "Hello world." },
+ { plain: "End of the chapter." },
+ ]);
+});
+
+test("submitPreferences is a no-op on content loaded via plain loadContent", (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.loadContent([{ plain: "Hello world.", language: "en" }]);
+ navigator.submitPreferences(new SpeechPreferences({ verbosity: "most" }));
+ t.deepEqual(navigator.getContentQueue(), [{ plain: "Hello world.", language: "en" }]);
+});
+
+test("submitPreferences warns when an extraction-affecting preference has no source to re-extract from", (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.loadContent([{ plain: "Hello world.", language: "en" }]);
+
+ const calls: unknown[][] = [];
+ const original = console.warn;
+ console.warn = (...args: unknown[]) => calls.push(args);
+ try {
+ navigator.submitPreferences(new SpeechPreferences({ verbosity: "most" }));
+ } finally {
+ console.warn = original;
+ }
+ t.is(calls.length, 1);
+ t.true(String(calls[0][0]).includes("no effect on content loaded via loadContent()"));
+});
+
+test("submitPreferences does not warn for prosody-only preferences on plain loadContent", (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.loadContent([{ plain: "Hello world.", language: "en" }]);
+
+ const calls: unknown[][] = [];
+ const original = console.warn;
+ console.warn = (...args: unknown[]) => calls.push(args);
+ try {
+ navigator.submitPreferences(new SpeechPreferences({ rate: 1.5 }));
+ } finally {
+ console.warn = original;
+ }
+ t.is(calls.length, 0);
+});
+
+test("settings/preferencesEditor reflect submitted preferences", (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ t.is(navigator.settings.verbosity, "few");
+ navigator.submitPreferences(new SpeechPreferences({ verbosity: "most" }));
+ t.is(navigator.settings.verbosity, "most");
+ t.is(navigator.preferencesEditor.verbosity.effectiveValue, "most");
+});
+
+test("editing the preferencesEditor without submitting does not affect the navigator's settings", (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.preferencesEditor.verbosity.value = "most";
+ // Staged on the editor's own (cloned) preferences...
+ t.is(navigator.preferencesEditor.preferences.verbosity, "most");
+ // ...but not committed to the navigator until submitPreferences() is called.
+ t.is(navigator.settings.verbosity, "few");
+});
+
+test("editing the preferencesEditor without submitting does not leak into a later, unrelated submitPreferences call", (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.preferencesEditor.pauseDuration.value = 500;
+ navigator.submitPreferences(new SpeechPreferences({ rate: 1.5 }));
+ t.is(navigator.settings.rate, 1.5);
+ t.is(navigator.settings.pauseDuration, 300);
+});
+
+test("constructing a navigator pushes the default rate/pitch/volume to the engine", (t) => {
+ const engine = new MockEngine();
+ new ReadiumSpeechNavigator(engine);
+ t.is(engine.rate, 1);
+ t.is(engine.pitch, 1);
+ t.is(engine.volume, 1);
+});
+
+test("submitPreferences pushes rate/pitch/volume to the engine", (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.submitPreferences(new SpeechPreferences({ rate: 1.5, pitch: 0.5, volume: 0.2 }));
+ t.is(engine.rate, 1.5);
+ t.is(engine.pitch, 0.5);
+ t.is(engine.volume, 0.2);
+ t.is(navigator.settings.rate, 1.5);
+ t.is(navigator.preferencesEditor.rate.effectiveValue, 1.5);
+});
+
+test("defaults are configurable via the constructor and pushed to the engine on construction", (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine, { defaults: { rate: 1.5, verbosity: "most" } });
+ t.is(engine.rate, 1.5);
+ t.is(navigator.settings.rate, 1.5);
+ t.is(navigator.settings.verbosity, "most");
+});
+
+test("an out-of-range constructor default falls back to the literal default", (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine, { defaults: { rate: 999 } });
+ t.is(engine.rate, 1);
+ t.is(navigator.settings.rate, 1);
+});
+
+test("initial preferences are configurable via the constructor", (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine, { preferences: { rate: 2 } });
+ t.is(engine.rate, 2);
+ t.is(navigator.settings.rate, 2);
+});
+
+test("pauseDuration delays the next speak() call under the default pauseScope (utterance)", async (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.loadContent([
+ { plain: "First.", language: "en" },
+ { plain: "Second.", language: "en" },
+ ]);
+ navigator.submitPreferences(new SpeechPreferences({ pauseDuration: 60 }));
+
+ const before = Date.now();
+ engine.emit({ type: "end" });
+ t.is(engine.speakCalls.length, 0, "speak() must not fire synchronously when a pause is configured");
+
+ await new Promise((resolve) => setTimeout(resolve, 120));
+ t.is(engine.speakCalls.length, 1);
+ t.true(engine.speakCalls[0] - before >= 50);
+});
+
+test("a zero pauseDuration still yields to the event loop, but resolves on the next tick", async (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.loadContent([
+ { plain: "First.", language: "en" },
+ { plain: "Second.", language: "en" },
+ ]);
+ navigator.submitPreferences(new SpeechPreferences({ pauseDuration: 0 }));
+
+ engine.emit({ type: "end" });
+ t.is(engine.speakCalls.length, 0, "still async even at 0ms — setTimeout, not a synchronous call");
+
+ await new Promise((resolve) => setTimeout(resolve, 0));
+ t.is(engine.speakCalls.length, 1);
+});
+
+test("pauseScope 'block' skips pauseDuration when the next utterance doesn't start a new block", async (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.loadContent([
+ { plain: "First.", language: "en" },
+ { plain: "Still the same block.", language: "en" },
+ ]);
+ navigator.submitPreferences(new SpeechPreferences({ pauseDuration: 60, pauseScope: "block" }));
+
+ engine.emit({ type: "end" });
+ t.is(engine.speakCalls.length, 0, "still async — setTimeout with delay 0, not a synchronous call");
+
+ await new Promise((resolve) => setTimeout(resolve, 0));
+ t.is(engine.speakCalls.length, 1);
+});
+
+test("pauseScope 'block' applies pauseDuration when the next utterance starts a new block", async (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.loadContent([
+ { plain: "First.", language: "en" },
+ { plain: "New paragraph.", language: "en", startsNewBlock: true },
+ ]);
+ navigator.submitPreferences(new SpeechPreferences({ pauseDuration: 60, pauseScope: "block" }));
+
+ const before = Date.now();
+ engine.emit({ type: "end" });
+ t.is(engine.speakCalls.length, 0, "speak() must not fire synchronously when a pause is configured");
+
+ await new Promise((resolve) => setTimeout(resolve, 120));
+ t.is(engine.speakCalls.length, 1);
+ t.true(engine.speakCalls[0] - before >= 50);
+});
+
+test("prosody-only submitPreferences mid-playback does not reload the queue", async (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.loadGndContent(twoParagraphTree);
+ engine.emit({ type: "ready" });
+ navigator.play();
+
+ engine.emit({ type: "end" }); // schedules a delayed speak()
+ navigator.submitPreferences(new SpeechPreferences({ rate: 1.5 }));
+ t.is(engine.stopCalls, 0);
+ t.is(navigator.getState(), "playing");
+
+ await new Promise((resolve) => setTimeout(resolve, 350));
+ t.is(engine.speakCalls.length, 2, "the pre-existing timer still fires normally");
+});
+
+test("extraction-affecting submitPreferences mid-playback cancels speech and the pending timer", async (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.loadGndContent(twoParagraphTree);
+ engine.emit({ type: "ready" });
+ navigator.play();
+
+ engine.emit({ type: "end" }); // schedules a delayed speak()
+ navigator.submitPreferences(new SpeechPreferences({ verbosity: "most" }));
+ t.is(engine.stopCalls, 1);
+
+ await new Promise((resolve) => setTimeout(resolve, 350));
+ t.is(engine.speakCalls.length, 1, "no stale speak() from the pre-reload timer");
+});
+
+test("an extraction-affecting change mid-playback resumes at the same content, not index 0", (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.loadGndContent(footnoteThenParagraphsTree);
+ engine.emit({ type: "ready" });
+ navigator.play();
+ navigator.jumpTo(1, true); // "Second." under "few" (footnote skipped, indices 0/1)
+
+ navigator.submitPreferences(new SpeechPreferences({ verbosity: "most" })); // footnote no longer skipped, shifts indices
+ engine.emit({ type: "ready" });
+
+ t.is(navigator.getState(), "playing");
+ const expectedIndex = navigator.getContentQueue().findIndex((u) => u.plain === "Second.");
+ t.true(expectedIndex > 1, "the footnote now takes up earlier slots");
+ t.is(engine.getCurrentUtteranceIndex(), expectedIndex);
+});
+
+test("an extraction-affecting change mid-pause resumes paused at the same content", (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.loadGndContent(footnoteThenParagraphsTree);
+ engine.emit({ type: "ready" });
+ navigator.play();
+ navigator.jumpTo(1, true);
+ navigator.pause();
+
+ navigator.submitPreferences(new SpeechPreferences({ verbosity: "most" }));
+ engine.emit({ type: "ready" });
+
+ t.is(navigator.getState(), "paused");
+ const expectedIndex = navigator.getContentQueue().findIndex((u) => u.plain === "Second.");
+ t.is(engine.getCurrentUtteranceIndex(), expectedIndex);
+});
+
+test("resuming falls back to the nearest earlier node still present when the current one got skipped", (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.loadGndContent(footnoteThenParagraphsTree);
+ navigator.submitPreferences(new SpeechPreferences({ verbosity: "most" })); // footnote included
+ engine.emit({ type: "ready" });
+ navigator.play();
+ navigator.jumpTo(0, true); // the footnote's own utterance
+
+ navigator.submitPreferences(new SpeechPreferences({ verbosity: "few" })); // footnote skipped again
+ engine.emit({ type: "ready" });
+
+ t.is(navigator.getState(), "playing");
+ t.is(engine.getCurrentUtteranceIndex(), 0, "falls back to the start — nothing earlier to land on");
+});
+
+test("setContentQueue does not call engine.stop() when the navigator is idle", (t) => {
+ const engine = new MockEngine();
+ const navigator = new ReadiumSpeechNavigator(engine);
+ navigator.loadContent([{ plain: "Hello world.", language: "en" }]);
+ t.is(engine.stopCalls, 0);
+});
diff --git a/test/preferences/speechDefaults.test.ts b/test/preferences/speechDefaults.test.ts
new file mode 100644
index 0000000..93d9eb5
--- /dev/null
+++ b/test/preferences/speechDefaults.test.ts
@@ -0,0 +1,39 @@
+import test from "ava";
+import { SpeechDefaults } from "../../src/preferences/SpeechDefaults.js";
+
+test("defaults to the built-in literals when constructed with nothing", (t) => {
+ const defaults = new SpeechDefaults();
+ t.is(defaults.format, "plain");
+ t.is(defaults.verbosity, "few");
+ t.is(defaults.language, "always");
+ t.is(defaults.pauseDuration, 300);
+ t.is(defaults.pauseScope, "utterance");
+ t.is(defaults.rate, 1);
+ t.is(defaults.pitch, 1);
+ t.is(defaults.volume, 1);
+});
+
+test("constructor copies given fields", (t) => {
+ const defaults = new SpeechDefaults({ verbosity: "most", pauseDuration: 500, rate: 1.5 });
+ t.is(defaults.verbosity, "most");
+ t.is(defaults.pauseDuration, 500);
+ t.is(defaults.rate, 1.5);
+});
+
+test("an out-of-range numeric default falls back to the literal default, not undefined", (t) => {
+ const defaults = new SpeechDefaults({ rate: 999, pitch: -1, volume: 5 });
+ t.is(defaults.rate, 1);
+ t.is(defaults.pitch, 1);
+ t.is(defaults.volume, 1);
+});
+
+test("an unsupported enum default falls back to the literal default", (t) => {
+ const defaults = new SpeechDefaults({
+ // @ts-expect-error deliberately invalid
+ verbosity: "everything",
+ // @ts-expect-error deliberately invalid
+ format: "audio",
+ });
+ t.is(defaults.verbosity, "few");
+ t.is(defaults.format, "plain");
+});
diff --git a/test/preferences/speechPreferences.test.ts b/test/preferences/speechPreferences.test.ts
new file mode 100644
index 0000000..4dba69f
--- /dev/null
+++ b/test/preferences/speechPreferences.test.ts
@@ -0,0 +1,96 @@
+import test from "ava";
+import { SpeechPreferences } from "../../src/preferences/SpeechPreferences.js";
+
+test("defaults to every field undefined", (t) => {
+ const prefs = new SpeechPreferences();
+ t.is(prefs.verbosity, undefined);
+ t.is(prefs.skip, undefined);
+ t.is(prefs.contextualize, undefined);
+ t.is(prefs.format, undefined);
+ t.is(prefs.pauseDuration, undefined);
+ t.is(prefs.rate, undefined);
+ t.is(prefs.pitch, undefined);
+ t.is(prefs.volume, undefined);
+});
+
+test("constructor copies given fields", (t) => {
+ const prefs = new SpeechPreferences({ verbosity: "most", skip: ["toc"], pauseDuration: 500, rate: 1.5, pitch: 0.8, volume: 0.5 });
+ t.is(prefs.verbosity, "most");
+ t.deepEqual(prefs.skip, ["toc"]);
+ t.is(prefs.pauseDuration, 500);
+ t.is(prefs.rate, 1.5);
+ t.is(prefs.pitch, 0.8);
+ t.is(prefs.volume, 0.5);
+});
+
+test("merging overrides only fields explicitly set on the other", (t) => {
+ const base = new SpeechPreferences({ verbosity: "few", pauseDuration: 300 });
+ const merged = base.merging(new SpeechPreferences({ verbosity: "most" }));
+ t.is(merged.verbosity, "most");
+ t.is(merged.pauseDuration, 300);
+});
+
+test("merging with an unset field leaves the base value untouched", (t) => {
+ const base = new SpeechPreferences({ verbosity: "few", contextualize: ["chapter"] });
+ const merged = base.merging(new SpeechPreferences({ pauseDuration: 500 }));
+ t.is(merged.verbosity, "few");
+ t.deepEqual(merged.contextualize, ["chapter"]);
+ t.is(merged.pauseDuration, 500);
+});
+
+test("merging returns a new instance, not a mutation of the base", (t) => {
+ const base = new SpeechPreferences({ verbosity: "few" });
+ const merged = base.merging(new SpeechPreferences({ verbosity: "most" }));
+ t.is(base.verbosity, "few");
+ t.not(merged, base);
+});
+
+test("an out-of-range numeric value is dropped to undefined, not silently accepted", (t) => {
+ const prefs = new SpeechPreferences({ rate: 20, pitch: -1, volume: 1.5, pauseDuration: -100 });
+ t.is(prefs.rate, undefined);
+ t.is(prefs.pitch, undefined);
+ t.is(prefs.volume, undefined);
+ t.is(prefs.pauseDuration, undefined);
+});
+
+test("a value at the exact edge of a range is kept", (t) => {
+ const prefs = new SpeechPreferences({ rate: 10, pitch: 0, volume: 1 });
+ t.is(prefs.rate, 10);
+ t.is(prefs.pitch, 0);
+ t.is(prefs.volume, 1);
+});
+
+test("an unsupported enum value is dropped to undefined", (t) => {
+ const prefs = new SpeechPreferences({
+ // @ts-expect-error deliberately invalid
+ verbosity: "everything",
+ // @ts-expect-error deliberately invalid
+ pauseScope: "sentence",
+ // @ts-expect-error deliberately invalid
+ format: "audio",
+ // @ts-expect-error deliberately invalid
+ language: "sometimes",
+ });
+ t.is(prefs.verbosity, undefined);
+ t.is(prefs.pauseScope, undefined);
+ t.is(prefs.format, undefined);
+ t.is(prefs.language, undefined);
+});
+
+test("a non-boolean value for a boolean field is dropped to undefined", (t) => {
+ const prefs = new SpeechPreferences({
+ // @ts-expect-error deliberately invalid
+ inlineContextualization: "yes",
+ // @ts-expect-error deliberately invalid
+ automaticPausesAtPageOrSpreadEnd: 1,
+ });
+ t.is(prefs.inlineContextualization, undefined);
+ t.is(prefs.automaticPausesAtPageOrSpreadEnd, undefined);
+});
+
+test("explicit null is preserved (not coerced to undefined) for guarded fields", (t) => {
+ const prefs = new SpeechPreferences({ rate: null, verbosity: null, inlineContextualization: null });
+ t.is(prefs.rate, null);
+ t.is(prefs.verbosity, null);
+ t.is(prefs.inlineContextualization, null);
+});
diff --git a/test/preferences/speechPreferencesEditor.test.ts b/test/preferences/speechPreferencesEditor.test.ts
new file mode 100644
index 0000000..1cb030a
--- /dev/null
+++ b/test/preferences/speechPreferencesEditor.test.ts
@@ -0,0 +1,107 @@
+import test from "ava";
+import { SpeechDefaults } from "../../src/preferences/SpeechDefaults.js";
+import { SpeechPreferences } from "../../src/preferences/SpeechPreferences.js";
+import { SpeechPreferencesEditor } from "../../src/preferences/SpeechPreferencesEditor.js";
+import { SpeechSettings } from "../../src/preferences/SpeechSettings.js";
+
+function makeEditor(preferences = new SpeechPreferences()) {
+ const settings = new SpeechSettings(preferences, new SpeechDefaults());
+ return new SpeechPreferencesEditor(preferences, settings);
+}
+
+test("verbosity: unset preference reports the effective default and isEffective false", (t) => {
+ const editor = makeEditor();
+ t.is(editor.verbosity.value, null);
+ t.is(editor.verbosity.effectiveValue, "few");
+ t.false(editor.verbosity.isEffective);
+ t.deepEqual(editor.verbosity.supportedValues, ["none", "few", "some", "most", "custom"]);
+});
+
+test("verbosity: an explicit preference is effective and matches the resolved settings", (t) => {
+ const editor = makeEditor(new SpeechPreferences({ verbosity: "most" }));
+ t.is(editor.verbosity.value, "most");
+ t.is(editor.verbosity.effectiveValue, "most");
+ t.true(editor.verbosity.isEffective);
+});
+
+test("setting a preference through the editor mutates its own preferences object", (t) => {
+ const editor = makeEditor();
+ editor.verbosity.value = "most";
+ t.is(editor.preferences.verbosity, "most");
+});
+
+test("verbosity.value rejects a value outside supportedValues", (t) => {
+ const editor = makeEditor();
+ t.throws(() => {
+ // @ts-expect-error deliberately invalid
+ editor.verbosity.value = "everything";
+ });
+});
+
+test("pauseDuration is a range preference with the expected bounds", (t) => {
+ const editor = makeEditor();
+ t.deepEqual(editor.pauseDuration.supportedRange, [0, 5000]);
+ t.is(editor.pauseDuration.step, 100);
+ t.is(editor.pauseDuration.effectiveValue, 300);
+});
+
+test("pauseScope: unset preference reports the effective default and isEffective false", (t) => {
+ const editor = makeEditor();
+ t.is(editor.pauseScope.value, null);
+ t.is(editor.pauseScope.effectiveValue, "utterance");
+ t.false(editor.pauseScope.isEffective);
+ t.deepEqual(editor.pauseScope.supportedValues, ["utterance", "block"]);
+});
+
+test("pauseScope: an explicit preference is effective and matches the resolved settings", (t) => {
+ const editor = makeEditor(new SpeechPreferences({ pauseScope: "block" }));
+ t.is(editor.pauseScope.value, "block");
+ t.is(editor.pauseScope.effectiveValue, "block");
+ t.true(editor.pauseScope.isEffective);
+});
+
+test("clear() resets preferences to explicit nulls, not undefined", (t) => {
+ const editor = makeEditor(new SpeechPreferences({ verbosity: "most", pauseDuration: 500 }));
+ editor.clear();
+ t.is(editor.preferences.verbosity, null);
+ t.is(editor.preferences.pauseDuration, null);
+});
+
+test("clear() actually resets preferences submitted through submitPreferences()", (t) => {
+ const initial = new SpeechPreferences({ verbosity: "most", pauseDuration: 500 });
+ const editor = makeEditor(initial);
+ editor.clear();
+ // Mirrors what ReadiumSpeechNavigator.submitPreferences() does internally —
+ // undefined-only clears would be silently swallowed by merging() here.
+ const merged = initial.merging(editor.preferences);
+ t.is(merged.verbosity, null);
+ t.is(merged.pauseDuration, null);
+});
+
+test("automaticPausesAtPageOrSpreadEnd is a plain, settable preference", (t) => {
+ const editor = makeEditor();
+ t.false(editor.automaticPausesAtPageOrSpreadEnd.isEffective);
+ editor.automaticPausesAtPageOrSpreadEnd.value = true;
+ t.is(editor.preferences.automaticPausesAtPageOrSpreadEnd, true);
+});
+
+test("rate is a range preference with the expected bounds", (t) => {
+ const editor = makeEditor();
+ t.deepEqual(editor.rate.supportedRange, [0.1, 10]);
+ t.is(editor.rate.step, 0.1);
+ t.is(editor.rate.effectiveValue, 1);
+});
+
+test("pitch is a range preference with the expected bounds", (t) => {
+ const editor = makeEditor();
+ t.deepEqual(editor.pitch.supportedRange, [0, 2]);
+ t.is(editor.pitch.step, 0.1);
+ t.is(editor.pitch.effectiveValue, 1);
+});
+
+test("volume is a range preference with the expected bounds", (t) => {
+ const editor = makeEditor();
+ t.deepEqual(editor.volume.supportedRange, [0, 1]);
+ t.is(editor.volume.step, 0.05);
+ t.is(editor.volume.effectiveValue, 1);
+});
diff --git a/test/preferences/speechSettings.test.ts b/test/preferences/speechSettings.test.ts
new file mode 100644
index 0000000..6180187
--- /dev/null
+++ b/test/preferences/speechSettings.test.ts
@@ -0,0 +1,61 @@
+import test from "ava";
+import { SpeechDefaults } from "../../src/preferences/SpeechDefaults.js";
+import { SpeechPreferences } from "../../src/preferences/SpeechPreferences.js";
+import { SpeechSettings } from "../../src/preferences/SpeechSettings.js";
+import { contextualizedAtVerbosity, skippableAtVerbosity } from "../../src/preferences/verbosityTables.js";
+
+const defaults = new SpeechDefaults();
+
+test("defaults to the few preset and the rest of SpeechDefaults", (t) => {
+ const settings = new SpeechSettings(new SpeechPreferences(), defaults);
+ t.is(settings.verbosity, "few");
+ t.is(settings.format, "plain");
+ t.is(settings.inlineContextualization, false);
+ t.is(settings.language, "always");
+ t.is(settings.pauseDuration, 300);
+ t.is(settings.pauseScope, "utterance");
+ t.is(settings.automaticPausesAtPageOrSpreadEnd, false);
+ t.is(settings.rate, 1);
+ t.is(settings.pitch, 1);
+ t.is(settings.volume, 1);
+ t.deepEqual([...settings.skip].sort(), [...skippableAtVerbosity.few].sort());
+ t.deepEqual([...settings.contextualize].sort(), [...contextualizedAtVerbosity.few].sort());
+});
+
+test("none resolves to no contextualized roles and the widest skip set", (t) => {
+ const settings = new SpeechSettings(new SpeechPreferences({ verbosity: "none" }), defaults);
+ t.deepEqual(settings.contextualize, []);
+ t.deepEqual([...settings.skip].sort(), [...skippableAtVerbosity.none].sort());
+});
+
+test("most resolves to every catalog role contextualized", (t) => {
+ const settings = new SpeechSettings(new SpeechPreferences({ verbosity: "most" }), defaults);
+ t.deepEqual([...settings.contextualize].sort(), [...contextualizedAtVerbosity.most].sort());
+ t.deepEqual([...settings.skip].sort(), [...skippableAtVerbosity.most].sort());
+});
+
+test("custom contributes nothing from the tables — skip/contextualize are the sole source", (t) => {
+ const settings = new SpeechSettings(
+ new SpeechPreferences({ verbosity: "custom", skip: ["toc"], contextualize: ["chapter"] }),
+ defaults,
+ );
+ t.deepEqual(settings.skip, ["toc"]);
+ t.deepEqual(settings.contextualize, ["chapter"]);
+});
+
+test("custom with nothing set skips and contextualizes nothing", (t) => {
+ const settings = new SpeechSettings(new SpeechPreferences({ verbosity: "custom" }), defaults);
+ t.deepEqual(settings.skip, []);
+ t.deepEqual(settings.contextualize, []);
+});
+
+test("skip/contextualize are ignored under any non-custom preset", (t) => {
+ const settings = new SpeechSettings(
+ new SpeechPreferences({ verbosity: "few", skip: ["chapter"], contextualize: ["chapter"] }),
+ defaults,
+ );
+ t.false(settings.skip.includes("chapter"));
+ t.deepEqual([...settings.skip].sort(), [...skippableAtVerbosity.few].sort());
+ t.false(settings.contextualize.includes("chapter"));
+ t.deepEqual([...settings.contextualize].sort(), [...contextualizedAtVerbosity.few].sort());
+});