@blocknote/xl-odt-exporter 0.25.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/LICENSE +661 -0
  2. package/dist/GeistMono-Regular-D4rKXxwr.js +5 -0
  3. package/dist/GeistMono-Regular-D4rKXxwr.js.map +1 -0
  4. package/dist/Inter_18pt-Regular-byxnNS-8.js +5 -0
  5. package/dist/Inter_18pt-Regular-byxnNS-8.js.map +1 -0
  6. package/dist/blocknote-xl-odt-exporter.js +1646 -0
  7. package/dist/blocknote-xl-odt-exporter.js.map +1 -0
  8. package/dist/blocknote-xl-odt-exporter.umd.cjs +1080 -0
  9. package/dist/blocknote-xl-odt-exporter.umd.cjs.map +1 -0
  10. package/dist/webpack-stats.json +1 -0
  11. package/package.json +82 -0
  12. package/src/index.ts +1 -0
  13. package/src/odt/__snapshots__/basic/content.xml +448 -0
  14. package/src/odt/__snapshots__/basic/styles.xml +599 -0
  15. package/src/odt/__snapshots__/withCustomOptions/content.xml +462 -0
  16. package/src/odt/__snapshots__/withCustomOptions/styles.xml +599 -0
  17. package/src/odt/defaultSchema/blocks.tsx +460 -0
  18. package/src/odt/defaultSchema/index.ts +9 -0
  19. package/src/odt/defaultSchema/inlineContent.tsx +30 -0
  20. package/src/odt/defaultSchema/styles.ts +59 -0
  21. package/src/odt/index.ts +2 -0
  22. package/src/odt/odtExporter.test.ts +80 -0
  23. package/src/odt/odtExporter.tsx +360 -0
  24. package/src/odt/template/META-INF/manifest.xml +18 -0
  25. package/src/odt/template/Pictures/100000000000014C0000014CDD284996.jpg +0 -0
  26. package/src/odt/template/README.md +3 -0
  27. package/src/odt/template/Thumbnails/thumbnail.png +0 -0
  28. package/src/odt/template/content.xml +430 -0
  29. package/src/odt/template/manifest.rdf +6 -0
  30. package/src/odt/template/meta.xml +19 -0
  31. package/src/odt/template/mimetype +1 -0
  32. package/src/odt/template/settings.xml +173 -0
  33. package/src/odt/template/styles.xml +1078 -0
  34. package/src/odt/template/template blocknote.odt +0 -0
  35. package/src/odt/util/jsx.d.ts +55 -0
  36. package/src/vite-env.d.ts +11 -0
  37. package/types/src/index.d.ts +1 -0
  38. package/types/src/odt/defaultSchema/blocks.d.ts +4 -0
  39. package/types/src/odt/defaultSchema/index.d.ts +529 -0
  40. package/types/src/odt/defaultSchema/inlineContent.d.ts +3 -0
  41. package/types/src/odt/defaultSchema/styles.d.ts +2 -0
  42. package/types/src/odt/index.d.ts +2 -0
  43. package/types/src/odt/odtExporter.d.ts +28 -0
  44. package/types/src/odt/odtExporter.test.d.ts +1 -0
@@ -0,0 +1,1646 @@
1
+ var N = Object.defineProperty;
2
+ var I = (e, t, l) => t in e ? N(e, t, { enumerable: !0, configurable: !0, writable: !0, value: l }) : e[t] = l;
3
+ var g = (e, t, l) => I(e, typeof t != "symbol" ? t + "" : t, l);
4
+ import { jsxs as x, jsx as n, Fragment as h } from "react/jsx-runtime";
5
+ import { mapTableCell as T, Exporter as M, COLORS_DEFAULT as B } from "@blocknote/core";
6
+ import { ZipWriter as O, BlobWriter as R, TextReader as v, BlobReader as S } from "@zip.js/zip.js";
7
+ import { renderToString as k } from "react-dom/server";
8
+ const C = (e) => Array.from({ length: e }, () => /* @__PURE__ */ n("text:tab", {})), u = (e, t, l = "Standard", s = {}) => {
9
+ const a = {}, o = {};
10
+ if (t.textAlignment && t.textAlignment !== "left") {
11
+ const i = {
12
+ left: "start",
13
+ center: "center",
14
+ right: "end",
15
+ justify: "justify"
16
+ };
17
+ a["fo:text-align"] = i[t.textAlignment];
18
+ }
19
+ const y = t.backgroundColor && t.backgroundColor !== "default" ? e.options.colors[t.backgroundColor].background : void 0;
20
+ if (y && (a["fo:background-color"] = y), t.textColor && t.textColor !== "default") {
21
+ const i = e.options.colors[t.textColor].text;
22
+ o["fo:color"] = i;
23
+ }
24
+ return !y && !Object.keys(s).length && !Object.keys(a).length && !Object.keys(o).length ? l || "Standard" : e.registerStyle((i) => /* @__PURE__ */ x(
25
+ "style:style",
26
+ {
27
+ "style:family": "paragraph",
28
+ "style:name": i,
29
+ "style:parent-style-name": l,
30
+ ...s,
31
+ children: [
32
+ y && /* @__PURE__ */ n(
33
+ "loext:graphic-properties",
34
+ {
35
+ "draw:fill": "solid",
36
+ "draw:fill-color": y
37
+ }
38
+ ),
39
+ Object.keys(a).length > 0 && /* @__PURE__ */ n("style:paragraph-properties", { ...a }),
40
+ Object.keys(o).length > 0 && /* @__PURE__ */ n("style:text-properties", { ...o })
41
+ ]
42
+ }
43
+ ));
44
+ }, P = (e) => {
45
+ const t = /* @__PURE__ */ new Map();
46
+ return (l) => {
47
+ const s = `${l.props.backgroundColor}-${l.props.textColor}-${l.props.textAlignment}`;
48
+ if (t.has(s))
49
+ return t.get(s);
50
+ const a = e.registerStyle((o) => /* @__PURE__ */ n("style:style", { "style:family": "table-cell", "style:name": o, children: /* @__PURE__ */ n(
51
+ "style:table-cell-properties",
52
+ {
53
+ "fo:border": "0.5pt solid #000000",
54
+ "style:writing-mode": "lr-tb",
55
+ "fo:padding-top": "0in",
56
+ "fo:padding-left": "0.075in",
57
+ "fo:padding-bottom": "0in",
58
+ "fo:padding-right": "0.075in",
59
+ "fo:background-color": l.props.backgroundColor !== "default" && l.props.backgroundColor ? e.options.colors[l.props.backgroundColor].background : void 0,
60
+ "fo:color": l.props.textColor !== "default" && l.props.textColor ? e.options.colors[l.props.textColor].text : void 0
61
+ }
62
+ ) }));
63
+ return t.set(s, a), a;
64
+ };
65
+ }, $ = (e, t) => e.registerStyle((s) => /* @__PURE__ */ n("style:style", { "style:family": "table", "style:name": s, children: /* @__PURE__ */ n(
66
+ "style:table-properties",
67
+ {
68
+ "table:align": "left",
69
+ "style:writing-mode": "lr-tb",
70
+ "style:width": `${t.width}pt`
71
+ }
72
+ ) })), L = (e, t) => t <= 0 ? e : /* @__PURE__ */ n("text:list", { children: /* @__PURE__ */ n("text:list-item", { children: L(e, t - 1) }) }), W = {
73
+ paragraph: (e, t, l) => {
74
+ const s = u(
75
+ t,
76
+ e.props
77
+ );
78
+ return /* @__PURE__ */ x("text:p", { "text:style-name": s, children: [
79
+ C(l),
80
+ t.transformInlineContent(e.content)
81
+ ] });
82
+ },
83
+ heading: (e, t, l) => {
84
+ const a = u(
85
+ t,
86
+ e.props,
87
+ "Heading_20_" + e.props.level
88
+ );
89
+ return /* @__PURE__ */ x(
90
+ "text:h",
91
+ {
92
+ "text:outline-level": `${e.props.level}`,
93
+ "text:style-name": a,
94
+ children: [
95
+ C(l),
96
+ t.transformInlineContent(e.content)
97
+ ]
98
+ }
99
+ );
100
+ },
101
+ /**
102
+ * Note: we wrap each list item in it's own list element.
103
+ * This is not the cleanest solution, it would be nicer to recognize subsequent
104
+ * list items and wrap them in the same list element.
105
+ *
106
+ * However, Word DocX -> ODT export actually does the same thing, so
107
+ * for now it seems reasonable.
108
+ *
109
+ * (LibreOffice does nicely wrap the list items in the same list element)
110
+ */
111
+ bulletListItem: (e, t, l) => {
112
+ const s = u(
113
+ t,
114
+ e.props,
115
+ "Standard",
116
+ { "style:list-style-name": "WWNum1" }
117
+ );
118
+ return /* @__PURE__ */ n("text:list", { "text:style-name": "WWNum1", children: /* @__PURE__ */ n("text:list-item", { children: L(
119
+ /* @__PURE__ */ n("text:p", { "text:style-name": s, children: t.transformInlineContent(e.content) }),
120
+ l
121
+ ) }) });
122
+ },
123
+ numberedListItem: (e, t, l, s) => {
124
+ const a = u(
125
+ t,
126
+ e.props
127
+ ), o = (s || 0) > 1 ? "true" : "false";
128
+ return /* @__PURE__ */ n(
129
+ "text:list",
130
+ {
131
+ "text:style-name": "No_20_List",
132
+ "text:continue-numbering": o,
133
+ children: /* @__PURE__ */ n(
134
+ "text:list-item",
135
+ {
136
+ ...o === "false" && {
137
+ "text:start-value": e.props.start
138
+ },
139
+ children: L(
140
+ /* @__PURE__ */ n("text:p", { "text:style-name": a, children: t.transformInlineContent(e.content) }),
141
+ l
142
+ )
143
+ }
144
+ )
145
+ }
146
+ );
147
+ },
148
+ checkListItem: (e, t) => /* @__PURE__ */ x("text:p", { "text:style-name": "Standard", children: [
149
+ e.props.checked ? "☒ " : "☐ ",
150
+ t.transformInlineContent(e.content)
151
+ ] }),
152
+ pageBreak: async () => /* @__PURE__ */ n("text:p", { "text:style-name": "PageBreak" }),
153
+ image: async (e, t) => {
154
+ const l = t, { path: s, mimeType: a, ...o } = await l.registerPicture(e.props.url), y = u(
155
+ t,
156
+ e.props
157
+ ), i = e.props.previewWidth, p = o.height / o.width * i, m = 20, f = /* @__PURE__ */ x("text:p", { "text:style-name": e.props.caption ? "Caption" : y, children: [
158
+ /* @__PURE__ */ n(
159
+ "draw:frame",
160
+ {
161
+ "draw:style-name": "Frame",
162
+ "style:rel-height": "scale",
163
+ "svg:width": `${i}px`,
164
+ "svg:height": `${p}px`,
165
+ "style:rel-width": e.props.caption ? "100%" : `${i}px`,
166
+ ...!e.props.caption && {
167
+ "text:anchor-type": "as-char"
168
+ },
169
+ children: /* @__PURE__ */ n(
170
+ "draw:image",
171
+ {
172
+ "xlink:type": "simple",
173
+ "xlink:show": "embed",
174
+ "xlink:actuate": "onLoad",
175
+ "xlink:href": s,
176
+ "draw:mime-type": a
177
+ }
178
+ )
179
+ }
180
+ ),
181
+ /* @__PURE__ */ n("text:line-break", {}),
182
+ /* @__PURE__ */ n("text:span", { "text:style-name": "Caption", children: e.props.caption })
183
+ ] });
184
+ return e.props.caption ? /* @__PURE__ */ n("text:p", { "text:style-name": y, children: /* @__PURE__ */ n(
185
+ "draw:frame",
186
+ {
187
+ "draw:style-name": "Frame",
188
+ "style:rel-height": "scale",
189
+ "style:rel-width": `${i}px`,
190
+ "svg:width": `${i}px`,
191
+ "svg:height": `${p + m}px`,
192
+ "text:anchor-type": "as-char",
193
+ children: /* @__PURE__ */ n("draw:text-box", { children: f })
194
+ }
195
+ ) }) : f;
196
+ },
197
+ table: (e, t) => {
198
+ var p;
199
+ const a = (e.content.columnWidths.reduce(
200
+ (m, f) => (m || 0) + (f || 120),
201
+ 0
202
+ ) || 0) * 0.75, o = t, y = P(o), i = $(o, { width: a });
203
+ return /* @__PURE__ */ x("table:table", { "table:name": e.id, "table:style-name": i, children: [
204
+ (p = e.content.rows[0]) == null ? void 0 : p.cells.map((m, f) => {
205
+ const d = (e.content.columnWidths[f] || 120) * 0.75, c = o.registerStyle((_) => /* @__PURE__ */ n("style:style", { "style:name": _, "style:family": "table-column", children: /* @__PURE__ */ n(
206
+ "style:table-column-properties",
207
+ {
208
+ "style:column-width": `${d}pt`
209
+ }
210
+ ) }));
211
+ return /* @__PURE__ */ n("table:table-column", { "table:style-name": c }, f);
212
+ }),
213
+ e.content.rows.map((m, f) => /* @__PURE__ */ n("table:table-row", { children: m.cells.map((b, d) => {
214
+ const c = T(b);
215
+ return /* @__PURE__ */ n(
216
+ "table:table-cell",
217
+ {
218
+ "table:style-name": y(c),
219
+ "office:value-type": "string",
220
+ "style:text-align-source": "fix",
221
+ "style:paragraph-properties-text-align": c.props.textAlignment,
222
+ children: /* @__PURE__ */ n("text:p", { "text:style-name": "Standard", children: t.transformInlineContent(c.content) })
223
+ },
224
+ `${f}-${d}`
225
+ );
226
+ }) }, f))
227
+ ] });
228
+ },
229
+ codeBlock: (e) => {
230
+ var l;
231
+ const t = ((l = e.content[0]) == null ? void 0 : l.text) || "";
232
+ return /* @__PURE__ */ x("text:p", { "text:style-name": "Codeblock", children: [
233
+ ...t.split(`
234
+ `).map((s, a) => /* @__PURE__ */ x(h, { children: [
235
+ a !== 0 && /* @__PURE__ */ n("text:line-break", {}),
236
+ s
237
+ ] }))
238
+ ] });
239
+ },
240
+ file: async (e) => /* @__PURE__ */ x(h, { children: [
241
+ /* @__PURE__ */ n("text:p", { "style:style-name": "Standard", children: e.props.url ? /* @__PURE__ */ n(
242
+ "text:a",
243
+ {
244
+ "xlink:type": "simple",
245
+ "text:style-name": "Internet_20_link",
246
+ "office:target-frame-name": "_top",
247
+ "xlink:show": "replace",
248
+ "xlink:href": e.props.url,
249
+ children: /* @__PURE__ */ n("text:span", { "text:style-name": "Internet_20_link", children: "Open file" })
250
+ }
251
+ ) : "Open file" }),
252
+ e.props.caption && /* @__PURE__ */ n("text:p", { "text:style-name": "Caption", children: e.props.caption })
253
+ ] }),
254
+ video: (e) => /* @__PURE__ */ x(h, { children: [
255
+ /* @__PURE__ */ n("text:p", { "style:style-name": "Standard", children: /* @__PURE__ */ n(
256
+ "text:a",
257
+ {
258
+ "xlink:type": "simple",
259
+ "text:style-name": "Internet_20_link",
260
+ "office:target-frame-name": "_top",
261
+ "xlink:show": "replace",
262
+ "xlink:href": e.props.url,
263
+ children: /* @__PURE__ */ n("text:span", { "text:style-name": "Internet_20_link", children: "Open video" })
264
+ }
265
+ ) }),
266
+ e.props.caption && /* @__PURE__ */ n("text:p", { "text:style-name": "Caption", children: e.props.caption })
267
+ ] }),
268
+ audio: (e) => /* @__PURE__ */ x(h, { children: [
269
+ /* @__PURE__ */ n("text:p", { "style:style-name": "Standard", children: /* @__PURE__ */ n(
270
+ "text:a",
271
+ {
272
+ "xlink:type": "simple",
273
+ "text:style-name": "Internet_20_link",
274
+ "office:target-frame-name": "_top",
275
+ "xlink:show": "replace",
276
+ "xlink:href": e.props.url,
277
+ children: /* @__PURE__ */ n("text:span", { "text:style-name": "Internet_20_link", children: "Open audio" })
278
+ }
279
+ ) }),
280
+ e.props.caption && /* @__PURE__ */ n("text:p", { "text:style-name": "Caption", children: e.props.caption })
281
+ ] })
282
+ }, A = {
283
+ link: (e, t) => {
284
+ const l = e.content.map((s) => t.transformStyledText(s));
285
+ return /* @__PURE__ */ n(
286
+ "text:a",
287
+ {
288
+ "xlink:type": "simple",
289
+ "text:style-name": "Internet_20_link",
290
+ "office:target-frame-name": "_top",
291
+ "xlink:show": "replace",
292
+ "xlink:href": e.href,
293
+ children: l
294
+ }
295
+ );
296
+ },
297
+ text: (e, t) => t.transformStyledText(e)
298
+ }, D = {
299
+ bold: (e) => e ? { "fo:font-weight": "bold" } : {},
300
+ italic: (e) => e ? { "fo:font-style": "italic" } : {},
301
+ underline: (e) => e ? { "style:text-underline-style": "solid" } : {},
302
+ strike: (e) => e ? { "style:text-line-through-style": "solid" } : {},
303
+ textColor: (e, t) => e ? { "fo:color": t.options.colors[e].text } : {},
304
+ backgroundColor: (e, t) => e ? { "fo:background-color": t.options.colors[e].background } : {},
305
+ code: (e) => e ? { "style:font-name": "Courier New" } : {}
306
+ }, K = {
307
+ blockMapping: W,
308
+ inlineContentMapping: A,
309
+ styleMapping: D
310
+ };
311
+ var E = { BASE_URL: "/", MODE: "production", DEV: !1, PROD: !0, SSR: !1 };
312
+ async function F(e) {
313
+ if (E.NODE_ENV === "test") {
314
+ const t = require("fs");
315
+ let l = e.default;
316
+ return l.startsWith("/@fs/") && (l = l.substring(4)), t.readFileSync(l);
317
+ } else {
318
+ const t = e.default;
319
+ return await (await fetch(t)).arrayBuffer();
320
+ }
321
+ }
322
+ var U = { BASE_URL: "/", MODE: "production", DEV: !1, PROD: !0, SSR: !1 };
323
+ async function j(e) {
324
+ if (typeof window < "u" && U.NODE_ENV !== "test") {
325
+ const t = await createImageBitmap(e), { width: l, height: s } = t;
326
+ return t.close(), { width: l, height: s };
327
+ } else {
328
+ const t = (await import("image-meta")).imageMeta, l = new Uint8Array(await e.arrayBuffer()), s = t(l);
329
+ if (!s.width || !s.height)
330
+ throw new Error("Image dimensions not found");
331
+ return { width: s.width, height: s.height };
332
+ }
333
+ }
334
+ const G = `<?xml version="1.0" encoding="UTF-8"?>
335
+ <office:document-styles xmlns:css3t="http://www.w3.org/TR/css3-text/"
336
+ xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml"
337
+ xmlns:dom="http://www.w3.org/2001/xml-events"
338
+ xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0"
339
+ xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
340
+ xmlns:math="http://www.w3.org/1998/Math/MathML"
341
+ xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0"
342
+ xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0"
343
+ xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0"
344
+ xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
345
+ xmlns:officeooo="http://openoffice.org/2009/office"
346
+ xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0"
347
+ xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0"
348
+ xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"
349
+ xmlns:rpt="http://openoffice.org/2005/report"
350
+ xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0"
351
+ xmlns:tableooo="http://openoffice.org/2009/table"
352
+ xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"
353
+ xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2"
354
+ xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
355
+ xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
356
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
357
+ xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
358
+ xmlns:oooc="http://openoffice.org/2004/calc" xmlns:xlink="http://www.w3.org/1999/xlink"
359
+ xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:ooow="http://openoffice.org/2004/writer"
360
+ xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"
361
+ xmlns:ooo="http://openoffice.org/2004/office"
362
+ xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" office:version="1.3">
363
+ <office:font-face-decls>
364
+ <style:font-face style:name="Geist Mono" svg:font-family="Geist Mono" />
365
+ <style:font-face style:name="Inter 18pt" svg:font-family="Inter 18pt"
366
+ style:font-pitch="variable" />
367
+ <style:font-face style:name="Liberation Serif"
368
+ svg:font-family="&apos;Liberation Serif&apos;" style:font-family-generic="roman"
369
+ style:font-pitch="variable" />
370
+ <style:font-face style:name="OpenSymbol" svg:font-family="OpenSymbol"
371
+ style:font-charset="x-symbol" />
372
+ <style:font-face style:name="PingFang SC" svg:font-family="&apos;PingFang SC&apos;"
373
+ style:font-family-generic="system" style:font-pitch="variable" />
374
+ <style:font-face style:name="Tahoma" svg:font-family="Tahoma"
375
+ style:font-family-generic="system" style:font-pitch="variable" />
376
+ <style:font-face style:name="Times New Roman (Body CS)"
377
+ svg:font-family="&apos;Times New Roman (Body CS)&apos;"
378
+ style:font-family-generic="system" style:font-pitch="variable" />
379
+ </office:font-face-decls>
380
+ <office:styles>
381
+ <draw:gradient draw:name="Gradient_20_1" draw:display-name="Gradient 1" draw:style="linear"
382
+ draw:start-color="#000000" draw:end-color="#ffffff" draw:start-intensity="100%"
383
+ draw:end-intensity="100%" draw:angle="0deg" draw:border="0%">
384
+ <loext:gradient-stop svg:offset="0" loext:color-type="rgb" loext:color-value="#000000" />
385
+ <loext:gradient-stop svg:offset="1" loext:color-type="rgb" loext:color-value="#ffffff" />
386
+ </draw:gradient>
387
+ <draw:hatch draw:name="Red_20_90_20_Degrees_20_Crossed_20_1"
388
+ draw:display-name="Red 90 Degrees Crossed 1" draw:style="single" draw:color="#3465a4"
389
+ draw:distance="0.0079in" draw:rotation="0" />
390
+ <style:default-style style:family="graphic">
391
+ <style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf"
392
+ fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in"
393
+ draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in"
394
+ draw:start-line-spacing-vertical="0.1114in"
395
+ draw:end-line-spacing-horizontal="0.1114in"
396
+ draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false" />
397
+ <style:paragraph-properties style:text-autospace="ideograph-alpha"
398
+ style:line-break="strict" loext:tab-stop-distance="0in" style:writing-mode="lr-tb"
399
+ style:font-independent-line-spacing="false">
400
+ <style:tab-stops />
401
+ </style:paragraph-properties>
402
+ <style:text-properties style:font-name="Inter 18pt"
403
+ fo:font-family="Inter 18pt" style:font-style-name="Regular"
404
+ style:font-pitch="variable" style:font-name-complex="Times New Roman (Body CS)"
405
+ style:font-family-complex="&apos;Times New Roman (Body CS)&apos;"
406
+ style:font-family-generic-complex="system" style:font-pitch-complex="variable"
407
+ style:use-window-font-color="true" loext:opacity="0%"
408
+ fo:font-size="12pt" fo:language="en" fo:country="NL"
409
+ style:letter-kerning="true" style:font-size-asian="12pt"
410
+ style:language-asian="en" style:country-asian="GB"
411
+ style:font-size-complex="12pt" style:language-complex="ar"
412
+ style:country-complex="SA" />
413
+ </style:default-style>
414
+ <style:default-style style:family="paragraph">
415
+ <style:paragraph-properties fo:hyphenation-ladder-count="no-limit"
416
+ fo:hyphenation-keep="auto" loext:hyphenation-keep-type="column"
417
+ style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging"
418
+ style:line-break="strict" style:tab-stop-distance="0.139in"
419
+ style:writing-mode="page" />
420
+ <style:text-properties style:font-name="Inter 18pt"
421
+ fo:font-family="Inter 18pt" style:font-style-name="Regular"
422
+ style:font-pitch="variable" style:font-name-complex="Times New Roman (Body CS)"
423
+ style:font-family-complex="&apos;Times New Roman (Body CS)&apos;"
424
+ style:font-family-generic-complex="system" style:font-pitch-complex="variable"
425
+ style:use-window-font-color="true" loext:opacity="0%"
426
+ fo:font-size="12pt" fo:language="en" fo:country="NL"
427
+ style:letter-kerning="true" style:font-size-asian="12pt"
428
+ style:language-asian="en" style:country-asian="GB"
429
+ style:font-size-complex="12pt" style:language-complex="ar"
430
+ style:country-complex="SA" fo:hyphenate="false" fo:hyphenation-remain-char-count="2"
431
+ fo:hyphenation-push-char-count="2" loext:hyphenation-no-caps="false"
432
+ loext:hyphenation-no-last-word="false" loext:hyphenation-word-char-count="5"
433
+ loext:hyphenation-zone="no-limit" />
434
+ </style:default-style>
435
+ <style:default-style style:family="table">
436
+ <style:table-properties table:border-model="collapsing" />
437
+ </style:default-style>
438
+ <style:default-style style:family="table-row">
439
+ <style:table-row-properties fo:keep-together="auto" />
440
+ </style:default-style>
441
+ <style:style style:name="Standard" style:family="paragraph" style:class="text">
442
+ <style:paragraph-properties fo:margin-top="0.0311in" fo:margin-bottom="0.0311in"
443
+ style:contextual-spacing="false" fo:line-height="150%" fo:text-align="start"
444
+ style:justify-single-word="false" fo:orphans="2" fo:widows="2"
445
+ style:writing-mode="lr-tb" />
446
+ <style:text-properties style:font-name="Inter 18pt"
447
+ fo:font-family="Inter 18pt" style:font-style-name="Regular"
448
+ style:font-pitch="variable" style:font-name-complex="Times New Roman (Body CS)"
449
+ style:font-family-complex="&apos;Times New Roman (Body CS)&apos;"
450
+ style:font-family-generic-complex="system" style:font-pitch-complex="variable" />
451
+ </style:style>
452
+ <style:style style:name="Heading" style:family="paragraph"
453
+ style:parent-style-name="Standard" style:next-style-name="Text_20_body"
454
+ style:class="text">
455
+ <style:paragraph-properties fo:margin-top="0.1665in" fo:margin-bottom="0.0835in"
456
+ style:contextual-spacing="false" fo:keep-with-next="always" />
457
+ <style:text-properties style:font-family-generic="swiss"
458
+ style:font-pitch="variable" fo:font-size="14pt" style:font-name-asian="PingFang SC"
459
+ style:font-family-asian="&apos;PingFang SC&apos;"
460
+ style:font-family-generic-asian="system" style:font-pitch-asian="variable"
461
+ style:font-size-asian="14pt" style:font-name-complex="Arial Unicode MS1"
462
+ style:font-family-complex="&apos;Arial Unicode MS&apos;"
463
+ style:font-family-generic-complex="system" style:font-pitch-complex="variable"
464
+ style:font-size-complex="14pt" />
465
+ </style:style>
466
+ <style:style style:name="Text_20_body" style:display-name="Text body"
467
+ style:family="paragraph" style:parent-style-name="Standard" style:class="text">
468
+ <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0972in"
469
+ style:contextual-spacing="false" fo:line-height="115%" />
470
+ </style:style>
471
+ <style:style style:name="List" style:family="paragraph"
472
+ style:parent-style-name="Text_20_body" style:class="list">
473
+ <style:text-properties style:font-size-asian="12pt"
474
+ style:font-name-complex="Arial Unicode MS"
475
+ style:font-family-complex="&apos;Arial Unicode MS&apos;"
476
+ style:font-family-generic-complex="swiss" />
477
+ </style:style>
478
+ <style:style style:name="Caption" style:family="paragraph"
479
+ style:parent-style-name="Standard" style:next-style-name="Standard" style:class="extra">
480
+ <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.139in"
481
+ style:contextual-spacing="false" fo:line-height="100%" />
482
+ <style:text-properties fo:color="#0e2841" loext:opacity="100%" fo:font-size="9pt"
483
+ fo:font-style="italic" style:font-size-asian="9pt" style:font-style-asian="italic"
484
+ style:font-size-complex="9pt" style:font-style-complex="italic">
485
+ <loext:char-complex-color loext:theme-type="dark2" loext:color-type="theme" />
486
+ </style:text-properties>
487
+ </style:style>
488
+ <style:style style:name="Index" style:family="paragraph" style:parent-style-name="Standard"
489
+ style:class="index">
490
+ <style:paragraph-properties text:number-lines="false" text:line-number="0" />
491
+ <style:text-properties style:font-size-asian="12pt"
492
+ style:font-name-complex="Arial Unicode MS"
493
+ style:font-family-complex="&apos;Arial Unicode MS&apos;"
494
+ style:font-family-generic-complex="swiss" />
495
+ </style:style>
496
+ <style:style style:name="Heading_20_1" style:display-name="Heading 1"
497
+ style:family="paragraph" style:parent-style-name="Standard"
498
+ style:next-style-name="Standard" loext:linked-style-name="Heading_20_1_20_Char"
499
+ style:default-outline-level="1" style:list-style-name="" style:class="text">
500
+ <style:text-properties fo:font-size="24pt" fo:font-weight="bold"
501
+ style:font-size-asian="24pt" style:font-weight-asian="bold"
502
+ style:font-size-complex="24pt" />
503
+ </style:style>
504
+ <style:style style:name="Heading_20_2" style:display-name="Heading 2"
505
+ style:family="paragraph" style:parent-style-name="Standard"
506
+ style:next-style-name="Standard" loext:linked-style-name="Heading_20_2_20_Char"
507
+ style:default-outline-level="2" style:list-style-name="" style:class="text">
508
+ <style:text-properties fo:font-size="18pt" fo:font-weight="bold"
509
+ style:font-size-asian="18pt" style:font-weight-asian="bold"
510
+ style:font-size-complex="18pt" />
511
+ </style:style>
512
+ <style:style style:name="Heading_20_3" style:display-name="Heading 3"
513
+ style:family="paragraph" style:parent-style-name="Standard"
514
+ style:next-style-name="Standard" loext:linked-style-name="Heading_20_3_20_Char"
515
+ style:default-outline-level="3" style:list-style-name="" style:class="text">
516
+ <style:text-properties fo:font-size="14pt" fo:font-weight="bold"
517
+ style:font-size-asian="14pt" style:font-weight-asian="bold"
518
+ style:font-size-complex="14pt" />
519
+ </style:style>
520
+ <style:style style:name="Heading_20_4" style:display-name="Heading 4"
521
+ style:family="paragraph" style:parent-style-name="Standard"
522
+ style:next-style-name="Standard" loext:linked-style-name="Heading_20_4_20_Char"
523
+ style:default-outline-level="4" style:list-style-name="" style:class="text">
524
+ <style:paragraph-properties fo:margin-top="0.0555in" fo:margin-bottom="0.028in"
525
+ style:contextual-spacing="false" fo:keep-together="always"
526
+ fo:keep-with-next="always" />
527
+ <style:text-properties fo:color="#0f4761" loext:opacity="100%" fo:font-style="italic"
528
+ style:font-name-asian="F2" style:font-family-generic-asian="system"
529
+ style:font-pitch-asian="variable" style:font-style-asian="italic"
530
+ style:font-name-complex="F2" style:font-family-generic-complex="system"
531
+ style:font-pitch-complex="variable" style:font-style-complex="italic">
532
+ <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
533
+ <loext:transformation loext:type="shade" loext:value="2509" />
534
+ </loext:char-complex-color>
535
+ </style:text-properties>
536
+ </style:style>
537
+ <style:style style:name="Heading_20_5" style:display-name="Heading 5"
538
+ style:family="paragraph" style:parent-style-name="Standard"
539
+ style:next-style-name="Standard" loext:linked-style-name="Heading_20_5_20_Char"
540
+ style:default-outline-level="5" style:list-style-name="" style:class="text">
541
+ <style:paragraph-properties fo:margin-top="0.0555in" fo:margin-bottom="0.028in"
542
+ style:contextual-spacing="false" fo:keep-together="always"
543
+ fo:keep-with-next="always" />
544
+ <style:text-properties fo:color="#0f4761" loext:opacity="100%"
545
+ style:font-name-asian="F2" style:font-family-generic-asian="system"
546
+ style:font-pitch-asian="variable" style:font-name-complex="F2"
547
+ style:font-family-generic-complex="system" style:font-pitch-complex="variable">
548
+ <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
549
+ <loext:transformation loext:type="shade" loext:value="2509" />
550
+ </loext:char-complex-color>
551
+ </style:text-properties>
552
+ </style:style>
553
+ <style:style style:name="Heading_20_6" style:display-name="Heading 6"
554
+ style:family="paragraph" style:parent-style-name="Standard"
555
+ style:next-style-name="Standard" loext:linked-style-name="Heading_20_6_20_Char"
556
+ style:default-outline-level="6" style:list-style-name="" style:class="text">
557
+ <style:paragraph-properties fo:margin-top="0.028in" fo:margin-bottom="0in"
558
+ style:contextual-spacing="false" fo:keep-together="always"
559
+ fo:keep-with-next="always" />
560
+ <style:text-properties fo:color="#595959" loext:opacity="100%" fo:font-style="italic"
561
+ style:font-name-asian="F2" style:font-family-generic-asian="system"
562
+ style:font-pitch-asian="variable" style:font-style-asian="italic"
563
+ style:font-name-complex="F2" style:font-family-generic-complex="system"
564
+ style:font-pitch-complex="variable" style:font-style-complex="italic">
565
+ <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
566
+ <loext:transformation loext:type="tint" loext:value="3490" />
567
+ </loext:char-complex-color>
568
+ </style:text-properties>
569
+ </style:style>
570
+ <style:style style:name="Heading_20_7" style:display-name="Heading 7"
571
+ style:family="paragraph" style:parent-style-name="Standard"
572
+ style:next-style-name="Standard" loext:linked-style-name="Heading_20_7_20_Char"
573
+ style:default-outline-level="7" style:list-style-name="" style:class="text">
574
+ <style:paragraph-properties fo:margin-top="0.028in" fo:margin-bottom="0in"
575
+ style:contextual-spacing="false" fo:keep-together="always"
576
+ fo:keep-with-next="always" />
577
+ <style:text-properties fo:color="#595959" loext:opacity="100%"
578
+ style:font-name-asian="F2" style:font-family-generic-asian="system"
579
+ style:font-pitch-asian="variable" style:font-name-complex="F2"
580
+ style:font-family-generic-complex="system" style:font-pitch-complex="variable">
581
+ <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
582
+ <loext:transformation loext:type="tint" loext:value="3490" />
583
+ </loext:char-complex-color>
584
+ </style:text-properties>
585
+ </style:style>
586
+ <style:style style:name="Heading_20_8" style:display-name="Heading 8"
587
+ style:family="paragraph" style:parent-style-name="Standard"
588
+ style:next-style-name="Standard" loext:linked-style-name="Heading_20_8_20_Char"
589
+ style:default-outline-level="8" style:list-style-name="" style:class="text">
590
+ <style:paragraph-properties fo:margin-top="0.0311in" fo:margin-bottom="0in"
591
+ style:contextual-spacing="false" fo:keep-together="always"
592
+ fo:keep-with-next="always" />
593
+ <style:text-properties fo:color="#272727" loext:opacity="100%" fo:font-style="italic"
594
+ style:font-name-asian="F2" style:font-family-generic-asian="system"
595
+ style:font-pitch-asian="variable" style:font-style-asian="italic"
596
+ style:font-name-complex="F2" style:font-family-generic-complex="system"
597
+ style:font-pitch-complex="variable" style:font-style-complex="italic">
598
+ <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
599
+ <loext:transformation loext:type="tint" loext:value="1529" />
600
+ </loext:char-complex-color>
601
+ </style:text-properties>
602
+ </style:style>
603
+ <style:style style:name="Heading_20_9" style:display-name="Heading 9"
604
+ style:family="paragraph" style:parent-style-name="Standard"
605
+ style:next-style-name="Standard" loext:linked-style-name="Heading_20_9_20_Char"
606
+ style:default-outline-level="9" style:list-style-name="" style:class="text">
607
+ <style:paragraph-properties fo:margin-top="0.0311in" fo:margin-bottom="0in"
608
+ style:contextual-spacing="false" fo:keep-together="always"
609
+ fo:keep-with-next="always" />
610
+ <style:text-properties fo:color="#272727" loext:opacity="100%"
611
+ style:font-name-asian="F2" style:font-family-generic-asian="system"
612
+ style:font-pitch-asian="variable" style:font-name-complex="F2"
613
+ style:font-family-generic-complex="system" style:font-pitch-complex="variable">
614
+ <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
615
+ <loext:transformation loext:type="tint" loext:value="1529" />
616
+ </loext:char-complex-color>
617
+ </style:text-properties>
618
+ </style:style>
619
+ <style:style style:name="Title" style:family="paragraph" style:parent-style-name="Standard"
620
+ style:next-style-name="Standard" loext:linked-style-name="Title_20_Char"
621
+ style:class="chapter">
622
+ <style:paragraph-properties fo:margin-top="0.0311in" fo:margin-bottom="0.0555in"
623
+ style:contextual-spacing="true" fo:line-height="100%" />
624
+ <style:text-properties
625
+ fo:font-size="28pt" fo:letter-spacing="-0.0071in" style:letter-kerning="true"
626
+ style:font-name-asian="F2" style:font-family-generic-asian="system"
627
+ style:font-pitch-asian="variable" style:font-size-asian="28pt"
628
+ style:font-name-complex="F2" style:font-family-generic-complex="system"
629
+ style:font-pitch-complex="variable" style:font-size-complex="28pt" />
630
+ </style:style>
631
+ <style:style style:name="Subtitle" style:family="paragraph"
632
+ style:parent-style-name="Standard" style:next-style-name="Standard"
633
+ loext:linked-style-name="Subtitle_20_Char" style:class="chapter">
634
+ <style:text-properties fo:color="#595959" loext:opacity="100%" fo:font-size="14pt"
635
+ fo:letter-spacing="0.0102in" style:font-name-asian="F2"
636
+ style:font-family-generic-asian="system" style:font-pitch-asian="variable"
637
+ style:font-size-asian="14pt" style:font-name-complex="F2"
638
+ style:font-family-generic-complex="system" style:font-pitch-complex="variable"
639
+ style:font-size-complex="14pt">
640
+ <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
641
+ <loext:transformation loext:type="tint" loext:value="3490" />
642
+ </loext:char-complex-color>
643
+ </style:text-properties>
644
+ </style:style>
645
+ <style:style style:name="Quote" style:family="paragraph" style:parent-style-name="Standard"
646
+ style:next-style-name="Standard" loext:linked-style-name="Quote_20_Char">
647
+ <style:paragraph-properties fo:margin-top="0.111in" fo:margin-bottom="0.0311in"
648
+ style:contextual-spacing="false" fo:text-align="center"
649
+ style:justify-single-word="false" />
650
+ <style:text-properties fo:color="#404040" loext:opacity="100%" fo:font-style="italic"
651
+ style:font-style-asian="italic" style:font-style-complex="italic">
652
+ <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
653
+ <loext:transformation loext:type="tint" loext:value="2509" />
654
+ </loext:char-complex-color>
655
+ </style:text-properties>
656
+ </style:style>
657
+ <style:style style:name="List_20_Paragraph" style:display-name="List Paragraph"
658
+ style:family="paragraph" style:parent-style-name="Standard">
659
+ <style:paragraph-properties fo:margin-left="0.5in" fo:margin-top="0.0311in"
660
+ fo:margin-bottom="0.0311in" style:contextual-spacing="true" />
661
+ </style:style>
662
+ <style:style style:name="Intense_20_Quote" style:display-name="Intense Quote"
663
+ style:family="paragraph" style:parent-style-name="Standard"
664
+ style:next-style-name="Standard" loext:linked-style-name="Intense_20_Quote_20_Char">
665
+ <style:paragraph-properties fo:margin-left="0.6in" fo:margin-right="0.6in"
666
+ fo:margin-top="0.25in" fo:margin-bottom="0.25in" style:contextual-spacing="false"
667
+ fo:text-align="center" style:justify-single-word="false" fo:padding-left="0in"
668
+ fo:padding-right="0in" fo:padding-top="0.139in" fo:padding-bottom="0.139in"
669
+ fo:border-left="none" fo:border-right="none" fo:border-top="0.51pt solid #0f4761"
670
+ fo:border-bottom="0.51pt solid #0f4761" />
671
+ <style:text-properties fo:color="#0f4761" loext:opacity="100%" fo:font-style="italic"
672
+ style:font-style-asian="italic" style:font-style-complex="italic">
673
+ <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
674
+ <loext:transformation loext:type="shade" loext:value="2509" />
675
+ </loext:char-complex-color>
676
+ </style:text-properties>
677
+ </style:style>
678
+ <style:style style:name="PageBreak" style:family="paragraph"
679
+ style:parent-style-name="Standard">
680
+ <style:paragraph-properties fo:break-before="page" />
681
+ </style:style>
682
+ <style:style style:name="Codeblock" style:family="paragraph"
683
+ style:parent-style-name="Standard">
684
+ <loext:graphic-properties draw:fill="solid" draw:fill-color="#161616" />
685
+ <style:paragraph-properties fo:line-height="100%" fo:background-color="#161616" />
686
+ <style:text-properties fo:color="#e1e4e8" loext:opacity="100%"
687
+ style:font-name="Geist Mono"
688
+ fo:font-family="Geist Mono" />
689
+ </style:style>
690
+ <style:style style:name="Heading_20_1_20_Char" style:display-name="Heading 1 Char"
691
+ style:family="text" style:parent-style-name="Standard"
692
+ loext:linked-style-name="Heading_20_1">
693
+ <style:text-properties fo:font-size="20pt"
694
+ style:font-size-asian="20pt"
695
+ style:font-size-complex="20pt" />
696
+ </style:style>
697
+ <style:style style:name="Heading_20_2_20_Char" style:display-name="Heading 2 Char"
698
+ style:family="text" style:parent-style-name="Standard"
699
+ loext:linked-style-name="Heading_20_2">
700
+ <style:text-properties fo:color="#0f4761" loext:opacity="100%" fo:font-size="16pt"
701
+ style:font-size-asian="16pt" style:font-size-complex="16pt">
702
+ <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
703
+ <loext:transformation loext:type="shade" loext:value="2509" />
704
+ </loext:char-complex-color>
705
+ </style:text-properties>
706
+ </style:style>
707
+ <style:style style:name="Heading_20_3_20_Char" style:display-name="Heading 3 Char"
708
+ style:family="text" style:parent-style-name="Standard"
709
+ loext:linked-style-name="Heading_20_3">
710
+ <style:text-properties fo:color="#0f4761" loext:opacity="100%" fo:font-size="14pt"
711
+ style:font-name-asian="F2" style:font-family-generic-asian="system"
712
+ style:font-pitch-asian="variable" style:font-size-asian="14pt"
713
+ style:font-name-complex="F2" style:font-family-generic-complex="system"
714
+ style:font-pitch-complex="variable" style:font-size-complex="14pt">
715
+ <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
716
+ <loext:transformation loext:type="shade" loext:value="2509" />
717
+ </loext:char-complex-color>
718
+ </style:text-properties>
719
+ </style:style>
720
+ <style:style style:name="Heading_20_4_20_Char" style:display-name="Heading 4 Char"
721
+ style:family="text" style:parent-style-name="Standard"
722
+ loext:linked-style-name="Heading_20_4">
723
+ <style:text-properties fo:color="#0f4761" loext:opacity="100%" fo:font-style="italic"
724
+ style:font-name-asian="F2" style:font-family-generic-asian="system"
725
+ style:font-pitch-asian="variable" style:font-style-asian="italic"
726
+ style:font-name-complex="F2" style:font-family-generic-complex="system"
727
+ style:font-pitch-complex="variable" style:font-style-complex="italic">
728
+ <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
729
+ <loext:transformation loext:type="shade" loext:value="2509" />
730
+ </loext:char-complex-color>
731
+ </style:text-properties>
732
+ </style:style>
733
+ <style:style style:name="Heading_20_5_20_Char" style:display-name="Heading 5 Char"
734
+ style:family="text" style:parent-style-name="Standard"
735
+ loext:linked-style-name="Heading_20_5">
736
+ <style:text-properties fo:color="#0f4761" loext:opacity="100%"
737
+ style:font-name-asian="F2" style:font-family-generic-asian="system"
738
+ style:font-pitch-asian="variable" style:font-name-complex="F2"
739
+ style:font-family-generic-complex="system" style:font-pitch-complex="variable">
740
+ <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
741
+ <loext:transformation loext:type="shade" loext:value="2509" />
742
+ </loext:char-complex-color>
743
+ </style:text-properties>
744
+ </style:style>
745
+ <style:style style:name="Heading_20_6_20_Char" style:display-name="Heading 6 Char"
746
+ style:family="text" style:parent-style-name="Standard"
747
+ loext:linked-style-name="Heading_20_6">
748
+ <style:text-properties fo:color="#595959" loext:opacity="100%" fo:font-style="italic"
749
+ style:font-name-asian="F2" style:font-family-generic-asian="system"
750
+ style:font-pitch-asian="variable" style:font-style-asian="italic"
751
+ style:font-name-complex="F2" style:font-family-generic-complex="system"
752
+ style:font-pitch-complex="variable" style:font-style-complex="italic">
753
+ <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
754
+ <loext:transformation loext:type="tint" loext:value="3490" />
755
+ </loext:char-complex-color>
756
+ </style:text-properties>
757
+ </style:style>
758
+ <style:style style:name="Heading_20_7_20_Char" style:display-name="Heading 7 Char"
759
+ style:family="text" style:parent-style-name="Standard"
760
+ loext:linked-style-name="Heading_20_7">
761
+ <style:text-properties fo:color="#595959" loext:opacity="100%"
762
+ style:font-name-asian="F2" style:font-family-generic-asian="system"
763
+ style:font-pitch-asian="variable" style:font-name-complex="F2"
764
+ style:font-family-generic-complex="system" style:font-pitch-complex="variable">
765
+ <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
766
+ <loext:transformation loext:type="tint" loext:value="3490" />
767
+ </loext:char-complex-color>
768
+ </style:text-properties>
769
+ </style:style>
770
+ <style:style style:name="Heading_20_8_20_Char" style:display-name="Heading 8 Char"
771
+ style:family="text" style:parent-style-name="Standard"
772
+ loext:linked-style-name="Heading_20_8">
773
+ <style:text-properties fo:color="#272727" loext:opacity="100%" fo:font-style="italic"
774
+ style:font-name-asian="F2" style:font-family-generic-asian="system"
775
+ style:font-pitch-asian="variable" style:font-style-asian="italic"
776
+ style:font-name-complex="F2" style:font-family-generic-complex="system"
777
+ style:font-pitch-complex="variable" style:font-style-complex="italic">
778
+ <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
779
+ <loext:transformation loext:type="tint" loext:value="1529" />
780
+ </loext:char-complex-color>
781
+ </style:text-properties>
782
+ </style:style>
783
+ <style:style style:name="Heading_20_9_20_Char" style:display-name="Heading 9 Char"
784
+ style:family="text" style:parent-style-name="Standard"
785
+ loext:linked-style-name="Heading_20_9">
786
+ <style:text-properties fo:color="#272727" loext:opacity="100%"
787
+ style:font-name-asian="F2" style:font-family-generic-asian="system"
788
+ style:font-pitch-asian="variable" style:font-name-complex="F2"
789
+ style:font-family-generic-complex="system" style:font-pitch-complex="variable">
790
+ <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
791
+ <loext:transformation loext:type="tint" loext:value="1529" />
792
+ </loext:char-complex-color>
793
+ </style:text-properties>
794
+ </style:style>
795
+ <style:style style:name="Title_20_Char" style:display-name="Title Char" style:family="text"
796
+ style:parent-style-name="Standard" loext:linked-style-name="Title">
797
+ <style:text-properties style:font-name="Inter 18pt" fo:font-size="28pt"
798
+ fo:letter-spacing="-0.0071in"
799
+ style:letter-kerning="true"
800
+ style:font-size-asian="28pt"
801
+ style:font-size-complex="28pt" />
802
+ </style:style>
803
+ <style:style style:name="Subtitle_20_Char" style:display-name="Subtitle Char"
804
+ style:family="text" style:parent-style-name="Standard"
805
+ loext:linked-style-name="Subtitle">
806
+ <style:text-properties fo:color="#595959" loext:opacity="100%" fo:font-size="14pt"
807
+ fo:letter-spacing="0.0102in" style:font-name-asian="F2"
808
+ style:font-family-generic-asian="system" style:font-pitch-asian="variable"
809
+ style:font-size-asian="14pt" style:font-name-complex="F2"
810
+ style:font-family-generic-complex="system" style:font-pitch-complex="variable"
811
+ style:font-size-complex="14pt">
812
+ <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
813
+ <loext:transformation loext:type="tint" loext:value="3490" />
814
+ </loext:char-complex-color>
815
+ </style:text-properties>
816
+ </style:style>
817
+ <style:style style:name="Quote_20_Char" style:display-name="Quote Char" style:family="text"
818
+ style:parent-style-name="Standard" loext:linked-style-name="Quote">
819
+ <style:text-properties fo:color="#404040" loext:opacity="100%" fo:font-style="italic"
820
+ style:font-style-asian="italic" style:font-style-complex="italic">
821
+ <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
822
+ <loext:transformation loext:type="tint" loext:value="2509" />
823
+ </loext:char-complex-color>
824
+ </style:text-properties>
825
+ </style:style>
826
+ <style:style style:name="Intense_20_Emphasis" style:display-name="Intense Emphasis"
827
+ style:family="text" style:parent-style-name="Standard">
828
+ <style:text-properties fo:color="#0f4761" loext:opacity="100%" fo:font-style="italic"
829
+ style:font-style-asian="italic" style:font-style-complex="italic">
830
+ <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
831
+ <loext:transformation loext:type="shade" loext:value="2509" />
832
+ </loext:char-complex-color>
833
+ </style:text-properties>
834
+ </style:style>
835
+ <style:style style:name="Intense_20_Quote_20_Char" style:display-name="Intense Quote Char"
836
+ style:family="text" style:parent-style-name="Standard"
837
+ loext:linked-style-name="Intense_20_Quote">
838
+ <style:text-properties fo:color="#0f4761" loext:opacity="100%" fo:font-style="italic"
839
+ style:font-style-asian="italic" style:font-style-complex="italic">
840
+ <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
841
+ <loext:transformation loext:type="shade" loext:value="2509" />
842
+ </loext:char-complex-color>
843
+ </style:text-properties>
844
+ </style:style>
845
+ <style:style style:name="Intense_20_Reference" style:display-name="Intense Reference"
846
+ style:family="text" style:parent-style-name="Standard">
847
+ <style:text-properties fo:font-variant="small-caps" fo:color="#0f4761"
848
+ loext:opacity="100%" fo:letter-spacing="0.0035in" fo:font-weight="bold"
849
+ style:font-weight-asian="bold" style:font-weight-complex="bold">
850
+ <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
851
+ <loext:transformation loext:type="shade" loext:value="2509" />
852
+ </loext:char-complex-color>
853
+ </style:text-properties>
854
+ </style:style>
855
+ <style:style style:name="Internet_20_link" style:display-name="Internet link"
856
+ style:family="text" style:parent-style-name="Standard">
857
+ <style:text-properties style:font-name="Inter 18pt" style:font-name-asian="Inter 18pt"
858
+ style:font-name-complex="Times New Roman (Body CS)" fo:color="#0000ef"
859
+ loext:opacity="100%"
860
+ style:text-underline-type="single" style:text-underline-style="solid"
861
+ style:text-underline-width="auto" style:text-underline-mode="continuous"
862
+ style:text-underline-color="font-color" />
863
+ </style:style>
864
+ <style:style style:name="Unresolved_20_Mention" style:display-name="Unresolved Mention"
865
+ style:family="text" style:parent-style-name="Standard">
866
+ <style:text-properties fo:color="#605e5c" loext:opacity="100%"
867
+ fo:background-color="#e1dfdd" />
868
+ </style:style>
869
+ <style:style style:name="ListLabel_20_1" style:display-name="ListLabel 1"
870
+ style:family="text" />
871
+ <style:style style:name="ListLabel_20_2" style:display-name="ListLabel 2"
872
+ style:family="text" />
873
+ <style:style style:name="ListLabel_20_3" style:display-name="ListLabel 3"
874
+ style:family="text" />
875
+ <style:style style:name="ListLabel_20_4" style:display-name="ListLabel 4"
876
+ style:family="text" />
877
+ <style:style style:name="ListLabel_20_5" style:display-name="ListLabel 5"
878
+ style:family="text" />
879
+ <style:style style:name="ListLabel_20_6" style:display-name="ListLabel 6"
880
+ style:family="text" />
881
+ <style:style style:name="ListLabel_20_7" style:display-name="ListLabel 7"
882
+ style:family="text" />
883
+ <style:style style:name="ListLabel_20_8" style:display-name="ListLabel 8"
884
+ style:family="text" />
885
+ <style:style style:name="ListLabel_20_9" style:display-name="ListLabel 9"
886
+ style:family="text" />
887
+ <style:style style:name="ListLabel_20_10" style:display-name="ListLabel 10"
888
+ style:family="text" />
889
+ <style:style style:name="ListLabel_20_11" style:display-name="ListLabel 11"
890
+ style:family="text" />
891
+ <style:style style:name="ListLabel_20_12" style:display-name="ListLabel 12"
892
+ style:family="text" />
893
+ <style:style style:name="ListLabel_20_13" style:display-name="ListLabel 13"
894
+ style:family="text" />
895
+ <style:style style:name="ListLabel_20_14" style:display-name="ListLabel 14"
896
+ style:family="text" />
897
+ <style:style style:name="ListLabel_20_15" style:display-name="ListLabel 15"
898
+ style:family="text" />
899
+ <style:style style:name="ListLabel_20_16" style:display-name="ListLabel 16"
900
+ style:family="text" />
901
+ <style:style style:name="ListLabel_20_17" style:display-name="ListLabel 17"
902
+ style:family="text" />
903
+ <style:style style:name="ListLabel_20_18" style:display-name="ListLabel 18"
904
+ style:family="text" />
905
+ <style:style style:name="ListLabel_20_19" style:display-name="ListLabel 19"
906
+ style:family="text" />
907
+ <style:style style:name="ListLabel_20_20" style:display-name="ListLabel 20"
908
+ style:family="text" />
909
+ <style:style style:name="ListLabel_20_21" style:display-name="ListLabel 21"
910
+ style:family="text" />
911
+ <style:style style:name="ListLabel_20_22" style:display-name="ListLabel 22"
912
+ style:family="text" />
913
+ <style:style style:name="ListLabel_20_23" style:display-name="ListLabel 23"
914
+ style:family="text" />
915
+ <style:style style:name="ListLabel_20_24" style:display-name="ListLabel 24"
916
+ style:family="text" />
917
+ <style:style style:name="ListLabel_20_25" style:display-name="ListLabel 25"
918
+ style:family="text" />
919
+ <style:style style:name="ListLabel_20_26" style:display-name="ListLabel 26"
920
+ style:family="text" />
921
+ <style:style style:name="ListLabel_20_27" style:display-name="ListLabel 27"
922
+ style:family="text" />
923
+ <style:style style:name="ListLabel_20_28" style:display-name="ListLabel 28"
924
+ style:family="text" />
925
+ <style:style style:name="Graphics" style:family="graphic">
926
+ <style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in"
927
+ style:wrap="dynamic" style:number-wrapped-paragraphs="no-limit"
928
+ style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph"
929
+ style:horizontal-pos="center" style:horizontal-rel="paragraph" draw:fill="none" />
930
+ </style:style>
931
+ <style:style style:name="Frame" style:family="graphic">
932
+ <style:graphic-properties fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0in"
933
+ fo:margin-bottom="0in" style:run-through="foreground" style:wrap="dynamic"
934
+ style:number-wrapped-paragraphs="no-limit" style:vertical-pos="from-top"
935
+ style:horizontal-pos="center" style:horizontal-rel="paragraph" fo:padding="0in"
936
+ draw:fill="none"
937
+ draw:stroke="none"
938
+ fo:border="none"
939
+ style:shadow="none" svg:stroke-color="transparent"
940
+ draw:shadow-opacity="100%"
941
+ loext:rel-width-rel="paragraph" />
942
+ </style:style>
943
+ <text:outline-style style:name="Outline">
944
+ <text:outline-level-style text:level="1" style:num-format="">
945
+ <style:list-level-properties
946
+ text:list-level-position-and-space-mode="label-alignment">
947
+ <style:list-level-label-alignment text:label-followed-by="listtab" />
948
+ </style:list-level-properties>
949
+ </text:outline-level-style>
950
+ <text:outline-level-style text:level="2" style:num-format="">
951
+ <style:list-level-properties
952
+ text:list-level-position-and-space-mode="label-alignment">
953
+ <style:list-level-label-alignment text:label-followed-by="listtab" />
954
+ </style:list-level-properties>
955
+ </text:outline-level-style>
956
+ <text:outline-level-style text:level="3" style:num-format="">
957
+ <style:list-level-properties
958
+ text:list-level-position-and-space-mode="label-alignment">
959
+ <style:list-level-label-alignment text:label-followed-by="listtab" />
960
+ </style:list-level-properties>
961
+ </text:outline-level-style>
962
+ <text:outline-level-style text:level="4" style:num-format="">
963
+ <style:list-level-properties
964
+ text:list-level-position-and-space-mode="label-alignment">
965
+ <style:list-level-label-alignment text:label-followed-by="listtab" />
966
+ </style:list-level-properties>
967
+ </text:outline-level-style>
968
+ <text:outline-level-style text:level="5" style:num-format="">
969
+ <style:list-level-properties
970
+ text:list-level-position-and-space-mode="label-alignment">
971
+ <style:list-level-label-alignment text:label-followed-by="listtab" />
972
+ </style:list-level-properties>
973
+ </text:outline-level-style>
974
+ <text:outline-level-style text:level="6" style:num-format="">
975
+ <style:list-level-properties
976
+ text:list-level-position-and-space-mode="label-alignment">
977
+ <style:list-level-label-alignment text:label-followed-by="listtab" />
978
+ </style:list-level-properties>
979
+ </text:outline-level-style>
980
+ <text:outline-level-style text:level="7" style:num-format="">
981
+ <style:list-level-properties
982
+ text:list-level-position-and-space-mode="label-alignment">
983
+ <style:list-level-label-alignment text:label-followed-by="listtab" />
984
+ </style:list-level-properties>
985
+ </text:outline-level-style>
986
+ <text:outline-level-style text:level="8" style:num-format="">
987
+ <style:list-level-properties
988
+ text:list-level-position-and-space-mode="label-alignment">
989
+ <style:list-level-label-alignment text:label-followed-by="listtab" />
990
+ </style:list-level-properties>
991
+ </text:outline-level-style>
992
+ <text:outline-level-style text:level="9" style:num-format="">
993
+ <style:list-level-properties
994
+ text:list-level-position-and-space-mode="label-alignment">
995
+ <style:list-level-label-alignment text:label-followed-by="listtab" />
996
+ </style:list-level-properties>
997
+ </text:outline-level-style>
998
+ <text:outline-level-style text:level="10" style:num-format="">
999
+ <style:list-level-properties
1000
+ text:list-level-position-and-space-mode="label-alignment">
1001
+ <style:list-level-label-alignment text:label-followed-by="listtab" />
1002
+ </style:list-level-properties>
1003
+ </text:outline-level-style>
1004
+ </text:outline-style>
1005
+ <text:list-style style:name="No_20_List" style:display-name="No List">
1006
+ <text:list-level-style-number text:level="1" loext:num-list-format="%1%."
1007
+ style:num-suffix="." style:num-format="1">
1008
+ <style:list-level-properties
1009
+ text:list-level-position-and-space-mode="label-alignment">
1010
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1011
+ text:list-tab-stop-position="0.5in" fo:text-indent="-0.25in"
1012
+ fo:margin-left="0.5in" />
1013
+ </style:list-level-properties>
1014
+ </text:list-level-style-number>
1015
+ <text:list-level-style-number text:level="2" loext:num-list-format="%2%."
1016
+ style:num-suffix="." style:num-format="1">
1017
+ <style:list-level-properties
1018
+ text:list-level-position-and-space-mode="label-alignment">
1019
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1020
+ text:list-tab-stop-position="0.75in" fo:text-indent="-0.25in"
1021
+ fo:margin-left="0.75in" />
1022
+ </style:list-level-properties>
1023
+ </text:list-level-style-number>
1024
+ <text:list-level-style-number text:level="3" loext:num-list-format="%3%."
1025
+ style:num-suffix="." style:num-format="1">
1026
+ <style:list-level-properties
1027
+ text:list-level-position-and-space-mode="label-alignment">
1028
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1029
+ text:list-tab-stop-position="1in" fo:text-indent="-0.25in"
1030
+ fo:margin-left="1in" />
1031
+ </style:list-level-properties>
1032
+ </text:list-level-style-number>
1033
+ <text:list-level-style-number text:level="4" loext:num-list-format="%4%."
1034
+ style:num-suffix="." style:num-format="1">
1035
+ <style:list-level-properties
1036
+ text:list-level-position-and-space-mode="label-alignment">
1037
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1038
+ text:list-tab-stop-position="1.25in" fo:text-indent="-0.25in"
1039
+ fo:margin-left="1.25in" />
1040
+ </style:list-level-properties>
1041
+ </text:list-level-style-number>
1042
+ <text:list-level-style-number text:level="5" loext:num-list-format="%5%."
1043
+ style:num-suffix="." style:num-format="1">
1044
+ <style:list-level-properties
1045
+ text:list-level-position-and-space-mode="label-alignment">
1046
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1047
+ text:list-tab-stop-position="1.5in" fo:text-indent="-0.25in"
1048
+ fo:margin-left="1.5in" />
1049
+ </style:list-level-properties>
1050
+ </text:list-level-style-number>
1051
+ <text:list-level-style-number text:level="6" loext:num-list-format="%6%."
1052
+ style:num-suffix="." style:num-format="1">
1053
+ <style:list-level-properties
1054
+ text:list-level-position-and-space-mode="label-alignment">
1055
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1056
+ text:list-tab-stop-position="1.75in" fo:text-indent="-0.25in"
1057
+ fo:margin-left="1.75in" />
1058
+ </style:list-level-properties>
1059
+ </text:list-level-style-number>
1060
+ <text:list-level-style-number text:level="7" loext:num-list-format="%7%."
1061
+ style:num-suffix="." style:num-format="1">
1062
+ <style:list-level-properties
1063
+ text:list-level-position-and-space-mode="label-alignment">
1064
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1065
+ text:list-tab-stop-position="2in" fo:text-indent="-0.25in"
1066
+ fo:margin-left="2in" />
1067
+ </style:list-level-properties>
1068
+ </text:list-level-style-number>
1069
+ <text:list-level-style-number text:level="8" loext:num-list-format="%8%."
1070
+ style:num-suffix="." style:num-format="1">
1071
+ <style:list-level-properties
1072
+ text:list-level-position-and-space-mode="label-alignment">
1073
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1074
+ text:list-tab-stop-position="2.25in" fo:text-indent="-0.25in"
1075
+ fo:margin-left="2.25in" />
1076
+ </style:list-level-properties>
1077
+ </text:list-level-style-number>
1078
+ <text:list-level-style-number text:level="9" loext:num-list-format="%9%."
1079
+ style:num-suffix="." style:num-format="1">
1080
+ <style:list-level-properties
1081
+ text:list-level-position-and-space-mode="label-alignment">
1082
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1083
+ text:list-tab-stop-position="2.5in" fo:text-indent="-0.25in"
1084
+ fo:margin-left="2.5in" />
1085
+ </style:list-level-properties>
1086
+ </text:list-level-style-number>
1087
+ <text:list-level-style-number text:level="10" loext:num-list-format="%10%."
1088
+ style:num-suffix="." style:num-format="1">
1089
+ <style:list-level-properties
1090
+ text:list-level-position-and-space-mode="label-alignment">
1091
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1092
+ text:list-tab-stop-position="2.75in" fo:text-indent="-0.25in"
1093
+ fo:margin-left="2.75in" />
1094
+ </style:list-level-properties>
1095
+ </text:list-level-style-number>
1096
+ </text:list-style>
1097
+ <text:list-style style:name="WWNum1">
1098
+ <text:list-level-style-bullet text:level="1" text:style-name="ListLabel_20_1"
1099
+ loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1100
+ <style:list-level-properties
1101
+ text:list-level-position-and-space-mode="label-alignment">
1102
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1103
+ fo:text-indent="-0.25in" fo:margin-left="0.5in" />
1104
+ </style:list-level-properties>
1105
+ </text:list-level-style-bullet>
1106
+ <text:list-level-style-bullet text:level="2" text:style-name="ListLabel_20_2"
1107
+ loext:num-list-format="◦" style:num-suffix="◦" text:bullet-char="◦">
1108
+ <style:list-level-properties
1109
+ text:list-level-position-and-space-mode="label-alignment">
1110
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1111
+ fo:text-indent="-0.25in" fo:margin-left="1in" />
1112
+ </style:list-level-properties>
1113
+ </text:list-level-style-bullet>
1114
+ <text:list-level-style-bullet text:level="3" text:style-name="ListLabel_20_3"
1115
+ loext:num-list-format="▪" style:num-suffix="▪" text:bullet-char="▪">
1116
+ <style:list-level-properties
1117
+ text:list-level-position-and-space-mode="label-alignment">
1118
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1119
+ fo:text-indent="-0.25in" fo:margin-left="1.5in" />
1120
+ </style:list-level-properties>
1121
+ </text:list-level-style-bullet>
1122
+ <text:list-level-style-bullet text:level="4" text:style-name="ListLabel_20_4"
1123
+ loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1124
+ <style:list-level-properties
1125
+ text:list-level-position-and-space-mode="label-alignment">
1126
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1127
+ fo:text-indent="-0.25in" fo:margin-left="2in" />
1128
+ </style:list-level-properties>
1129
+ </text:list-level-style-bullet>
1130
+ <text:list-level-style-bullet text:level="5" text:style-name="ListLabel_20_5"
1131
+ loext:num-list-format="◦" style:num-suffix="◦" text:bullet-char="◦">
1132
+ <style:list-level-properties
1133
+ text:list-level-position-and-space-mode="label-alignment">
1134
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1135
+ fo:text-indent="-0.25in" fo:margin-left="2.5in" />
1136
+ </style:list-level-properties>
1137
+ </text:list-level-style-bullet>
1138
+ <text:list-level-style-bullet text:level="6" text:style-name="ListLabel_20_6"
1139
+ loext:num-list-format="▪" style:num-suffix="▪" text:bullet-char="▪">
1140
+ <style:list-level-properties
1141
+ text:list-level-position-and-space-mode="label-alignment">
1142
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1143
+ fo:text-indent="-0.25in" fo:margin-left="3in" />
1144
+ </style:list-level-properties>
1145
+ </text:list-level-style-bullet>
1146
+ <text:list-level-style-bullet text:level="7" text:style-name="ListLabel_20_7"
1147
+ loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1148
+ <style:list-level-properties
1149
+ text:list-level-position-and-space-mode="label-alignment">
1150
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1151
+ fo:text-indent="-0.25in" fo:margin-left="3.5in" />
1152
+ </style:list-level-properties>
1153
+ </text:list-level-style-bullet>
1154
+ <text:list-level-style-bullet text:level="8" text:style-name="ListLabel_20_8"
1155
+ loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1156
+ <style:list-level-properties
1157
+ text:list-level-position-and-space-mode="label-alignment">
1158
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1159
+ fo:text-indent="-0.25in" fo:margin-left="4in" />
1160
+ </style:list-level-properties>
1161
+ </text:list-level-style-bullet>
1162
+ <text:list-level-style-bullet text:level="9" text:style-name="ListLabel_20_9"
1163
+ loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1164
+ <style:list-level-properties
1165
+ text:list-level-position-and-space-mode="label-alignment">
1166
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1167
+ fo:text-indent="-0.25in" fo:margin-left="4.5in" />
1168
+ </style:list-level-properties>
1169
+ </text:list-level-style-bullet>
1170
+ <text:list-level-style-number text:level="10" loext:num-list-format="%10%."
1171
+ style:num-suffix="." style:num-format="1">
1172
+ <style:list-level-properties
1173
+ text:list-level-position-and-space-mode="label-alignment">
1174
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1175
+ text:list-tab-stop-position="2.75in" fo:text-indent="-0.25in"
1176
+ fo:margin-left="2.75in" />
1177
+ </style:list-level-properties>
1178
+ </text:list-level-style-number>
1179
+ </text:list-style>
1180
+ <text:list-style style:name="WWNum2">
1181
+ <text:list-level-style-bullet text:level="1" text:style-name="ListLabel_20_10"
1182
+ loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1183
+ <style:list-level-properties
1184
+ text:list-level-position-and-space-mode="label-alignment">
1185
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1186
+ fo:text-indent="-0.25in" fo:margin-left="0.25in" />
1187
+ </style:list-level-properties>
1188
+ </text:list-level-style-bullet>
1189
+ <text:list-level-style-bullet text:level="2" text:style-name="ListLabel_20_11"
1190
+ loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1191
+ <style:list-level-properties
1192
+ text:list-level-position-and-space-mode="label-alignment">
1193
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1194
+ fo:text-indent="-0.25in" fo:margin-left="0.5in" />
1195
+ </style:list-level-properties>
1196
+ </text:list-level-style-bullet>
1197
+ <text:list-level-style-bullet text:level="3" text:style-name="ListLabel_20_12"
1198
+ loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1199
+ <style:list-level-properties
1200
+ text:list-level-position-and-space-mode="label-alignment">
1201
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1202
+ fo:text-indent="-0.25in" fo:margin-left="0.75in" />
1203
+ </style:list-level-properties>
1204
+ </text:list-level-style-bullet>
1205
+ <text:list-level-style-bullet text:level="4" text:style-name="ListLabel_20_13"
1206
+ loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1207
+ <style:list-level-properties
1208
+ text:list-level-position-and-space-mode="label-alignment">
1209
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1210
+ fo:text-indent="-0.25in" fo:margin-left="1in" />
1211
+ </style:list-level-properties>
1212
+ </text:list-level-style-bullet>
1213
+ <text:list-level-style-bullet text:level="5" text:style-name="ListLabel_20_14"
1214
+ loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1215
+ <style:list-level-properties
1216
+ text:list-level-position-and-space-mode="label-alignment">
1217
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1218
+ fo:text-indent="-0.25in" fo:margin-left="1.25in" />
1219
+ </style:list-level-properties>
1220
+ </text:list-level-style-bullet>
1221
+ <text:list-level-style-bullet text:level="6" text:style-name="ListLabel_20_15"
1222
+ loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1223
+ <style:list-level-properties
1224
+ text:list-level-position-and-space-mode="label-alignment">
1225
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1226
+ fo:text-indent="-0.25in" fo:margin-left="1.5in" />
1227
+ </style:list-level-properties>
1228
+ </text:list-level-style-bullet>
1229
+ <text:list-level-style-bullet text:level="7" text:style-name="ListLabel_20_16"
1230
+ loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1231
+ <style:list-level-properties
1232
+ text:list-level-position-and-space-mode="label-alignment">
1233
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1234
+ fo:text-indent="-0.25in" fo:margin-left="1.75in" />
1235
+ </style:list-level-properties>
1236
+ </text:list-level-style-bullet>
1237
+ <text:list-level-style-bullet text:level="8" text:style-name="ListLabel_20_17"
1238
+ loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1239
+ <style:list-level-properties
1240
+ text:list-level-position-and-space-mode="label-alignment">
1241
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1242
+ fo:text-indent="-0.25in" fo:margin-left="2in" />
1243
+ </style:list-level-properties>
1244
+ </text:list-level-style-bullet>
1245
+ <text:list-level-style-bullet text:level="9" text:style-name="ListLabel_20_18"
1246
+ loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1247
+ <style:list-level-properties
1248
+ text:list-level-position-and-space-mode="label-alignment">
1249
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1250
+ fo:text-indent="-0.25in" fo:margin-left="2.25in" />
1251
+ </style:list-level-properties>
1252
+ </text:list-level-style-bullet>
1253
+ <text:list-level-style-number text:level="10" loext:num-list-format="%10%."
1254
+ style:num-suffix="." style:num-format="1">
1255
+ <style:list-level-properties
1256
+ text:list-level-position-and-space-mode="label-alignment">
1257
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1258
+ text:list-tab-stop-position="2.75in" fo:text-indent="-0.25in"
1259
+ fo:margin-left="2.75in" />
1260
+ </style:list-level-properties>
1261
+ </text:list-level-style-number>
1262
+ </text:list-style>
1263
+ <text:list-style style:name="WWNum3">
1264
+ <text:list-level-style-number text:level="1" text:style-name="ListLabel_20_19"
1265
+ loext:num-list-format="%1%." style:num-suffix="." style:num-format="1">
1266
+ <style:list-level-properties
1267
+ text:list-level-position-and-space-mode="label-alignment">
1268
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1269
+ fo:text-indent="-0.25in" fo:margin-left="0.25in" />
1270
+ </style:list-level-properties>
1271
+ </text:list-level-style-number>
1272
+ <text:list-level-style-number text:level="2" text:style-name="ListLabel_20_20"
1273
+ loext:num-list-format="%2%." style:num-suffix="." style:num-format="1">
1274
+ <style:list-level-properties
1275
+ text:list-level-position-and-space-mode="label-alignment">
1276
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1277
+ fo:text-indent="-0.25in" fo:margin-left="0.5in" />
1278
+ </style:list-level-properties>
1279
+ </text:list-level-style-number>
1280
+ <text:list-level-style-number text:level="3" text:style-name="ListLabel_20_21"
1281
+ loext:num-list-format="%3%." style:num-suffix="." style:num-format="1">
1282
+ <style:list-level-properties
1283
+ text:list-level-position-and-space-mode="label-alignment">
1284
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1285
+ fo:text-indent="-0.25in" fo:margin-left="0.75in" />
1286
+ </style:list-level-properties>
1287
+ </text:list-level-style-number>
1288
+ <text:list-level-style-number text:level="4" text:style-name="ListLabel_20_22"
1289
+ loext:num-list-format="%4%." style:num-suffix="." style:num-format="1">
1290
+ <style:list-level-properties
1291
+ text:list-level-position-and-space-mode="label-alignment">
1292
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1293
+ fo:text-indent="-0.25in" fo:margin-left="1in" />
1294
+ </style:list-level-properties>
1295
+ </text:list-level-style-number>
1296
+ <text:list-level-style-number text:level="5" text:style-name="ListLabel_20_23"
1297
+ loext:num-list-format="%5%." style:num-suffix="." style:num-format="1">
1298
+ <style:list-level-properties
1299
+ text:list-level-position-and-space-mode="label-alignment">
1300
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1301
+ fo:text-indent="-0.25in" fo:margin-left="1.25in" />
1302
+ </style:list-level-properties>
1303
+ </text:list-level-style-number>
1304
+ <text:list-level-style-number text:level="6" text:style-name="ListLabel_20_24"
1305
+ loext:num-list-format="%6%." style:num-suffix="." style:num-format="1">
1306
+ <style:list-level-properties
1307
+ text:list-level-position-and-space-mode="label-alignment">
1308
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1309
+ fo:text-indent="-0.25in" fo:margin-left="1.5in" />
1310
+ </style:list-level-properties>
1311
+ </text:list-level-style-number>
1312
+ <text:list-level-style-number text:level="7" text:style-name="ListLabel_20_25"
1313
+ loext:num-list-format="%7%." style:num-suffix="." style:num-format="1">
1314
+ <style:list-level-properties
1315
+ text:list-level-position-and-space-mode="label-alignment">
1316
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1317
+ fo:text-indent="-0.25in" fo:margin-left="1.75in" />
1318
+ </style:list-level-properties>
1319
+ </text:list-level-style-number>
1320
+ <text:list-level-style-number text:level="8" text:style-name="ListLabel_20_26"
1321
+ loext:num-list-format="%8%." style:num-suffix="." style:num-format="1">
1322
+ <style:list-level-properties
1323
+ text:list-level-position-and-space-mode="label-alignment">
1324
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1325
+ fo:text-indent="-0.25in" fo:margin-left="2in" />
1326
+ </style:list-level-properties>
1327
+ </text:list-level-style-number>
1328
+ <text:list-level-style-number text:level="9" text:style-name="ListLabel_20_27"
1329
+ loext:num-list-format="%9%." style:num-suffix="." style:num-format="1">
1330
+ <style:list-level-properties
1331
+ text:list-level-position-and-space-mode="label-alignment">
1332
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1333
+ fo:text-indent="-0.25in" fo:margin-left="2.25in" />
1334
+ </style:list-level-properties>
1335
+ </text:list-level-style-number>
1336
+ <text:list-level-style-number text:level="10" loext:num-list-format="%10%."
1337
+ style:num-suffix="." style:num-format="1">
1338
+ <style:list-level-properties
1339
+ text:list-level-position-and-space-mode="label-alignment">
1340
+ <style:list-level-label-alignment text:label-followed-by="listtab"
1341
+ text:list-tab-stop-position="2.75in" fo:text-indent="-0.25in"
1342
+ fo:margin-left="2.75in" />
1343
+ </style:list-level-properties>
1344
+ </text:list-level-style-number>
1345
+ </text:list-style>
1346
+ <text:notes-configuration text:note-class="footnote" style:num-format="1"
1347
+ text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document" />
1348
+ <text:notes-configuration text:note-class="endnote" style:num-format="i"
1349
+ text:start-value="0" />
1350
+ <text:linenumbering-configuration text:number-lines="false" text:offset="0.1965in"
1351
+ style:num-format="1" text:number-position="left" text:increment="5" />
1352
+ <style:default-page-layout>
1353
+ <style:page-layout-properties style:layout-grid-standard-mode="true" />
1354
+ </style:default-page-layout>
1355
+ <loext:theme loext:name="Office">
1356
+ <loext:theme-colors loext:name="LibreOffice">
1357
+ <loext:color loext:name="dark1" loext:color="#000000" />
1358
+ <loext:color loext:name="light1" loext:color="#ffffff" />
1359
+ <loext:color loext:name="dark2" loext:color="#000000" />
1360
+ <loext:color loext:name="light2" loext:color="#ffffff" />
1361
+ <loext:color loext:name="accent1" loext:color="#18a303" />
1362
+ <loext:color loext:name="accent2" loext:color="#0369a3" />
1363
+ <loext:color loext:name="accent3" loext:color="#a33e03" />
1364
+ <loext:color loext:name="accent4" loext:color="#8e03a3" />
1365
+ <loext:color loext:name="accent5" loext:color="#c99c00" />
1366
+ <loext:color loext:name="accent6" loext:color="#c9211e" />
1367
+ <loext:color loext:name="hyperlink" loext:color="#0000ee" />
1368
+ <loext:color loext:name="followed-hyperlink" loext:color="#551a8b" />
1369
+ </loext:theme-colors>
1370
+ </loext:theme>
1371
+ </office:styles>
1372
+ <office:automatic-styles>
1373
+ <style:style style:name="MP1" style:family="paragraph" style:parent-style-name="Header">
1374
+ <style:text-properties officeooo:rsid="0008951b" officeooo:paragraph-rsid="0008951b" />
1375
+ </style:style>
1376
+ <style:style style:name="MP2" style:family="paragraph" style:parent-style-name="Footer">
1377
+ <style:text-properties officeooo:rsid="0008951b" officeooo:paragraph-rsid="0008951b" />
1378
+ </style:style>
1379
+ <style:page-layout style:name="Mpm1">
1380
+ <style:page-layout-properties fo:page-width="8.2681in" fo:page-height="11.6929in"
1381
+ style:num-format="1" style:print-orientation="portrait" fo:margin-top="1in"
1382
+ fo:margin-bottom="1in" fo:margin-left="1in" fo:margin-right="1in"
1383
+ style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0"
1384
+ style:layout-grid-lines="38" style:layout-grid-base-height="0.25in"
1385
+ style:layout-grid-ruby-height="0in" style:layout-grid-mode="none"
1386
+ style:layout-grid-ruby-below="false" style:layout-grid-print="false"
1387
+ style:layout-grid-display="false" style:layout-grid-base-width="0.1665in"
1388
+ style:layout-grid-snap-to="true" style:footnote-max-height="0in"
1389
+ loext:margin-gutter="0in">
1390
+ <style:footnote-sep style:width="0.0071in" style:distance-before-sep="0.0398in"
1391
+ style:distance-after-sep="0.0398in" style:line-style="solid"
1392
+ style:adjustment="left" style:rel-width="25%" style:color="#000000" />
1393
+ </style:page-layout-properties>
1394
+ <style:header-style>
1395
+ <style:header-footer-properties fo:min-height="0in" fo:margin-bottom="0.1965in"
1396
+ fo:background-color="transparent" />
1397
+ </style:header-style>
1398
+ <style:footer-style>
1399
+ <style:header-footer-properties fo:min-height="0in" fo:margin-top="0.1965in"
1400
+ fo:background-color="transparent" />
1401
+ </style:footer-style>
1402
+ </style:page-layout>
1403
+ <style:style style:name="Mdp1" style:family="drawing-page">
1404
+ <style:drawing-page-properties draw:background-size="full" />
1405
+ </style:style>
1406
+ </office:automatic-styles>
1407
+ <office:master-styles>
1408
+ <style:master-page style:name="Standard" style:page-layout-name="Mpm1"
1409
+ draw:style-name="Mdp1" />
1410
+ </office:master-styles>
1411
+ </office:document-styles>`;
1412
+ class Y extends M {
1413
+ constructor(l, s, a) {
1414
+ const o = {
1415
+ colors: B
1416
+ };
1417
+ super(l, s, { ...o, ...a });
1418
+ // "Styles" to be added to the AutomaticStyles section of the ODT file
1419
+ // Keyed by the style name
1420
+ g(this, "automaticStyles", /* @__PURE__ */ new Map());
1421
+ // "Pictures" to be added to the Pictures folder in the ODT file
1422
+ // Keyed by the original image URL
1423
+ g(this, "pictures", /* @__PURE__ */ new Map());
1424
+ g(this, "styleCounter", 0);
1425
+ g(this, "options");
1426
+ this.schema = l, this.options = { ...o, ...a };
1427
+ }
1428
+ async loadFonts() {
1429
+ const l = await F(
1430
+ await import("./Inter_18pt-Regular-byxnNS-8.js")
1431
+ ), s = await F(
1432
+ await import("./GeistMono-Regular-D4rKXxwr.js")
1433
+ );
1434
+ return [
1435
+ {
1436
+ name: "Inter 18pt",
1437
+ fileName: "Inter_18pt-Regular.ttf",
1438
+ data: new Blob([l], { type: "font/ttf" })
1439
+ },
1440
+ {
1441
+ name: "Geist Mono",
1442
+ fileName: "GeistMono-Regular.ttf",
1443
+ data: new Blob([s], { type: "font/ttf" })
1444
+ }
1445
+ ];
1446
+ }
1447
+ transformStyledText(l) {
1448
+ const s = this.mapStyles(l.styles), a = Object.assign({}, ...s);
1449
+ if (Object.keys(a).length === 0)
1450
+ return l.text;
1451
+ const o = `BN_T${++this.styleCounter}`;
1452
+ return this.automaticStyles.set(
1453
+ o,
1454
+ /* @__PURE__ */ n("style:style", { "style:name": o, "style:family": "text", children: /* @__PURE__ */ n("style:text-properties", { ...a }) })
1455
+ ), /* @__PURE__ */ n("text:span", { "text:style-name": o, children: l.text });
1456
+ }
1457
+ async transformBlocks(l, s = 0) {
1458
+ const a = [];
1459
+ let o = 0;
1460
+ for (const y of l) {
1461
+ y.type === "numberedListItem" ? o++ : o = 0;
1462
+ const i = await this.transformBlocks(
1463
+ y.children,
1464
+ s + 1
1465
+ ), p = await this.mapBlock(
1466
+ y,
1467
+ s,
1468
+ o
1469
+ );
1470
+ a.push(p), i.length > 0 && a.push(...i);
1471
+ }
1472
+ return a;
1473
+ }
1474
+ async toODTDocument(l, s) {
1475
+ const a = (r) => {
1476
+ const z = /<([a-zA-Z0-9:]+)\s+?(?:xml)ns(?::[a-zA-Z0-9]+)?=".*"(.*)>/g;
1477
+ let w = "";
1478
+ return typeof r == "string" ? w = r : w = new XMLSerializer().serializeToString(r), w.replace(z, "<$1$2>");
1479
+ }, o = await this.transformBlocks(l), y = Array.from(this.automaticStyles.values()), i = Array.from(this.pictures.values()), p = await this.loadFonts(), m = a((s == null ? void 0 : s.header) || ""), f = a((s == null ? void 0 : s.footer) || ""), b = /* @__PURE__ */ x(
1480
+ "office:document-content",
1481
+ {
1482
+ "xmlns:office": "urn:oasis:names:tc:opendocument:xmlns:office:1.0",
1483
+ "xmlns:text": "urn:oasis:names:tc:opendocument:xmlns:text:1.0",
1484
+ "xmlns:table": "urn:oasis:names:tc:opendocument:xmlns:table:1.0",
1485
+ "xmlns:draw": "urn:oasis:names:tc:opendocument:xmlns:drawing:1.0",
1486
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1487
+ "xmlns:style": "urn:oasis:names:tc:opendocument:xmlns:style:1.0",
1488
+ "xmlns:fo": "urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0",
1489
+ "xmlns:svg": "urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0",
1490
+ "xmlns:loext": "urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0",
1491
+ "office:version": "1.3",
1492
+ children: [
1493
+ /* @__PURE__ */ n("office:font-face-decls", { children: p.map((r) => /* @__PURE__ */ n(
1494
+ "style:font-face",
1495
+ {
1496
+ "style:name": r.name,
1497
+ "svg:font-family": r.name,
1498
+ "style:font-pitch": "variable",
1499
+ children: /* @__PURE__ */ n("svg:font-face-src", { children: /* @__PURE__ */ n(
1500
+ "svg:font-face-uri",
1501
+ {
1502
+ "xlink:href": `Fonts/${r.fileName}`,
1503
+ "xlink:type": "simple",
1504
+ "loext:font-style": "normal",
1505
+ "loext:font-weight": "normal",
1506
+ children: /* @__PURE__ */ n("svg:font-face-format", { "svg:string": "truetype" })
1507
+ }
1508
+ ) })
1509
+ }
1510
+ )) }),
1511
+ /* @__PURE__ */ n("office:automatic-styles", { children: y }),
1512
+ (m || f) && /* @__PURE__ */ n("office:master-styles", { children: /* @__PURE__ */ x(
1513
+ "style:master-page",
1514
+ {
1515
+ "style:name": "Standard",
1516
+ "style:page-layout-name": "Mpm1",
1517
+ "draw:style-name": "Mdp1",
1518
+ children: [
1519
+ m && /* @__PURE__ */ n(
1520
+ "style:header",
1521
+ {
1522
+ dangerouslySetInnerHTML: {
1523
+ __html: m
1524
+ }
1525
+ }
1526
+ ),
1527
+ f && /* @__PURE__ */ n(
1528
+ "style:footer",
1529
+ {
1530
+ dangerouslySetInnerHTML: {
1531
+ __html: f
1532
+ }
1533
+ }
1534
+ )
1535
+ ]
1536
+ }
1537
+ ) }),
1538
+ /* @__PURE__ */ n("office:body", { children: /* @__PURE__ */ n("office:text", { children: o }) })
1539
+ ]
1540
+ }
1541
+ ), d = /* @__PURE__ */ x(
1542
+ "manifest:manifest",
1543
+ {
1544
+ "xmlns:manifest": "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0",
1545
+ "manifest:version": "1.3",
1546
+ children: [
1547
+ /* @__PURE__ */ n(
1548
+ "manifest:file-entry",
1549
+ {
1550
+ "manifest:media-type": "application/vnd.oasis.opendocument.text",
1551
+ "manifest:full-path": "/"
1552
+ }
1553
+ ),
1554
+ /* @__PURE__ */ n(
1555
+ "manifest:file-entry",
1556
+ {
1557
+ "manifest:media-type": "text/xml",
1558
+ "manifest:full-path": "content.xml"
1559
+ }
1560
+ ),
1561
+ /* @__PURE__ */ n(
1562
+ "manifest:file-entry",
1563
+ {
1564
+ "manifest:media-type": "text/xml",
1565
+ "manifest:full-path": "styles.xml"
1566
+ }
1567
+ ),
1568
+ i.map((r) => /* @__PURE__ */ n(
1569
+ "manifest:file-entry",
1570
+ {
1571
+ "manifest:media-type": r.file.type,
1572
+ "manifest:full-path": `Pictures/${r.fileName}`
1573
+ }
1574
+ )),
1575
+ p.map((r) => /* @__PURE__ */ n(
1576
+ "manifest:file-entry",
1577
+ {
1578
+ "manifest:media-type": "application/x-font-ttf",
1579
+ "manifest:full-path": `Fonts/${r.fileName}`
1580
+ }
1581
+ ))
1582
+ ]
1583
+ }
1584
+ ), c = new O(
1585
+ new R("application/vnd.oasis.opendocument.text")
1586
+ );
1587
+ c.add(
1588
+ "mimetype",
1589
+ new v("application/vnd.oasis.opendocument.text"),
1590
+ {
1591
+ compressionMethod: 0,
1592
+ level: 0,
1593
+ dataDescriptor: !1,
1594
+ extendedTimestamp: !1
1595
+ }
1596
+ );
1597
+ const _ = k(b), H = k(d);
1598
+ return c.add("content.xml", new v(_)), c.add("styles.xml", new v(G)), c.add("META-INF/manifest.xml", new v(H)), p.forEach((r) => {
1599
+ c.add(`Fonts/${r.fileName}`, new S(r.data));
1600
+ }), i.forEach((r) => {
1601
+ c.add(
1602
+ `Pictures/${r.fileName}`,
1603
+ new S(r.file)
1604
+ );
1605
+ }), c.close();
1606
+ }
1607
+ registerStyle(l) {
1608
+ const s = `BN_S${++this.styleCounter}`;
1609
+ return this.automaticStyles.set(s, l(s)), s;
1610
+ }
1611
+ async registerPicture(l) {
1612
+ const s = {
1613
+ "image/apng": "apng",
1614
+ "image/avif": "avif",
1615
+ "image/bmp": "bmp",
1616
+ "image/gif": "gif",
1617
+ "image/vnd.microsoft.icon": "ico",
1618
+ "image/jpeg": "jpg",
1619
+ "image/png": "png",
1620
+ "image/svg+xml": "svg",
1621
+ "image/tiff": "tiff",
1622
+ "image/webp": "webp"
1623
+ };
1624
+ if (this.pictures.has(l)) {
1625
+ const m = this.pictures.get(l);
1626
+ return {
1627
+ path: `Pictures/${m.fileName}`,
1628
+ mimeType: m.file.type,
1629
+ height: m.height,
1630
+ width: m.width
1631
+ };
1632
+ }
1633
+ const a = await this.resolveFile(l), o = s[a.type] || "png", y = `picture-${this.pictures.size}.${o}`, { width: i, height: p } = await j(a);
1634
+ return this.pictures.set(l, {
1635
+ file: a,
1636
+ fileName: y,
1637
+ height: p,
1638
+ width: i
1639
+ }), { path: `Pictures/${y}`, mimeType: a.type, height: p, width: i };
1640
+ }
1641
+ }
1642
+ export {
1643
+ Y as ODTExporter,
1644
+ K as odtDefaultSchemaMappings
1645
+ };
1646
+ //# sourceMappingURL=blocknote-xl-odt-exporter.js.map