metanorma-document 0.3.0 → 0.5.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.
- checksums.yaml +4 -4
- data/BUGS.sts/08-list-items-duplicate-bullets.md +45 -0
- data/CLAUDE.md +3 -2
- data/Rakefile +30 -5
- data/data/stylesheets/components/header.css +3 -5
- data/data/stylesheets/components/lists.css +14 -0
- data/frontend/dist/app.css +1 -0
- data/frontend/dist/app.iife.js +24 -0
- data/frontend/package-lock.json +7 -505
- data/frontend/tailwind.config.js +5 -0
- data/lib/metanorma/{oiml_document → csa_document}/root.rb +2 -2
- data/lib/metanorma/csa_document.rb +9 -0
- data/lib/metanorma/document/cli.rb +52 -0
- data/lib/metanorma/document/components/ancillary_blocks/sourcecode_body.rb +14 -0
- data/lib/metanorma/document/components/inline/comma_element.rb +3 -0
- data/lib/metanorma/document/components/inline/enum_comma_element.rb +3 -0
- data/lib/metanorma/document/components/inline/eref_element.rb +4 -1
- data/lib/metanorma/document/components/inline/fmt_termsource_element.rb +4 -2
- data/lib/metanorma/document/components/inline/math_element.rb +13 -7
- data/lib/metanorma/document/components/inline/vocabulary.rb +4 -0
- data/lib/metanorma/document/components/multi_paragraph/admonition_block.rb +6 -1
- data/lib/metanorma/document/components/paragraphs/paragraph_block.rb +3 -0
- data/lib/metanorma/document/components/reference_elements/callout.rb +3 -2
- data/lib/metanorma/document/components/tables/table_cell.rb +3 -0
- data/lib/metanorma/document/elements/input.rb +44 -0
- data/lib/metanorma/document/elements.rb +1 -0
- data/lib/metanorma/document/relaton/address.rb +5 -0
- data/lib/metanorma/document/relaton/affiliation.rb +3 -0
- data/lib/metanorma/document/relaton/bib_item_size.rb +8 -9
- data/lib/metanorma/document/relaton/bib_item_type.rb +3 -0
- data/lib/metanorma/document/relaton/bibliographic_date.rb +5 -0
- data/lib/metanorma/document/relaton/contact_method.rb +5 -0
- data/lib/metanorma/document/relaton/contribution_info.rb +6 -2
- data/lib/metanorma/document/relaton/contributor.rb +4 -0
- data/lib/metanorma/document/relaton/contributor_role.rb +3 -0
- data/lib/metanorma/document/relaton/copyright_association.rb +3 -0
- data/lib/metanorma/document/relaton/copyright_owner.rb +3 -0
- data/lib/metanorma/document/relaton/date_time.rb +3 -0
- data/lib/metanorma/document/relaton/document_identifier.rb +4 -0
- data/lib/metanorma/document/relaton/document_relation.rb +8 -0
- data/lib/metanorma/document/relaton/document_status.rb +4 -0
- data/lib/metanorma/document/relaton/formatted_address.rb +4 -0
- data/lib/metanorma/document/relaton/full_name.rb +14 -3
- data/lib/metanorma/document/relaton/keyword_type.rb +3 -0
- data/lib/metanorma/document/relaton/locality_stack.rb +6 -9
- data/lib/metanorma/document/relaton/localized_name.rb +8 -5
- data/lib/metanorma/document/relaton/logo_element.rb +5 -0
- data/lib/metanorma/document/relaton/medium_type.rb +5 -16
- data/lib/metanorma/document/relaton/org_identifier.rb +2 -0
- data/lib/metanorma/document/relaton/org_subdivision.rb +2 -0
- data/lib/metanorma/document/relaton/org_subdivision_identifier.rb +2 -0
- data/lib/metanorma/document/relaton/organization.rb +3 -0
- data/lib/metanorma/document/relaton/person.rb +7 -1
- data/lib/metanorma/document/relaton/person_identifier.rb +3 -0
- data/lib/metanorma/document/relaton/place_type.rb +5 -0
- data/lib/metanorma/document/relaton/region_element.rb +3 -9
- data/lib/metanorma/document/relaton/relaton_collection.rb +2 -0
- data/lib/metanorma/document/relaton/series_type.rb +7 -0
- data/lib/metanorma/document/relaton/typed_note.rb +4 -0
- data/lib/metanorma/document/relaton/typed_title_string.rb +4 -0
- data/lib/metanorma/document/relaton/typed_uri.rb +3 -8
- data/lib/metanorma/document/relaton/validity_type.rb +8 -10
- data/lib/metanorma/document/relaton/variant_full_name.rb +3 -0
- data/lib/metanorma/document/relaton/variant_org_name.rb +3 -0
- data/lib/metanorma/document/relaton/version_info.rb +5 -0
- data/lib/metanorma/document/relaton/vocab_id_type.rb +6 -12
- data/lib/metanorma/document/relaton.rb +0 -14
- data/lib/metanorma/document/version.rb +1 -1
- data/lib/metanorma/document.rb +2 -1
- data/lib/metanorma/html/asset_pipeline.rb +1 -0
- data/lib/metanorma/html/base_renderer.rb +106 -236
- data/lib/metanorma/html/concerns/metadata_extraction.rb +61 -0
- data/lib/metanorma/html/concerns/presentation_validation.rb +61 -0
- data/lib/metanorma/html/concerns/svg_processing.rb +32 -0
- data/lib/metanorma/html/concerns/text_extraction.rb +93 -0
- data/lib/metanorma/html/concerns/toc_registry.rb +47 -0
- data/lib/metanorma/html/csa_renderer.rb +9 -0
- data/lib/metanorma/html/drops/figure_drop.rb +33 -10
- data/lib/metanorma/html/drops/sourcecode_drop.rb +3 -6
- data/lib/metanorma/html/flavor.rb +6 -1
- data/lib/metanorma/html/generator.rb +8 -8
- data/lib/metanorma/html/iso_renderer.rb +0 -142
- data/lib/metanorma/html/renderers/block_renderer.rb +41 -5
- data/lib/metanorma/html/renderers/element_order_traversal.rb +15 -1
- data/lib/metanorma/html/renderers/inline_renderer.rb +16 -76
- data/lib/metanorma/html/standard_renderer.rb +195 -35
- data/lib/metanorma/html/templates/_list_item.html.liquid +1 -1
- data/lib/metanorma/html/theme.rb +38 -11
- data/lib/metanorma/html.rb +1 -52
- data/lib/metanorma/iso_document/sections/iso_preface.rb +27 -13
- data/lib/metanorma/mirror/default_registry.rb +21 -0
- data/lib/metanorma/mirror/handlers/inline/catalog.rb +7 -12
- data/lib/metanorma/mirror/handlers/inline/rich_html_renderer.rb +2 -3
- data/lib/metanorma/mirror/handlers/sourcecode.rb +1 -1
- data/lib/metanorma/mirror/model/guide.rb +3 -2
- data/lib/metanorma/mirror/output/formats/inline_format.rb +64 -3
- data/lib/metanorma/mirror/output/pipeline.rb +1 -0
- data/lib/metanorma/mirror/output.rb +0 -2
- data/lib/metanorma/mirror/rewriter.rb +3 -1
- data/lib/metanorma/registers/setup.rb +6 -2
- data/lib/metanorma/standard_document/annotation_container.rb +2 -0
- data/lib/metanorma/standard_document/elements/input.rb +4 -25
- data/lib/metanorma/standard_document/metadata/metanorma_extension.rb +12 -2
- data/lib/metanorma/standard_document/metadata/presentation_metadata.rb +107 -0
- data/lib/metanorma/standard_document/metadata/semantic_metadata.rb +18 -0
- data/lib/metanorma/standard_document/metadata/unitsml/amount_of_substance.rb +19 -0
- data/lib/metanorma/standard_document/metadata/unitsml/base_quantity.rb +34 -0
- data/lib/metanorma/standard_document/metadata/unitsml/dimension.rb +39 -0
- data/lib/metanorma/standard_document/metadata/unitsml/dimension_set.rb +19 -0
- data/lib/metanorma/standard_document/metadata/unitsml/electric_current.rb +19 -0
- data/lib/metanorma/standard_document/metadata/unitsml/enumerated_root_unit.rb +23 -0
- data/lib/metanorma/standard_document/metadata/unitsml/length.rb +19 -0
- data/lib/metanorma/standard_document/metadata/unitsml/luminous_intensity.rb +19 -0
- data/lib/metanorma/standard_document/metadata/unitsml/mass.rb +19 -0
- data/lib/metanorma/standard_document/metadata/unitsml/namespace.rb +17 -0
- data/lib/metanorma/standard_document/metadata/unitsml/plane_angle.rb +19 -0
- data/lib/metanorma/standard_document/metadata/unitsml/prefix.rb +30 -0
- data/lib/metanorma/standard_document/metadata/unitsml/prefix_name.rb +21 -0
- data/lib/metanorma/standard_document/metadata/unitsml/prefix_set.rb +19 -0
- data/lib/metanorma/standard_document/metadata/unitsml/prefix_symbol.rb +21 -0
- data/lib/metanorma/standard_document/metadata/unitsml/quantity.rb +28 -0
- data/lib/metanorma/standard_document/metadata/unitsml/quantity_name.rb +21 -0
- data/lib/metanorma/standard_document/metadata/unitsml/quantity_set.rb +19 -0
- data/lib/metanorma/standard_document/metadata/unitsml/root_units.rb +19 -0
- data/lib/metanorma/standard_document/metadata/unitsml/thermodynamic_temperature.rb +19 -0
- data/lib/metanorma/standard_document/metadata/unitsml/time.rb +19 -0
- data/lib/metanorma/standard_document/metadata/unitsml/unit.rb +32 -0
- data/lib/metanorma/standard_document/metadata/unitsml/unit_name.rb +21 -0
- data/lib/metanorma/standard_document/metadata/unitsml/unit_set.rb +19 -0
- data/lib/metanorma/standard_document/metadata/unitsml/unit_symbol.rb +36 -0
- data/lib/metanorma/standard_document/metadata/unitsml/unit_system.rb +23 -0
- data/lib/metanorma/standard_document/metadata/unitsml/unitsml_root.rb +28 -0
- data/lib/metanorma/standard_document/metadata/unitsml.rb +39 -0
- data/lib/metanorma/standard_document/metadata.rb +4 -0
- data/lib/metanorma/standard_document/sections/misc_container.rb +8 -6
- data/lib/metanorma/standard_document/sections/sections.rb +7 -0
- data/lib/metanorma/un_document/blocks/un_admonition_block.rb +86 -0
- data/lib/metanorma/un_document/blocks.rb +9 -0
- data/lib/metanorma/un_document/root.rb +8 -0
- data/lib/metanorma/un_document/sections/un_abstract_section.rb +48 -0
- data/lib/metanorma/un_document/sections/un_preface.rb +19 -2
- data/lib/metanorma/un_document/sections.rb +1 -0
- data/lib/metanorma/un_document/un_text_element.rb +116 -0
- data/lib/metanorma/un_document.rb +2 -0
- data/script/benchmark_render.rb +35 -0
- data/tasks/roundtrip_samples.rake +2 -2
- metadata +65 -54
- data/.rubocop_todo.yml +0 -220
- data/TODO.finalize/01-split-multi-class-files.md +0 -8
- data/TODO.finalize/02-remove-data-dist-iso-document-frontend.md +0 -6
- data/TODO.finalize/03-align-frontend-iife-and-gha-build.md +0 -11
- data/TODO.finalize/04-theme-per-flavor-config-driven.md +0 -9
- data/TODO.finalize/05-migrate-all-html-to-liquid.md +0 -16
- data/TODO.finalize/06-integrate-pubid-library.md +0 -16
- data/TODO.finalize/07-replace-relaton-models-with-relaton-bib.md +0 -39
- data/TODO.finalize/08-refactor-renderer-architecture.md +0 -25
- data/TODO.finalize/09-eliminate-code-smells.md +0 -14
- data/TODO.finalize/10-comprehensive-spec-coverage.md +0 -24
- data/TODO.finalize/11-config-driven-flavor-metadata.md +0 -20
- data/TODO.finalize/12-add-frozen-string-literal.md +0 -6
- data/TODO.finalize/13-extract-composition-from-god-class.md +0 -96
- data/TODO.finalize/14-config-driven-section-ordering.md +0 -31
- data/TODO.finalize/15-theme-directories-per-flavor.md +0 -46
- data/TODO.finalize/16-theme-lutaml-model-schema.md +0 -44
- data/data/logos/oiml-logo-full-dark.svg +0 -1
- data/data/logos/oiml-logo-full-light.svg +0 -1
- data/data/logos/oiml-logo-icon-dark.svg +0 -1
- data/data/logos/oiml-logo-icon-light.svg +0 -1
- data/data/logos/oiml-logo.svg +0 -1
- data/data/themes/oiml.yaml +0 -56
- data/docs/html-renderer.adoc +0 -261
- data/lib/data/dist/iso_document/frontend/assets/index-mwzbzmnK.js +0 -22
- data/lib/data/dist/iso_document/frontend/assets/index-pGvKTNid.css +0 -1
- data/lib/data/dist/iso_document/frontend/assets/iso-red.svg +0 -53
- data/lib/data/dist/iso_document/frontend/index.html +0 -13
- data/lib/metanorma/document/relaton/bib_item_size_type.rb +0 -21
- data/lib/metanorma/document/relaton/bibliographic_date_type.rb +0 -22
- data/lib/metanorma/document/relaton/document_relation_type.rb +0 -31
- data/lib/metanorma/document/relaton/iso4217_code.rb +0 -17
- data/lib/metanorma/document/relaton/iso8601_date.rb +0 -17
- data/lib/metanorma/document/relaton/personal_identifier_type.rb +0 -21
- data/lib/metanorma/document/relaton/region_type.rb +0 -20
- data/lib/metanorma/document/relaton/series_type_type.rb +0 -21
- data/lib/metanorma/document/relaton/specific_locality_type.rb +0 -25
- data/lib/metanorma/document/relaton/title_type.rb +0 -21
- data/lib/metanorma/html/oiml_renderer.rb +0 -33
- data/lib/metanorma/mirror/output/html_renderer.rb +0 -95
- data/lib/metanorma/mirror/output/html_renderers/block_renderers.rb +0 -178
- data/lib/metanorma/mirror/output/html_renderers/inline_renderer.rb +0 -61
- data/lib/metanorma/mirror/output/html_renderers/list_renderers.rb +0 -96
- data/lib/metanorma/mirror/output/html_renderers/mark_renderers.rb +0 -41
- data/lib/metanorma/mirror/output/html_renderers/section_renderers.rb +0 -129
- data/lib/metanorma/mirror/output/html_renderers/structural_renderers.rb +0 -80
- data/lib/metanorma/mirror/output/html_renderers/table_renderers.rb +0 -87
- data/lib/metanorma/mirror/output/html_renderers.rb +0 -76
- data/lib/metanorma/oiml_document.rb +0 -9
- data/lib/metanorma/standard_document/annotation.rb +0 -37
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# 16 — Theme as lutaml-model with YAML schema — DONE
|
|
2
|
-
|
|
3
|
-
## What was done
|
|
4
|
-
|
|
5
|
-
Converted `Theme` from a plain Ruby class with `attr_accessor` + `VALID_KEYS` + manual YAML parsing to a proper `Lutaml::Model::Serializable` with typed attributes.
|
|
6
|
-
|
|
7
|
-
### Schema definition
|
|
8
|
-
- 65 typed attributes declared with lutaml-model `attribute` DSL
|
|
9
|
-
- Types: `:string` (colors, fonts, CSS), `:boolean` (preface_wrap), `:hash` (logos)
|
|
10
|
-
- Collection arrays: `:string, collection: true` (publishers, preface_order, clause_order, toc_filter_types)
|
|
11
|
-
- All defaults declared via `default: -> { ... }` procs
|
|
12
|
-
- Nil-by-default attributes (accent_deep, warm, dark_note_bg, etc.) have no default
|
|
13
|
-
|
|
14
|
-
### What was eliminated
|
|
15
|
-
- `VALID_KEYS` constant — no longer needed, attribute declarations ARE the schema
|
|
16
|
-
- `SETTERS` constant — lutaml-model handles key→setter mapping
|
|
17
|
-
- Manual `initialize` with 60+ instance variable assignments — lutaml-model handles initialization
|
|
18
|
-
- `apply_overrides` method — `from_yaml` handles deserialization
|
|
19
|
-
- `require "yaml"` + `YAML.safe_load_file` — `File.read(path)` + `from_yaml` replaces it
|
|
20
|
-
|
|
21
|
-
### What was preserved
|
|
22
|
-
- `theme_dir` as regular `attr_accessor` (not a YAML attribute, set programmatically)
|
|
23
|
-
- `THEMES_DIR`, `TEMPLATES_ROOT` constants
|
|
24
|
-
- All behavior methods: `to_css_root`, `to_css_extras`, `resolve_template`, `resolve_asset`, etc.
|
|
25
|
-
- `load(flavor)`, `from_file`, `from_directory` class methods
|
|
26
|
-
- Full backward compatibility — all 111 theme specs pass unchanged
|
|
27
|
-
|
|
28
|
-
### Schema introspection
|
|
29
|
-
```ruby
|
|
30
|
-
Metanorma::Html::Theme.attributes.size # => 65
|
|
31
|
-
Metanorma::Html::Theme.attributes[:preface_wrap].type # => Lutaml::Model::Type::Boolean
|
|
32
|
-
Metanorma::Html::Theme.attributes[:publishers].collection? # => true
|
|
33
|
-
Metanorma::Html::Theme.attributes[:logos].type # => Lutaml::Model::Type::Hash
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
### Why this matters
|
|
37
|
-
- **Flavor authors** get schema-level documentation — every valid key, its type, and default value is declared in one place
|
|
38
|
-
- **Type safety** — wrong types in YAML are caught at load time by lutaml-model
|
|
39
|
-
- **No silent ignores** — with the old `VALID_KEYS` + `SETTERS` pattern, unknown keys were silently skipped. Now lutaml-model handles key mapping
|
|
40
|
-
- **Round-tripping** — themes can be loaded, modified, and serialized back to YAML via `to_yaml`
|
|
41
|
-
- **Future-proof** — when theme configs move to per-flavor gems, the model stays the same; only the load path changes
|
|
42
|
-
|
|
43
|
-
## Code quality requirements
|
|
44
|
-
Ensure code cleanliness and OOP and MECE and fully model-driven, semantically-driven and open/closed principle, DRY, performance. ultrathink. Always think about what can we improve here in architecture and code? Make sure we have good specs throughout. Never use private send methods (breaks encapsulation), instance_variable_set/get, and never use respond_to? (poor typing).
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-5c01357f-f62a-4354-ab99-a8490b285ec4" xmlns="http://www.w3.org/2000/svg" width="1100" height="400" viewBox="0 0 1100 400"><path d="m225.25,365.25c-91,0-165-74-165-165S134.25,35.25,225.25,35.25s165,74,165,165-74,165-165,165m-83.7-26.9c24.4,14.9,53.1,23.5,83.8,23.5s59.5-8.6,84-23.6c-14.4-16.2-45.6-26.3-82.4-26.6h-1.2c-36.9,0-69.5,10.4-84.2,26.7m-3.5-273.9c-44.7,28.8-74.3,78.9-74.3,135.9s29.9,107.5,74.8,136.2c15.3-17.6,48.4-28.3,87.1-28.3h1.3c38.1.2,70.5,11,85.3,28.1,44.8-28.7,74.6-79,74.6-136.1s-29.5-106.9-74-135.7c-14.6,17.5-47.3,28.5-85.8,28.8-40,.2-73.8-10.8-89-28.9m2.9-1.9c14.5,16.7,47.4,27.4,84.8,27.4h1.2c37.3-.2,68.8-10.6,82.9-27.2-24.6-15.2-53.6-24-84.6-24s-59.7,8.7-84.3,23.8" style="fill:#61b4ff; stroke-width:0px;"/><path d="m77.35,251.85c27.6,0,43.4-25.5,43.4-51,0-23-20.1-46.3-43.4-46.3s-43.5,23.3-43.5,46.3c0,25.5,15.9,51,43.5,51m22.9-35.4c0,5.4-.1,10.7-1.4,15.6-2.5,9.6-8.2,16.3-21.5,16.3s-19-6.7-21.5-16.3c-1.3-4.9-1.5-10.2-1.5-15.6v-30.4c0-5,.8-9.8,2.1-13.9,2.5-8.5,8.5-14.1,20.9-14.1s18,5.6,20.8,14.1c1.4,4.2,2.1,8.9,2.1,13.9,0,0,0,30.4,0,30.4Z" style="fill:#fff; fill-rule:evenodd; stroke-width:0px;"/><polygon points="177.55 160.15 191.35 160.15 191.35 156.65 145.95 156.65 145.95 160.15 159.75 160.15 159.75 246.25 145.95 246.25 145.95 249.75 191.35 249.75 191.35 246.25 177.55 246.25 177.55 160.15" style="fill:#fff; stroke-width:0px;"/><polygon points="309.35 160.15 323.15 160.15 323.15 156.65 287.95 156.65 267.75 220.35 248.15 156.65 212.25 156.65 212.25 160.15 226.05 160.15 226.05 246.25 212.25 246.25 212.25 249.75 244.05 249.75 244.05 246.25 230.45 246.25 230.45 162.45 230.75 162.45 258.55 249.75 263.25 249.75 291.15 162.45 291.55 162.45 291.55 246.25 277.75 246.25 277.75 249.75 323.15 249.75 323.15 246.25 309.35 246.25 309.35 160.15" style="fill:#fff; stroke-width:0px;"/><path d="m420.35,249.75l1.4-31.4h-4.3c-.6,16-6.8,27.9-24.5,27.9h-18.3v-86.2h14.5v-3.5h-46.1v3.5h13.8v86.2h-13.8v3.5h77.3,0Z" style="fill:#fff; stroke-width:0px;"/><path d="m225.95,365.35h-.2v-2h-.2v1.9c-51.3,0-90.7-40.8-105.5-109l3.4-.7c13,59.8,45.2,98,87.5,105.1-25.2-17-34.5-76.5-37.5-104.5l3.4-.4c7,64.8,24.5,104.1,47.1,106l.1-106.3h3.4l-.2,106.4c23.1-1.7,40.8-41.3,47.5-106.6l3.4.4c-5.8,56-19.2,92.8-37.8,105.2,42.4-7.1,74.6-45.5,87.6-105.8l3.4.7c-14.8,68.6-54.2,109.6-105.4,109.6m49.3-212.9c-6.4-68-24.6-110.8-47.9-112.9l-.1,112.7h-3.4l.1-112.8c-23.7,2-42.1,44.9-48.2,112.9l-3.4-.3c5.3-59,19.4-98.7,38.9-111.6-44.2,7.1-77,47.6-89.2,111.5l-3.4-.6c13.8-72.4,53.7-115.5,106.8-115.5h.2v.1c53.3.1,93.3,43.2,107,115.5l-3.4.6c-12.1-63.9-45-104.5-89.5-111.6,19.3,12.9,33.4,52.6,38.9,111.6l-3.4.4h0Z" style="fill:#61b4ff; stroke-width:0px;"/><path d="m484.15,84.85c-2.1-1.2-3.8-2.7-4.9-4.8-1.2-2-1.8-4.3-1.8-6.8s.6-4.8,1.8-6.8c1.2-2,2.8-3.6,4.9-4.8s4.5-1.7,7.1-1.7,4.9.6,7,1.7,3.7,2.7,4.9,4.8c1.2,2,1.8,4.3,1.8,6.8s-.6,4.8-1.8,6.8c-1.2,2-2.8,3.6-4.9,4.8-2.1,1.1-4.4,1.7-7,1.7s-5-.5-7.1-1.7m12.7-2.1c1.7-.9,3-2.2,3.9-3.9.9-1.7,1.4-3.5,1.4-5.6s-.5-3.9-1.4-5.6c-.9-1.7-2.3-3-3.9-3.9-1.7-.9-3.5-1.4-5.6-1.4s-3.9.5-5.6,1.4-3,2.2-4,3.9c-1,1.7-1.4,3.5-1.4,5.6s.5,3.9,1.4,5.6c1,1.7,2.3,3,4,3.9s3.6,1.4,5.6,1.4,3.9-.5,5.6-1.4" style="fill:#fff; stroke-width:0px;"/><path d="m515.95,67.55c1.2-.7,2.8-1,4.6-1v2.6h-.6c-2.1,0-3.7.6-4.9,1.9-1.2,1.3-1.8,3.1-1.8,5.3v10h-2.7v-19.6h2.5v3.9c.7-1.4,1.6-2.4,2.9-3.1" style="fill:#fff; stroke-width:0px;"/><path d="m543.35,66.75v17.2c0,3.3-.8,5.8-2.4,7.4-1.6,1.6-4.1,2.4-7.4,2.4-1.8,0-3.5-.3-5.2-.8-1.6-.5-3-1.3-4-2.2l1.3-2c.9.8,2.1,1.5,3.5,2s2.8.7,4.3.7c2.5,0,4.3-.6,5.5-1.7,1.2-1.2,1.8-3,1.8-5.4v-2.5c-.8,1.2-1.9,2.2-3.2,2.8-1.3.6-2.8,1-4.4,1-1.8,0-3.5-.4-5-1.2-1.5-.8-2.7-1.9-3.6-3.4s-1.3-3.1-1.3-5c0-1.8.4-3.5,1.3-4.9.9-1.4,2-2.6,3.5-3.4s3.2-1.2,5.1-1.2c1.7,0,3.2.3,4.5,1,1.3.7,2.4,1.6,3.3,2.9v-3.8h2.4v.1h0Zm-6.3,15.6c1.1-.6,2-1.5,2.7-2.6.6-1.1,1-2.3,1-3.7s-.3-2.6-1-3.7c-.6-1.1-1.5-1.9-2.7-2.5-1.1-.6-2.4-.9-3.9-.9-1.4,0-2.7.3-3.8.9s-2,1.4-2.7,2.5c-.6,1.1-1,2.3-1,3.7s.3,2.6,1,3.7c.6,1.1,1.5,2,2.7,2.6,1.1.6,2.4.9,3.8.9s2.8-.3,3.9-.9" style="fill:#fff; stroke-width:0px;"/><path d="m563.55,68.45c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.4.8,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1,1.5,0,2.8-.3,3.9-1" style="fill:#fff; stroke-width:0px;"/><path d="m588.75,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9s-1.9,3-1.9,5.2v10.3h-2.7v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.6,0,4.5.7,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m598.15,61.85c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6s-1.1-.2-1.4-.6m0,4.9h2.7v19.7h-2.7v-19.7Z" style="fill:#fff; stroke-width:0px;"/><path d="m608.85,85.85c-1.5-.5-2.6-1-3.4-1.7l1.2-2.1c.8.6,1.9,1.2,3.1,1.6,1.2.4,2.5.6,3.9.6,1.8,0,3.1-.3,4-.8.9-.6,1.3-1.4,1.3-2.4,0-.7-.2-1.3-.7-1.7s-1.1-.7-1.8-.9c-.7-.2-1.7-.4-2.9-.6-1.6-.3-2.9-.6-3.9-.9s-1.8-.8-2.5-1.6c-.7-.7-1-1.8-1-3.1,0-1.6.7-3,2.1-4,1.4-1,3.3-1.6,5.7-1.6,1.3,0,2.5.2,3.8.5,1.3.3,2.3.8,3.1,1.3l-1.2,2.1c-1.6-1.1-3.6-1.7-5.8-1.7-1.7,0-3,.3-3.8.9-.9.6-1.3,1.4-1.3,2.4,0,.7.2,1.3.7,1.8.5.4,1.1.8,1.8,1s1.7.4,3,.7c1.6.3,2.8.6,3.8.9.9.3,1.8.8,2.4,1.5.6.7,1,1.7,1,3,0,1.7-.7,3.1-2.1,4.1-1.4,1-3.4,1.5-6,1.5-1.5-.1-3-.3-4.5-.8" style="fill:#fff; stroke-width:0px;"/><path d="m639.25,68.45c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.5.8,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1s2.9-.3,3.9-1" style="fill:#fff; stroke-width:0px;"/><path d="m658.95,85.15c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3.5-.2,1-.4,1.3-.7l.9,1.9h0Z" style="fill:#fff; stroke-width:0px;"/><path d="m663.75,61.85c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6s-1.1-.2-1.4-.6m0,4.9h2.7v19.7h-2.7v-19.7Z" style="fill:#fff; stroke-width:0px;"/><path d="m676.75,85.25c-1.5-.9-2.7-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.8,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3s-3.6-.4-5.1-1.3m8.9-2c1.1-.6,2-1.5,2.6-2.7.6-1.2.9-2.5.9-4s-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7s-2.4-1-3.8-1-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7s-1,2.5-1,4,.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7s2.4,1,3.8,1,2.7-.4,3.8-1" style="fill:#fff; stroke-width:0px;"/><path d="m713.15,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.6v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.5,0,4.5.7,5.9,2.2" style="fill:#fff; stroke-width:0px;"/><rect x="739.15" y="60.25" width="2.8" height="26.2" style="fill:#fff; stroke-width:0px;"/><path d="m765.75,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9s-1.9,3-1.9,5.2v10.3h-2.7v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.6,0,4.6.7,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m785.55,85.15c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3.5-.2,1-.4,1.3-.7l.9,1.9h0Z" style="fill:#fff; stroke-width:0px;"/><path d="m806.75,77.35h-16.5c.1,2,.9,3.7,2.4,5,1.4,1.3,3.2,1.9,5.4,1.9,1.2,0,2.3-.2,3.4-.7,1-.4,1.9-1.1,2.7-1.9l1.5,1.7c-.9,1-2,1.8-3.3,2.4-1.3.5-2.8.8-4.3.8-2,0-3.8-.4-5.4-1.3-1.6-.9-2.8-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.8-1.5,2-2.7,3.4-3.6,1.5-.8,3.1-1.3,4.9-1.3s3.5.4,4.9,1.3c1.4.8,2.6,2,3.4,3.5.8,1.5,1.2,3.2,1.2,5.2l-.1,1h0Zm-14.2-6.7c-1.3,1.2-2,2.8-2.2,4.7h14c-.2-1.9-.9-3.5-2.2-4.7s-2.9-1.8-4.8-1.8c-2,0-3.6.6-4.8,1.8" style="fill:#fff; stroke-width:0px;"/><path d="m817.55,67.55c1.2-.7,2.8-1,4.6-1v2.6h-.6c-2.1,0-3.7.6-4.9,1.9s-1.8,3.1-1.8,5.3v10h-2.6v-19.6h2.5v3.9c.7-1.4,1.6-2.4,2.8-3.1" style="fill:#fff; stroke-width:0px;"/><path d="m842.85,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9s-1.9,3-1.9,5.2v10.3h-2.7v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.6,0,4.6.7,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m865.05,68.45c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.4.8,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1s2.8-.3,3.9-1" style="fill:#fff; stroke-width:0px;"/><path d="m884.65,85.15c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3.5-.2,1-.4,1.3-.7l.9,1.9h0Z" style="fill:#fff; stroke-width:0px;"/><path d="m889.45,61.85c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6-.5,0-1-.2-1.4-.6m.1,4.9h2.7v19.7h-2.7v-19.7Z" style="fill:#fff; stroke-width:0px;"/><path d="m902.55,85.25c-1.5-.9-2.7-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.8,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3s-3.6-.4-5.1-1.3m8.8-2c1.1-.6,2-1.5,2.6-2.7s.9-2.5.9-4-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7s-2.4-1-3.8-1-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7-.6,1.2-1,2.5-1,4s.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7s2.4,1,3.8,1c1.5,0,2.7-.4,3.8-1" style="fill:#fff; stroke-width:0px;"/><path d="m938.95,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9s-1.9,3-1.9,5.2v10.3h-2.7v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.6,0,4.5.7,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m961.15,68.45c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.4.8,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1s2.8-.3,3.9-1" style="fill:#fff; stroke-width:0px;"/><rect x="970.45" y="58.65" width="2.7" height="27.8" style="fill:#fff; stroke-width:0px;"/><path d="m997.65,77.35h-16.5c.1,2,.9,3.7,2.4,5,1.4,1.3,3.2,1.9,5.4,1.9,1.2,0,2.3-.2,3.4-.7,1-.4,1.9-1.1,2.7-1.9l1.5,1.7c-.9,1-2,1.8-3.3,2.4-1.3.5-2.8.8-4.3.8-2,0-3.8-.4-5.4-1.3-1.6-.9-2.8-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.8-1.5,2-2.7,3.4-3.6,1.5-.8,3.1-1.3,4.9-1.3s3.5.4,4.9,1.3c1.4.8,2.6,2,3.4,3.5.8,1.5,1.2,3.2,1.2,5.2l-.1,1h0Zm-14.3-6.7c-1.3,1.2-2,2.8-2.2,4.7h14c-.2-1.9-.9-3.5-2.2-4.7-1.3-1.2-2.9-1.8-4.8-1.8s-3.5.6-4.8,1.8" style="fill:#fff; stroke-width:0px;"/><path d="m1037.05,58.65v27.8h-2.5v-3.9c-.8,1.3-1.9,2.3-3.2,3-1.3.7-2.8,1-4.4,1-1.8,0-3.5-.4-5-1.3-1.5-.8-2.7-2-3.5-3.6-.8-1.5-1.3-3.3-1.3-5.2s.4-3.7,1.3-5.2c.8-1.5,2-2.7,3.5-3.5s3.2-1.3,5-1.3c1.6,0,3,.3,4.3,1s2.3,1.6,3.2,2.9v-11.7h2.6Zm-6.2,24.6c1.1-.6,2-1.5,2.6-2.7s1-2.5,1-4-.3-2.8-1-4c-.6-1.2-1.5-2.1-2.6-2.7s-2.4-1-3.7-1c-1.4,0-2.6.3-3.8,1-1.1.6-2,1.5-2.6,2.7-.6,1.2-1,2.5-1,4s.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7s2.4,1,3.8,1c1.3,0,2.6-.4,3.7-1" style="fill:#fff; stroke-width:0px;"/><path d="m1061.55,77.35h-16.5c.1,2,.9,3.7,2.4,5,1.4,1.3,3.2,1.9,5.4,1.9,1.2,0,2.3-.2,3.4-.7,1-.4,1.9-1.1,2.7-1.9l1.5,1.7c-.9,1-2,1.8-3.3,2.4-1.3.5-2.8.8-4.3.8-2,0-3.8-.4-5.4-1.3s-2.8-2.1-3.6-3.6c-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.8-1.5,2-2.7,3.4-3.6s3.1-1.3,4.9-1.3,3.5.4,4.9,1.3c1.4.8,2.6,2,3.4,3.5.8,1.5,1.2,3.2,1.2,5.2,0,0-.1,1-.1,1Zm-14.3-6.7c-1.3,1.2-2,2.8-2.2,4.7h14c-.2-1.9-.9-3.5-2.2-4.7-1.3-1.2-2.9-1.8-4.8-1.8s-3.5.6-4.8,1.8" style="fill:#fff; stroke-width:0px;"/><polygon points="521.65 157.65 521.55 130.75 508.35 152.95 503.65 152.95 490.55 131.35 490.55 157.75 480.85 157.75 480.85 112.85 489.45 112.85 506.25 140.75 522.75 112.85 531.25 112.85 531.35 157.75 521.65 157.75 521.65 157.65" style="fill:#fff; stroke-width:0px;"/><path d="m573.95,143.25h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2,0,.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2s-3.4-2-5.6-2c-2.3-.1-4.2.6-5.8,1.9m8.3-22.7h10.8l-11.6,9.2h-7.8l8.6-9.2Z" style="fill:#fff; stroke-width:0px;"/><path d="m602.15,155.95c-1,.7-2.2,1.3-3.6,1.6-1.4.3-2.9.5-4.5.5-4.1,0-7.3-1-9.5-3.1s-3.4-5.2-3.4-9.2v-14.2h-5.3v-7.6h5.3v-8.4h10v8.4h8.6v7.7h-8.6v14c0,1.5.4,2.6,1.1,3.4.7.8,1.8,1.2,3.2,1.2,1.6,0,2.9-.4,4-1.3l2.7,7Z" style="fill:#fff; stroke-width:0px;"/><path d="m621.25,123.95c2-.9,4.4-1.3,7-1.3v9.2c-1.1-.1-1.9-.1-2.2-.1-2.9,0-5.1.8-6.7,2.4-1.6,1.6-2.4,4-2.4,7.2v16.3h-10v-34.5h9.6v4.6c1-1.7,2.6-3,4.7-3.8" style="fill:#fff; stroke-width:0px;"/><path d="m639.55,155.85c-2.9-1.5-5.1-3.6-6.8-6.3-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.5,2.4-9.2c1.6-2.7,3.9-4.8,6.8-6.3,2.9-1.5,6.1-2.3,9.8-2.3s6.9.8,9.7,2.3c2.9,1.5,5.1,3.6,6.7,6.3,1.6,2.7,2.4,5.8,2.4,9.2s-.8,6.5-2.4,9.2c-1.6,2.7-3.9,4.8-6.7,6.3-2.9,1.5-6.1,2.3-9.7,2.3s-6.9-.8-9.8-2.3m16.1-8.5c1.6-1.7,2.5-4.1,2.5-7s-.8-5.2-2.5-7c-1.6-1.7-3.7-2.6-6.3-2.6s-4.7.9-6.3,2.6c-1.7,1.7-2.5,4.1-2.5,7s.8,5.2,2.5,7,3.8,2.6,6.3,2.6,4.7-.9,6.3-2.6" style="fill:#fff; stroke-width:0px;"/><rect x="673.95" y="110.05" width="10" height="47.6" style="fill:#fff; stroke-width:0px;"/><path d="m698.95,155.85c-2.9-1.5-5.1-3.6-6.8-6.3-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.5,2.4-9.2c1.6-2.7,3.9-4.8,6.8-6.3,2.9-1.5,6.1-2.3,9.8-2.3s6.9.8,9.7,2.3c2.9,1.5,5.1,3.6,6.7,6.3,1.6,2.7,2.4,5.8,2.4,9.2s-.8,6.5-2.4,9.2c-1.6,2.7-3.9,4.8-6.7,6.3-2.9,1.5-6.1,2.3-9.7,2.3s-6.9-.8-9.8-2.3m16.1-8.5c1.6-1.7,2.5-4.1,2.5-7s-.8-5.2-2.5-7c-1.6-1.7-3.7-2.6-6.3-2.6s-4.7.9-6.3,2.6c-1.7,1.7-2.5,4.1-2.5,7s.8,5.2,2.5,7c1.7,1.7,3.8,2.6,6.3,2.6s4.6-.9,6.3-2.6" style="fill:#fff; stroke-width:0px;"/><path d="m768.95,123.15v28.7c0,6.3-1.6,11-4.9,14.1-3.3,3.1-8.1,4.6-14.4,4.6-3.3,0-6.5-.4-9.5-1.2s-5.5-2-7.4-3.5l4-7.2c1.5,1.2,3.3,2.1,5.5,2.9,2.2.7,4.4,1.1,6.7,1.1,3.5,0,6-.8,7.7-2.3,1.6-1.6,2.5-3.9,2.5-7.1v-1.5c-2.6,2.9-6.2,4.3-10.9,4.3-3.2,0-6.1-.7-8.7-2.1-2.6-1.4-4.7-3.3-6.3-5.9-1.5-2.5-2.3-5.4-2.3-8.7s.8-6.2,2.3-8.7,3.6-4.5,6.3-5.9c2.6-1.4,5.5-2.1,8.7-2.1,5,0,8.8,1.6,11.4,4.9v-4.4h9.3Zm-12.4,22.3c1.7-1.6,2.5-3.6,2.5-6.1s-.8-4.6-2.5-6.1c-1.7-1.6-3.9-2.3-6.5-2.3s-4.8.8-6.5,2.3c-1.7,1.6-2.6,3.6-2.6,6.1s.9,4.6,2.6,6.1c1.7,1.6,3.9,2.3,6.5,2.3s4.8-.8,6.5-2.3" style="fill:#fff; stroke-width:0px;"/><path d="m777.75,116.75c-1.2-1.1-1.7-2.4-1.7-4s.6-2.9,1.7-4c1.2-1.1,2.7-1.6,4.5-1.6s3.3.5,4.5,1.5,1.7,2.3,1.7,3.8c0,1.7-.6,3-1.7,4.1-1.2,1.1-2.6,1.6-4.5,1.6s-3.3-.4-4.5-1.4m-.5,6.4h10v34.5h-10v-34.5Z" style="fill:#fff; stroke-width:0px;"/><path d="m829.25,143.25h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2-.1.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2s-3.4-2-5.6-2c-2.4-.1-4.3.6-5.8,1.9" style="fill:#fff; stroke-width:0px;"/><polygon points="850.25 112.75 860.65 112.75 860.65 149.15 883.15 149.15 883.15 157.65 850.25 157.65 850.25 112.75" style="fill:#fff; stroke-width:0px;"/><path d="m920.65,143.25h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2,0,.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2s-3.4-2-5.6-2c-2.3-.1-4.2.6-5.8,1.9m8.3-22.7h10.8l-11.6,9.2h-7.8l8.6-9.2Z" style="fill:#fff; stroke-width:0px;"/><path d="m962.15,123.15v28.7c0,6.3-1.6,11-4.9,14.1-3.3,3.1-8.1,4.6-14.4,4.6-3.3,0-6.5-.4-9.5-1.2s-5.5-2-7.4-3.5l4-7.2c1.5,1.2,3.3,2.1,5.5,2.9,2.2.7,4.4,1.1,6.7,1.1,3.5,0,6-.8,7.7-2.3,1.6-1.6,2.5-3.9,2.5-7.1v-1.5c-2.6,2.9-6.2,4.3-10.9,4.3-3.2,0-6.1-.7-8.7-2.1-2.6-1.4-4.7-3.3-6.3-5.9-1.5-2.5-2.3-5.4-2.3-8.7s.8-6.2,2.3-8.7,3.6-4.5,6.3-5.9c2.6-1.4,5.5-2.1,8.7-2.1,5,0,8.8,1.6,11.4,4.9v-4.4h9.3Zm-12.4,22.3c1.7-1.6,2.5-3.6,2.5-6.1s-.8-4.6-2.5-6.1c-1.7-1.6-3.9-2.3-6.5-2.3s-4.8.8-6.5,2.3c-1.7,1.6-2.6,3.6-2.6,6.1s.9,4.6,2.6,6.1c1.7,1.6,3.9,2.3,6.5,2.3s4.8-.8,6.5-2.3" style="fill:#fff; stroke-width:0px;"/><path d="m996.75,126.45c2.9,2.5,4.3,6.4,4.3,11.5v19.7h-9.4v-4.3c-1.9,3.2-5.4,4.8-10.5,4.8-2.6,0-4.9-.4-6.9-1.3-1.9-.9-3.4-2.1-4.5-3.7-1-1.6-1.5-3.4-1.5-5.4,0-3.2,1.2-5.7,3.6-7.6,2.4-1.8,6.1-2.8,11.2-2.8h7.9c0-2.2-.7-3.9-2-5-1.3-1.2-3.3-1.8-6-1.8-1.8,0-3.6.3-5.4.9s-3.3,1.4-4.5,2.3l-3.6-7c1.9-1.3,4.1-2.3,6.8-3.1,2.6-.7,5.3-1.1,8.1-1.1,5.4.1,9.5,1.3,12.4,3.9m-8.5,23.8c1.3-.8,2.3-2,2.8-3.5v-3.5h-6.9c-4.1,0-6.2,1.3-6.2,4,0,1.3.5,2.3,1.5,3s2.4,1.1,4.1,1.1c1.8.1,3.3-.3,4.7-1.1" style="fill:#fff; stroke-width:0px;"/><rect x="1009.15" y="110.05" width="10" height="47.6" style="fill:#fff; stroke-width:0px;"/><path d="m1061.05,143.25h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8s2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3,2.8-1.5,5.9-2.3,9.4-2.3s6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2-.1.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2s-3.4-2-5.6-2c-2.3-.1-4.2.6-5.8,1.9" style="fill:#fff; stroke-width:0px;"/><rect x="475.45" y="195.25" width="587.8" height="3.1" style="fill:#61b4ff; stroke-width:0px;"/><rect x="479.75" y="227.55" width="2.8" height="26.2" style="fill:#fff; stroke-width:0px;"/><path d="m507.55,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.6.1,4.5.8,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m528.45,252.55c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3s1-.4,1.3-.7l.9,1.9h0Z" style="fill:#fff; stroke-width:0px;"/><path d="m550.75,244.75h-16.5c.1,2,.9,3.7,2.4,5,1.4,1.3,3.2,1.9,5.4,1.9,1.2,0,2.3-.2,3.4-.7,1-.4,1.9-1.1,2.7-1.9l1.5,1.7c-.9,1-2,1.8-3.3,2.4-1.3.5-2.8.8-4.3.8-2,0-3.8-.4-5.4-1.3-1.6-.9-2.8-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.8-1.5,2-2.7,3.4-3.6,1.5-.8,3.1-1.3,4.9-1.3s3.5.4,4.9,1.3c1.4.8,2.6,2,3.4,3.5.8,1.5,1.2,3.2,1.2,5.2l-.1,1h0Zm-14.2-6.7c-1.3,1.2-2,2.8-2.2,4.7h14c-.2-1.9-.9-3.5-2.2-4.7s-2.9-1.8-4.8-1.8c-2-.1-3.6.6-4.8,1.8" style="fill:#fff; stroke-width:0px;"/><path d="m562.65,234.95c1.2-.7,2.8-1,4.6-1v2.6h-.6c-2.1,0-3.7.6-4.9,1.9-1.2,1.3-1.8,3.1-1.8,5.3v10h-2.7v-19.7h2.5v3.9c.8-1.4,1.7-2.3,2.9-3" style="fill:#fff; stroke-width:0px;"/><path d="m589.15,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.5.1,4.5.8,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m612.45,235.85c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.4.1,4.4.7,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1,1.5,0,2.8-.4,3.9-1" style="fill:#fff; stroke-width:0px;"/><path d="m633.15,252.55c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3s1-.4,1.3-.7l.9,1.9h0Z" style="fill:#fff; stroke-width:0px;"/><path d="m639.15,229.25c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6-.6-.1-1.1-.3-1.4-.6m0,4.8h2.7v19.7h-2.7v-19.7Z" style="fill:#fff; stroke-width:0px;"/><path d="m653.25,252.65c-1.5-.9-2.7-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.8,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3s-3.6-.5-5.1-1.3m8.9-2c1.1-.6,2-1.5,2.6-2.7.6-1.2.9-2.5.9-4s-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7-1.1-.6-2.4-1-3.8-1s-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7s-1,2.5-1,4,.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7,1.1.6,2.4,1,3.8,1,1.4-.1,2.7-.4,3.8-1" style="fill:#fff; stroke-width:0px;"/><path d="m690.85,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.5.1,4.5.8,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m714.15,235.85c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.4.1,4.4.7,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1,1.5,0,2.8-.4,3.9-1" style="fill:#fff; stroke-width:0px;"/><rect x="724.55" y="225.95" width="2.7" height="27.8" style="fill:#fff; stroke-width:0px;"/><path d="m758.85,252.25c-2.1-1.2-3.8-2.7-4.9-4.8-1.2-2-1.8-4.3-1.8-6.8s.6-4.8,1.8-6.8,2.8-3.6,4.9-4.8c2.1-1.2,4.5-1.7,7.1-1.7s4.9.6,7,1.7c2.1,1.1,3.7,2.7,4.9,4.8,1.2,2,1.8,4.3,1.8,6.8s-.6,4.8-1.8,6.8-2.8,3.6-4.9,4.8c-2.1,1.2-4.4,1.7-7,1.7s-5-.6-7.1-1.7m12.7-2.2c1.7-.9,3-2.2,3.9-3.9.9-1.7,1.4-3.5,1.4-5.6s-.5-3.9-1.4-5.6c-.9-1.7-2.3-3-3.9-3.9-1.7-.9-3.5-1.4-5.6-1.4s-3.9.5-5.6,1.4-3,2.2-4,3.9-1.4,3.5-1.4,5.6.5,3.9,1.4,5.6c1,1.7,2.3,3,4,3.9s3.6,1.4,5.6,1.4,3.9-.4,5.6-1.4" style="fill:#fff; stroke-width:0px;"/><path d="m791.75,234.95c1.2-.7,2.8-1,4.6-1v2.6h-.6c-2.1,0-3.7.6-4.9,1.9-1.2,1.3-1.8,3.1-1.8,5.3v10h-2.7v-19.7h2.5v3.9c.7-1.4,1.6-2.3,2.9-3" style="fill:#fff; stroke-width:0px;"/><path d="m820.25,234.05v17.3c0,3.3-.8,5.8-2.4,7.4-1.6,1.6-4.1,2.4-7.4,2.4-1.8,0-3.5-.3-5.2-.8-1.6-.5-3-1.3-4-2.2l1.3-2c.9.8,2.1,1.5,3.5,2s2.8.7,4.3.7c2.5,0,4.3-.6,5.5-1.7,1.2-1.2,1.8-3,1.8-5.4v-2.5c-.8,1.2-1.9,2.2-3.2,2.8s-2.8,1-4.4,1c-1.8,0-3.5-.4-5-1.2s-2.7-1.9-3.6-3.4c-.9-1.5-1.3-3.1-1.3-5s.4-3.5,1.3-4.9c.9-1.4,2-2.6,3.5-3.4,1.5-.8,3.2-1.2,5.1-1.2,1.7,0,3.2.3,4.5,1s2.4,1.6,3.3,2.9v-3.8h2.4Zm-6.2,15.7c1.1-.6,2-1.5,2.7-2.6.6-1.1,1-2.3,1-3.7s-.3-2.6-1-3.7c-.6-1.1-1.5-1.9-2.7-2.5-1.1-.6-2.4-.9-3.9-.9-1.4,0-2.7.3-3.8.9-1.1.6-2,1.4-2.7,2.5-.6,1.1-1,2.3-1,3.7s.3,2.6,1,3.7c.6,1.1,1.5,2,2.7,2.6,1.1.6,2.4.9,3.8.9s2.7-.3,3.9-.9" style="fill:#fff; stroke-width:0px;"/><path d="m841.65,235.85c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.4.1,4.4.7,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1,1.5,0,2.8-.4,3.9-1" style="fill:#fff; stroke-width:0px;"/><path d="m867.95,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.6.1,4.5.8,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m878.45,229.25c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6-.6-.1-1.1-.3-1.4-.6m0,4.8h2.7v19.7h-2.7v-19.7Z" style="fill:#fff; stroke-width:0px;"/><polygon points="903.55 251.55 903.55 253.75 887.55 253.75 887.55 251.95 899.95 236.25 887.75 236.25 887.75 234.05 903.25 234.05 903.25 235.85 890.85 251.55 903.55 251.55" style="fill:#fff; stroke-width:0px;"/><path d="m922.65,235.85c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.4.7,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1s2.9-.4,3.9-1" style="fill:#fff; stroke-width:0px;"/><path d="m943.45,252.55c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3s1-.4,1.3-.7l.9,1.9h0Z" style="fill:#fff; stroke-width:0px;"/><path d="m949.35,229.25c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6-.6-.1-1-.3-1.4-.6m0,4.8h2.7v19.7h-2.7v-19.7Z" style="fill:#fff; stroke-width:0px;"/><path d="m963.45,252.65c-1.5-.9-2.7-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.8,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3-1.8,0-3.6-.5-5.1-1.3m8.9-2c1.1-.6,2-1.5,2.6-2.7.6-1.2.9-2.5.9-4s-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7-1.1-.6-2.4-1-3.8-1s-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7-.6,1.2-1,2.5-1,4s.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7,1.1.6,2.4,1,3.8,1,1.4-.1,2.7-.4,3.8-1" style="fill:#fff; stroke-width:0px;"/><path d="m1001.05,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.6.1,4.5.8,6,2.2" style="fill:#fff; stroke-width:0px;"/><path d="m1032.65,252.65c-1.5-.9-2.7-2.1-3.6-3.6s-1.3-3.2-1.3-5.2.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.9,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3s-3.6-.5-5.1-1.3m8.9-2c1.1-.6,2-1.5,2.6-2.7.6-1.2.9-2.5.9-4s-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7-1.1-.6-2.4-1-3.8-1s-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7s-1,2.5-1,4,.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7s2.4,1,3.8,1c1.4-.1,2.7-.4,3.8-1" style="fill:#fff; stroke-width:0px;"/><path d="m1058.25,228.95c-.6.6-.9,1.5-.9,2.8v2.3h6.1v2.2h-6v17.4h-2.7v-17.4h-3.5v-2.2h3.5v-2.4c0-1.8.5-3.2,1.6-4.3,1-1,2.5-1.6,4.4-1.6.7,0,1.5.1,2.2.3s1.3.5,1.8.9l-.9,2c-.8-.6-1.7-1-2.9-1-1.3.1-2.1.4-2.7,1" style="fill:#fff; stroke-width:0px;"/><polygon points="480.85 280.15 491.25 280.15 491.25 316.55 513.75 316.55 513.75 325.05 480.85 325.05 480.85 280.15" style="fill:#fff; stroke-width:0px;"/><path d="m554.75,310.55h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2-.1.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2-1.5-1.3-3.4-2-5.6-2-2.4,0-4.3.6-5.8,1.9" style="fill:#fff; stroke-width:0px;"/><path d="m599.75,290.45v28.7c0,6.3-1.6,11-4.9,14.1-3.3,3.1-8.1,4.6-14.4,4.6-3.3,0-6.5-.4-9.5-1.2-3-.8-5.5-2-7.4-3.5l4-7.2c1.5,1.2,3.3,2.1,5.5,2.9,2.2.7,4.4,1.1,6.7,1.1,3.5,0,6-.8,7.7-2.3,1.6-1.6,2.5-3.9,2.5-7.1v-1.5c-2.6,2.9-6.2,4.3-10.9,4.3-3.2,0-6.1-.7-8.7-2.1-2.6-1.4-4.7-3.3-6.3-5.9-1.5-2.5-2.3-5.4-2.3-8.7s.8-6.2,2.3-8.7,3.6-4.5,6.3-5.9c2.6-1.4,5.5-2.1,8.7-2.1,5,0,8.8,1.6,11.4,4.9v-4.4h9.3Zm-12.4,22.3c1.7-1.6,2.5-3.6,2.5-6.1s-.8-4.6-2.5-6.1c-1.7-1.6-3.9-2.3-6.5-2.3s-4.8.8-6.5,2.3c-1.7,1.6-2.6,3.6-2.6,6.1s.9,4.6,2.6,6.1c1.7,1.6,3.9,2.3,6.5,2.3s4.8-.7,6.5-2.3" style="fill:#fff; stroke-width:0px;"/><path d="m637.85,293.75c2.9,2.5,4.3,6.4,4.3,11.5v19.7h-9.4v-4.3c-1.9,3.2-5.4,4.8-10.5,4.8-2.6,0-4.9-.4-6.9-1.3-1.9-.9-3.4-2.1-4.5-3.7-1-1.6-1.5-3.4-1.5-5.4,0-3.2,1.2-5.7,3.6-7.6,2.4-1.8,6.1-2.8,11.2-2.8h7.9c0-2.2-.7-3.9-2-5-1.3-1.2-3.3-1.8-6-1.8-1.8,0-3.6.3-5.4.9-1.8.6-3.3,1.4-4.5,2.3l-3.6-7c1.9-1.3,4.1-2.3,6.8-3.1,2.6-.7,5.3-1.1,8.1-1.1,5.4.1,9.5,1.4,12.4,3.9m-8.5,23.8c1.3-.8,2.3-2,2.8-3.5v-3.5h-6.9c-4.1,0-6.2,1.3-6.2,4,0,1.3.5,2.3,1.5,3s2.4,1.1,4.1,1.1c1.8.1,3.4-.3,4.7-1.1" style="fill:#fff; stroke-width:0px;"/><rect x="653.75" y="277.45" width="10" height="47.5" style="fill:#fff; stroke-width:0px;"/><polygon points="745.75 324.95 745.65 298.05 732.45 320.25 727.75 320.25 714.65 298.65 714.65 324.95 704.95 324.95 704.95 280.05 713.55 280.05 730.35 307.95 746.85 280.05 755.35 280.05 755.45 324.95 745.75 324.95" style="fill:#fff; stroke-width:0px;"/><path d="m801.65,310.55h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2-.1.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2-1.5-1.3-3.4-2-5.6-2-2.4,0-4.3.6-5.8,1.9" style="fill:#fff; stroke-width:0px;"/><path d="m833.25,323.35c-1,.7-2.2,1.3-3.6,1.6-1.4.3-2.9.5-4.5.5-4.1,0-7.3-1-9.5-3.1s-3.4-5.2-3.4-9.2v-14.2h-5.3v-7.7h5.3v-8.4h10v8.4h8.6v7.7h-8.6v14c0,1.5.4,2.6,1.1,3.4.7.8,1.8,1.2,3.2,1.2,1.6,0,2.9-.4,4-1.3l2.7,7.1Z" style="fill:#fff; stroke-width:0px;"/><path d="m855.85,291.25c2-.9,4.4-1.3,7-1.3v9.2c-1.1-.1-1.9-.1-2.2-.1-2.9,0-5.1.8-6.7,2.4-1.6,1.6-2.4,4-2.4,7.2v16.3h-10v-34.5h9.6v4.6c1.1-1.7,2.7-2.9,4.7-3.8" style="fill:#fff; stroke-width:0px;"/><path d="m877.75,323.25c-2.9-1.5-5.1-3.6-6.8-6.3-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.5,2.4-9.2c1.6-2.7,3.9-4.8,6.8-6.3,2.9-1.5,6.1-2.3,9.8-2.3s6.9.8,9.7,2.3c2.9,1.5,5.1,3.6,6.7,6.3,1.6,2.7,2.4,5.8,2.4,9.2s-.8,6.5-2.4,9.2c-1.6,2.7-3.9,4.8-6.7,6.3-2.9,1.5-6.1,2.3-9.7,2.3s-6.9-.8-9.8-2.3m16.1-8.5c1.6-1.7,2.5-4.1,2.5-7s-.8-5.2-2.5-7c-1.6-1.7-3.7-2.6-6.3-2.6s-4.7.9-6.3,2.6c-1.7,1.7-2.5,4.1-2.5,7s.8,5.2,2.5,7c1.7,1.7,3.8,2.6,6.3,2.6,2.6-.1,4.7-.9,6.3-2.6" style="fill:#fff; stroke-width:0px;"/><rect x="915.65" y="277.45" width="10" height="47.5" style="fill:#fff; stroke-width:0px;"/><path d="m944.15,323.25c-2.9-1.5-5.1-3.6-6.8-6.3-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.5,2.4-9.2c1.6-2.7,3.9-4.8,6.8-6.3,2.9-1.5,6.1-2.3,9.8-2.3s6.9.8,9.7,2.3c2.9,1.5,5.1,3.6,6.7,6.3,1.6,2.7,2.4,5.8,2.4,9.2s-.8,6.5-2.4,9.2c-1.6,2.7-3.9,4.8-6.7,6.3-2.9,1.5-6.1,2.3-9.7,2.3s-6.9-.8-9.8-2.3m16.1-8.5c1.6-1.7,2.5-4.1,2.5-7s-.8-5.2-2.5-7c-1.6-1.7-3.7-2.6-6.3-2.6s-4.7.9-6.3,2.6c-1.7,1.7-2.5,4.1-2.5,7s.8,5.2,2.5,7c1.7,1.7,3.8,2.6,6.3,2.6,2.6-.1,4.7-.9,6.3-2.6" style="fill:#fff; stroke-width:0px;"/><path d="m1017.75,290.45v28.7c0,6.3-1.6,11-4.9,14.1-3.3,3.1-8.1,4.6-14.4,4.6-3.3,0-6.5-.4-9.5-1.2-3-.8-5.5-2-7.4-3.5l4-7.2c1.5,1.2,3.3,2.1,5.5,2.9,2.2.7,4.4,1.1,6.7,1.1,3.5,0,6-.8,7.7-2.3,1.6-1.6,2.5-3.9,2.5-7.1v-1.5c-2.6,2.9-6.2,4.3-10.9,4.3-3.2,0-6.1-.7-8.7-2.1-2.6-1.4-4.7-3.3-6.3-5.9-1.5-2.5-2.3-5.4-2.3-8.7s.8-6.2,2.3-8.7,3.6-4.5,6.3-5.9c2.6-1.4,5.5-2.1,8.7-2.1,5,0,8.8,1.6,11.4,4.9v-4.4h9.3Zm-12.4,22.3c1.7-1.6,2.5-3.6,2.5-6.1s-.8-4.6-2.5-6.1c-1.7-1.6-3.9-2.3-6.5-2.3s-4.8.8-6.5,2.3c-1.7,1.6-2.6,3.6-2.6,6.1s.9,4.6,2.6,6.1c1.7,1.6,3.9,2.3,6.5,2.3s4.8-.7,6.5-2.3" style="fill:#fff; stroke-width:0px;"/><path d="m1063.85,290.45l-15.6,36.6c-1.6,4-3.5,6.8-5.9,8.4-2.3,1.6-5.1,2.4-8.4,2.4-1.8,0-3.6-.3-5.3-.8-1.8-.6-3.2-1.3-4.3-2.3l3.7-7.1c.8.7,1.7,1.2,2.7,1.6s2,.6,3,.6c1.4,0,2.5-.3,3.3-1,.9-.7,1.6-1.8,2.3-3.3l.1-.3-14.9-34.8h10.3l9.7,23.4,9.7-23.4h9.6Z" style="fill:#fff; stroke-width:0px;"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-c31965bd-8485-40b7-8691-8dbcf41b326b" xmlns="http://www.w3.org/2000/svg" width="1100" height="400" viewBox="0 0 1100 400"><path d="m225.25,365.25c-91,0-165-74-165-165S134.25,35.25,225.25,35.25s165,74,165,165-74,165-165,165m-83.7-26.9c24.4,14.9,53.1,23.5,83.8,23.5s59.5-8.6,84-23.6c-14.4-16.2-45.6-26.3-82.4-26.6h-1.2c-36.9,0-69.5,10.4-84.2,26.7m-3.5-273.9c-44.7,28.8-74.3,78.9-74.3,135.9s29.9,107.5,74.8,136.2c15.3-17.6,48.4-28.3,87.1-28.3h1.3c38.1.2,70.5,11,85.3,28.1,44.8-28.7,74.6-79,74.6-136.1s-29.5-106.9-74-135.7c-14.6,17.5-47.3,28.5-85.8,28.8-40,.2-73.8-10.8-89-28.9m2.9-1.9c14.5,16.7,47.4,27.4,84.8,27.4h1.2c37.3-.2,68.8-10.6,82.9-27.2-24.6-15.2-53.6-24-84.6-24s-59.7,8.7-84.3,23.8" style="fill:#004996; stroke-width:0px;"/><path d="m77.35,251.85c27.6,0,43.4-25.5,43.4-51,0-23-20.1-46.3-43.4-46.3s-43.5,23.3-43.5,46.3c0,25.5,15.9,51,43.5,51m22.9-35.4c0,5.4-.1,10.7-1.4,15.6-2.5,9.6-8.2,16.3-21.5,16.3s-19-6.7-21.5-16.3c-1.3-4.9-1.5-10.2-1.5-15.6v-30.4c0-5,.8-9.8,2.1-13.9,2.5-8.5,8.5-14.1,20.9-14.1s18,5.6,20.8,14.1c1.4,4.2,2.1,8.9,2.1,13.9,0,0,0,30.4,0,30.4Z" style="fill:#1d1d1b; fill-rule:evenodd; stroke-width:0px;"/><polygon points="177.55 160.15 191.35 160.15 191.35 156.65 145.95 156.65 145.95 160.15 159.75 160.15 159.75 246.25 145.95 246.25 145.95 249.75 191.35 249.75 191.35 246.25 177.55 246.25 177.55 160.15" style="fill:#1d1d1b; stroke-width:0px;"/><polygon points="309.35 160.15 323.15 160.15 323.15 156.65 287.95 156.65 267.75 220.35 248.15 156.65 212.25 156.65 212.25 160.15 226.05 160.15 226.05 246.25 212.25 246.25 212.25 249.75 244.05 249.75 244.05 246.25 230.45 246.25 230.45 162.45 230.75 162.45 258.55 249.75 263.25 249.75 291.15 162.45 291.55 162.45 291.55 246.25 277.75 246.25 277.75 249.75 323.15 249.75 323.15 246.25 309.35 246.25 309.35 160.15" style="fill:#1d1d1b; stroke-width:0px;"/><path d="m420.35,249.75l1.4-31.4h-4.3c-.6,16-6.8,27.9-24.5,27.9h-18.3v-86.2h14.5v-3.5h-46.1v3.5h13.8v86.2h-13.8v3.5h77.3,0Z" style="fill:#1d1d1b; stroke-width:0px;"/><path d="m225.95,365.35h-.2v-2h-.2v1.9c-51.3,0-90.7-40.8-105.5-109l3.4-.7c13,59.8,45.2,98,87.5,105.1-25.2-17-34.5-76.5-37.5-104.5l3.4-.4c7,64.8,24.5,104.1,47.1,106l.1-106.3h3.4l-.2,106.4c23.1-1.7,40.8-41.3,47.5-106.6l3.4.4c-5.8,56-19.2,92.8-37.8,105.2,42.4-7.1,74.6-45.5,87.6-105.8l3.4.7c-14.8,68.6-54.2,109.6-105.4,109.6m49.3-212.9c-6.4-68-24.6-110.8-47.9-112.9l-.1,112.7h-3.4l.1-112.8c-23.7,2-42.1,44.9-48.2,112.9l-3.4-.3c5.3-59,19.4-98.7,38.9-111.6-44.2,7.1-77,47.6-89.2,111.5l-3.4-.6c13.8-72.4,53.7-115.5,106.8-115.5h.2v.1c53.3.1,93.3,43.2,107,115.5l-3.4.6c-12.1-63.9-45-104.5-89.5-111.6,19.3,12.9,33.4,52.6,38.9,111.6l-3.4.4h0Z" style="fill:#004996; stroke-width:0px;"/><path d="m484.15,84.85c-2.1-1.2-3.8-2.7-4.9-4.8-1.2-2-1.8-4.3-1.8-6.8s.6-4.8,1.8-6.8c1.2-2,2.8-3.6,4.9-4.8s4.5-1.7,7.1-1.7,4.9.6,7,1.7,3.7,2.7,4.9,4.8c1.2,2,1.8,4.3,1.8,6.8s-.6,4.8-1.8,6.8c-1.2,2-2.8,3.6-4.9,4.8-2.1,1.1-4.4,1.7-7,1.7s-5-.5-7.1-1.7m12.7-2.1c1.7-.9,3-2.2,3.9-3.9.9-1.7,1.4-3.5,1.4-5.6s-.5-3.9-1.4-5.6c-.9-1.7-2.3-3-3.9-3.9-1.7-.9-3.5-1.4-5.6-1.4s-3.9.5-5.6,1.4-3,2.2-4,3.9c-1,1.7-1.4,3.5-1.4,5.6s.5,3.9,1.4,5.6c1,1.7,2.3,3,4,3.9s3.6,1.4,5.6,1.4,3.9-.5,5.6-1.4" style="fill:#001e41; stroke-width:0px;"/><path d="m515.95,67.55c1.2-.7,2.8-1,4.6-1v2.6h-.6c-2.1,0-3.7.6-4.9,1.9-1.2,1.3-1.8,3.1-1.8,5.3v10h-2.7v-19.6h2.5v3.9c.7-1.4,1.6-2.4,2.9-3.1" style="fill:#001e41; stroke-width:0px;"/><path d="m543.35,66.75v17.2c0,3.3-.8,5.8-2.4,7.4-1.6,1.6-4.1,2.4-7.4,2.4-1.8,0-3.5-.3-5.2-.8-1.6-.5-3-1.3-4-2.2l1.3-2c.9.8,2.1,1.5,3.5,2s2.8.7,4.3.7c2.5,0,4.3-.6,5.5-1.7,1.2-1.2,1.8-3,1.8-5.4v-2.5c-.8,1.2-1.9,2.2-3.2,2.8-1.3.6-2.8,1-4.4,1-1.8,0-3.5-.4-5-1.2-1.5-.8-2.7-1.9-3.6-3.4s-1.3-3.1-1.3-5c0-1.8.4-3.5,1.3-4.9.9-1.4,2-2.6,3.5-3.4s3.2-1.2,5.1-1.2c1.7,0,3.2.3,4.5,1,1.3.7,2.4,1.6,3.3,2.9v-3.8h2.4v.1h0Zm-6.3,15.6c1.1-.6,2-1.5,2.7-2.6.6-1.1,1-2.3,1-3.7s-.3-2.6-1-3.7c-.6-1.1-1.5-1.9-2.7-2.5-1.1-.6-2.4-.9-3.9-.9-1.4,0-2.7.3-3.8.9s-2,1.4-2.7,2.5c-.6,1.1-1,2.3-1,3.7s.3,2.6,1,3.7c.6,1.1,1.5,2,2.7,2.6,1.1.6,2.4.9,3.8.9s2.8-.3,3.9-.9" style="fill:#001e41; stroke-width:0px;"/><path d="m563.55,68.45c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.4.8,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1,1.5,0,2.8-.3,3.9-1" style="fill:#001e41; stroke-width:0px;"/><path d="m588.75,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9s-1.9,3-1.9,5.2v10.3h-2.7v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.6,0,4.5.7,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m598.15,61.85c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6s-1.1-.2-1.4-.6m0,4.9h2.7v19.7h-2.7v-19.7Z" style="fill:#001e41; stroke-width:0px;"/><path d="m608.85,85.85c-1.5-.5-2.6-1-3.4-1.7l1.2-2.1c.8.6,1.9,1.2,3.1,1.6,1.2.4,2.5.6,3.9.6,1.8,0,3.1-.3,4-.8.9-.6,1.3-1.4,1.3-2.4,0-.7-.2-1.3-.7-1.7s-1.1-.7-1.8-.9c-.7-.2-1.7-.4-2.9-.6-1.6-.3-2.9-.6-3.9-.9s-1.8-.8-2.5-1.6c-.7-.7-1-1.8-1-3.1,0-1.6.7-3,2.1-4,1.4-1,3.3-1.6,5.7-1.6,1.3,0,2.5.2,3.8.5,1.3.3,2.3.8,3.1,1.3l-1.2,2.1c-1.6-1.1-3.6-1.7-5.8-1.7-1.7,0-3,.3-3.8.9-.9.6-1.3,1.4-1.3,2.4,0,.7.2,1.3.7,1.8.5.4,1.1.8,1.8,1s1.7.4,3,.7c1.6.3,2.8.6,3.8.9.9.3,1.8.8,2.4,1.5.6.7,1,1.7,1,3,0,1.7-.7,3.1-2.1,4.1-1.4,1-3.4,1.5-6,1.5-1.5-.1-3-.3-4.5-.8" style="fill:#001e41; stroke-width:0px;"/><path d="m639.25,68.45c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.5.8,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1s2.9-.3,3.9-1" style="fill:#001e41; stroke-width:0px;"/><path d="m658.95,85.15c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3.5-.2,1-.4,1.3-.7l.9,1.9h0Z" style="fill:#001e41; stroke-width:0px;"/><path d="m663.75,61.85c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6s-1.1-.2-1.4-.6m0,4.9h2.7v19.7h-2.7v-19.7Z" style="fill:#001e41; stroke-width:0px;"/><path d="m676.75,85.25c-1.5-.9-2.7-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.8,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3s-3.6-.4-5.1-1.3m8.9-2c1.1-.6,2-1.5,2.6-2.7.6-1.2.9-2.5.9-4s-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7s-2.4-1-3.8-1-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7s-1,2.5-1,4,.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7s2.4,1,3.8,1,2.7-.4,3.8-1" style="fill:#001e41; stroke-width:0px;"/><path d="m713.15,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.6v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.5,0,4.5.7,5.9,2.2" style="fill:#001e41; stroke-width:0px;"/><rect x="739.15" y="60.25" width="2.8" height="26.2" style="fill:#001e41; stroke-width:0px;"/><path d="m765.75,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9s-1.9,3-1.9,5.2v10.3h-2.7v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.6,0,4.6.7,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m785.55,85.15c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3.5-.2,1-.4,1.3-.7l.9,1.9h0Z" style="fill:#001e41; stroke-width:0px;"/><path d="m806.75,77.35h-16.5c.1,2,.9,3.7,2.4,5,1.4,1.3,3.2,1.9,5.4,1.9,1.2,0,2.3-.2,3.4-.7,1-.4,1.9-1.1,2.7-1.9l1.5,1.7c-.9,1-2,1.8-3.3,2.4-1.3.5-2.8.8-4.3.8-2,0-3.8-.4-5.4-1.3-1.6-.9-2.8-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.8-1.5,2-2.7,3.4-3.6,1.5-.8,3.1-1.3,4.9-1.3s3.5.4,4.9,1.3c1.4.8,2.6,2,3.4,3.5.8,1.5,1.2,3.2,1.2,5.2l-.1,1h0Zm-14.2-6.7c-1.3,1.2-2,2.8-2.2,4.7h14c-.2-1.9-.9-3.5-2.2-4.7s-2.9-1.8-4.8-1.8c-2,0-3.6.6-4.8,1.8" style="fill:#001e41; stroke-width:0px;"/><path d="m817.55,67.55c1.2-.7,2.8-1,4.6-1v2.6h-.6c-2.1,0-3.7.6-4.9,1.9s-1.8,3.1-1.8,5.3v10h-2.6v-19.6h2.5v3.9c.7-1.4,1.6-2.4,2.8-3.1" style="fill:#001e41; stroke-width:0px;"/><path d="m842.85,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9s-1.9,3-1.9,5.2v10.3h-2.7v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.6,0,4.6.7,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m865.05,68.45c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.4.8,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1s2.8-.3,3.9-1" style="fill:#001e41; stroke-width:0px;"/><path d="m884.65,85.15c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3.5-.2,1-.4,1.3-.7l.9,1.9h0Z" style="fill:#001e41; stroke-width:0px;"/><path d="m889.45,61.85c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6-.5,0-1-.2-1.4-.6m.1,4.9h2.7v19.7h-2.7v-19.7Z" style="fill:#001e41; stroke-width:0px;"/><path d="m902.55,85.25c-1.5-.9-2.7-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.8,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3s-3.6-.4-5.1-1.3m8.8-2c1.1-.6,2-1.5,2.6-2.7s.9-2.5.9-4-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7s-2.4-1-3.8-1-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7-.6,1.2-1,2.5-1,4s.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7s2.4,1,3.8,1c1.5,0,2.7-.4,3.8-1" style="fill:#001e41; stroke-width:0px;"/><path d="m938.95,68.75c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.2c0-2-.5-3.6-1.5-4.7s-2.5-1.6-4.4-1.6c-2.1,0-3.8.6-5,1.9s-1.9,3-1.9,5.2v10.3h-2.7v-19.6h2.5v3.6c.7-1.2,1.7-2.1,3-2.8,1.3-.7,2.8-1,4.5-1,2.6,0,4.5.7,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m961.15,68.45c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.4.8,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1s2.8-.3,3.9-1" style="fill:#001e41; stroke-width:0px;"/><rect x="970.45" y="58.65" width="2.7" height="27.8" style="fill:#001e41; stroke-width:0px;"/><path d="m997.65,77.35h-16.5c.1,2,.9,3.7,2.4,5,1.4,1.3,3.2,1.9,5.4,1.9,1.2,0,2.3-.2,3.4-.7,1-.4,1.9-1.1,2.7-1.9l1.5,1.7c-.9,1-2,1.8-3.3,2.4-1.3.5-2.8.8-4.3.8-2,0-3.8-.4-5.4-1.3-1.6-.9-2.8-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.8-1.5,2-2.7,3.4-3.6,1.5-.8,3.1-1.3,4.9-1.3s3.5.4,4.9,1.3c1.4.8,2.6,2,3.4,3.5.8,1.5,1.2,3.2,1.2,5.2l-.1,1h0Zm-14.3-6.7c-1.3,1.2-2,2.8-2.2,4.7h14c-.2-1.9-.9-3.5-2.2-4.7-1.3-1.2-2.9-1.8-4.8-1.8s-3.5.6-4.8,1.8" style="fill:#001e41; stroke-width:0px;"/><path d="m1037.05,58.65v27.8h-2.5v-3.9c-.8,1.3-1.9,2.3-3.2,3-1.3.7-2.8,1-4.4,1-1.8,0-3.5-.4-5-1.3-1.5-.8-2.7-2-3.5-3.6-.8-1.5-1.3-3.3-1.3-5.2s.4-3.7,1.3-5.2c.8-1.5,2-2.7,3.5-3.5s3.2-1.3,5-1.3c1.6,0,3,.3,4.3,1s2.3,1.6,3.2,2.9v-11.7h2.6Zm-6.2,24.6c1.1-.6,2-1.5,2.6-2.7s1-2.5,1-4-.3-2.8-1-4c-.6-1.2-1.5-2.1-2.6-2.7s-2.4-1-3.7-1c-1.4,0-2.6.3-3.8,1-1.1.6-2,1.5-2.6,2.7-.6,1.2-1,2.5-1,4s.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7s2.4,1,3.8,1c1.3,0,2.6-.4,3.7-1" style="fill:#001e41; stroke-width:0px;"/><path d="m1061.55,77.35h-16.5c.1,2,.9,3.7,2.4,5,1.4,1.3,3.2,1.9,5.4,1.9,1.2,0,2.3-.2,3.4-.7,1-.4,1.9-1.1,2.7-1.9l1.5,1.7c-.9,1-2,1.8-3.3,2.4-1.3.5-2.8.8-4.3.8-2,0-3.8-.4-5.4-1.3s-2.8-2.1-3.6-3.6c-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.8-1.5,2-2.7,3.4-3.6s3.1-1.3,4.9-1.3,3.5.4,4.9,1.3c1.4.8,2.6,2,3.4,3.5.8,1.5,1.2,3.2,1.2,5.2l-.1,1Zm-14.3-6.7c-1.3,1.2-2,2.8-2.2,4.7h14c-.2-1.9-.9-3.5-2.2-4.7-1.3-1.2-2.9-1.8-4.8-1.8s-3.5.6-4.8,1.8" style="fill:#001e41; stroke-width:0px;"/><polygon points="521.65 157.65 521.55 130.75 508.35 152.95 503.65 152.95 490.55 131.35 490.55 157.75 480.85 157.75 480.85 112.85 489.45 112.85 506.25 140.75 522.75 112.85 531.25 112.85 531.35 157.75 521.65 157.75 521.65 157.65" style="fill:#001e41; stroke-width:0px;"/><path d="m573.95,143.25h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2,0,.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2s-3.4-2-5.6-2c-2.3-.1-4.2.6-5.8,1.9m8.3-22.7h10.8l-11.6,9.2h-7.8l8.6-9.2Z" style="fill:#001e41; stroke-width:0px;"/><path d="m602.15,155.95c-1,.7-2.2,1.3-3.6,1.6-1.4.3-2.9.5-4.5.5-4.1,0-7.3-1-9.5-3.1s-3.4-5.2-3.4-9.2v-14.2h-5.3v-7.6h5.3v-8.4h10v8.4h8.6v7.7h-8.6v14c0,1.5.4,2.6,1.1,3.4.7.8,1.8,1.2,3.2,1.2,1.6,0,2.9-.4,4-1.3l2.7,7Z" style="fill:#001e41; stroke-width:0px;"/><path d="m621.25,123.95c2-.9,4.4-1.3,7-1.3v9.2c-1.1-.1-1.9-.1-2.2-.1-2.9,0-5.1.8-6.7,2.4-1.6,1.6-2.4,4-2.4,7.2v16.3h-10v-34.5h9.6v4.6c1-1.7,2.6-3,4.7-3.8" style="fill:#001e41; stroke-width:0px;"/><path d="m639.55,155.85c-2.9-1.5-5.1-3.6-6.8-6.3-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.5,2.4-9.2c1.6-2.7,3.9-4.8,6.8-6.3,2.9-1.5,6.1-2.3,9.8-2.3s6.9.8,9.7,2.3c2.9,1.5,5.1,3.6,6.7,6.3,1.6,2.7,2.4,5.8,2.4,9.2s-.8,6.5-2.4,9.2c-1.6,2.7-3.9,4.8-6.7,6.3-2.9,1.5-6.1,2.3-9.7,2.3s-6.9-.8-9.8-2.3m16.1-8.5c1.6-1.7,2.5-4.1,2.5-7s-.8-5.2-2.5-7c-1.6-1.7-3.7-2.6-6.3-2.6s-4.7.9-6.3,2.6c-1.7,1.7-2.5,4.1-2.5,7s.8,5.2,2.5,7,3.8,2.6,6.3,2.6,4.7-.9,6.3-2.6" style="fill:#001e41; stroke-width:0px;"/><rect x="673.95" y="110.05" width="10" height="47.6" style="fill:#001e41; stroke-width:0px;"/><path d="m698.95,155.85c-2.9-1.5-5.1-3.6-6.8-6.3-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.5,2.4-9.2c1.6-2.7,3.9-4.8,6.8-6.3,2.9-1.5,6.1-2.3,9.8-2.3s6.9.8,9.7,2.3c2.9,1.5,5.1,3.6,6.7,6.3,1.6,2.7,2.4,5.8,2.4,9.2s-.8,6.5-2.4,9.2c-1.6,2.7-3.9,4.8-6.7,6.3-2.9,1.5-6.1,2.3-9.7,2.3s-6.9-.8-9.8-2.3m16.1-8.5c1.6-1.7,2.5-4.1,2.5-7s-.8-5.2-2.5-7c-1.6-1.7-3.7-2.6-6.3-2.6s-4.7.9-6.3,2.6c-1.7,1.7-2.5,4.1-2.5,7s.8,5.2,2.5,7c1.7,1.7,3.8,2.6,6.3,2.6s4.6-.9,6.3-2.6" style="fill:#001e41; stroke-width:0px;"/><path d="m768.95,123.15v28.7c0,6.3-1.6,11-4.9,14.1-3.3,3.1-8.1,4.6-14.4,4.6-3.3,0-6.5-.4-9.5-1.2s-5.5-2-7.4-3.5l4-7.2c1.5,1.2,3.3,2.1,5.5,2.9,2.2.7,4.4,1.1,6.7,1.1,3.5,0,6-.8,7.7-2.3,1.6-1.6,2.5-3.9,2.5-7.1v-1.5c-2.6,2.9-6.2,4.3-10.9,4.3-3.2,0-6.1-.7-8.7-2.1-2.6-1.4-4.7-3.3-6.3-5.9-1.5-2.5-2.3-5.4-2.3-8.7s.8-6.2,2.3-8.7,3.6-4.5,6.3-5.9c2.6-1.4,5.5-2.1,8.7-2.1,5,0,8.8,1.6,11.4,4.9v-4.4h9.3Zm-12.4,22.3c1.7-1.6,2.5-3.6,2.5-6.1s-.8-4.6-2.5-6.1c-1.7-1.6-3.9-2.3-6.5-2.3s-4.8.8-6.5,2.3c-1.7,1.6-2.6,3.6-2.6,6.1s.9,4.6,2.6,6.1c1.7,1.6,3.9,2.3,6.5,2.3s4.8-.8,6.5-2.3" style="fill:#001e41; stroke-width:0px;"/><path d="m777.75,116.75c-1.2-1.1-1.7-2.4-1.7-4s.6-2.9,1.7-4c1.2-1.1,2.7-1.6,4.5-1.6s3.3.5,4.5,1.5,1.7,2.3,1.7,3.8c0,1.7-.6,3-1.7,4.1-1.2,1.1-2.6,1.6-4.5,1.6s-3.3-.4-4.5-1.4m-.5,6.4h10v34.5h-10v-34.5Z" style="fill:#001e41; stroke-width:0px;"/><path d="m829.25,143.25h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2-.1.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2s-3.4-2-5.6-2c-2.4-.1-4.3.6-5.8,1.9" style="fill:#001e41; stroke-width:0px;"/><polygon points="850.25 112.75 860.65 112.75 860.65 149.15 883.15 149.15 883.15 157.65 850.25 157.65 850.25 112.75" style="fill:#001e41; stroke-width:0px;"/><path d="m920.65,143.25h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2,0,.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2s-3.4-2-5.6-2c-2.3-.1-4.2.6-5.8,1.9m8.3-22.7h10.8l-11.6,9.2h-7.8l8.6-9.2Z" style="fill:#001e41; stroke-width:0px;"/><path d="m962.15,123.15v28.7c0,6.3-1.6,11-4.9,14.1-3.3,3.1-8.1,4.6-14.4,4.6-3.3,0-6.5-.4-9.5-1.2s-5.5-2-7.4-3.5l4-7.2c1.5,1.2,3.3,2.1,5.5,2.9,2.2.7,4.4,1.1,6.7,1.1,3.5,0,6-.8,7.7-2.3,1.6-1.6,2.5-3.9,2.5-7.1v-1.5c-2.6,2.9-6.2,4.3-10.9,4.3-3.2,0-6.1-.7-8.7-2.1-2.6-1.4-4.7-3.3-6.3-5.9-1.5-2.5-2.3-5.4-2.3-8.7s.8-6.2,2.3-8.7,3.6-4.5,6.3-5.9c2.6-1.4,5.5-2.1,8.7-2.1,5,0,8.8,1.6,11.4,4.9v-4.4h9.3Zm-12.4,22.3c1.7-1.6,2.5-3.6,2.5-6.1s-.8-4.6-2.5-6.1c-1.7-1.6-3.9-2.3-6.5-2.3s-4.8.8-6.5,2.3c-1.7,1.6-2.6,3.6-2.6,6.1s.9,4.6,2.6,6.1c1.7,1.6,3.9,2.3,6.5,2.3s4.8-.8,6.5-2.3" style="fill:#001e41; stroke-width:0px;"/><path d="m996.75,126.45c2.9,2.5,4.3,6.4,4.3,11.5v19.7h-9.4v-4.3c-1.9,3.2-5.4,4.8-10.5,4.8-2.6,0-4.9-.4-6.9-1.3-1.9-.9-3.4-2.1-4.5-3.7-1-1.6-1.5-3.4-1.5-5.4,0-3.2,1.2-5.7,3.6-7.6,2.4-1.8,6.1-2.8,11.2-2.8h7.9c0-2.2-.7-3.9-2-5-1.3-1.2-3.3-1.8-6-1.8-1.8,0-3.6.3-5.4.9s-3.3,1.4-4.5,2.3l-3.6-7c1.9-1.3,4.1-2.3,6.8-3.1,2.6-.7,5.3-1.1,8.1-1.1,5.4.1,9.5,1.3,12.4,3.9m-8.5,23.8c1.3-.8,2.3-2,2.8-3.5v-3.5h-6.9c-4.1,0-6.2,1.3-6.2,4,0,1.3.5,2.3,1.5,3s2.4,1.1,4.1,1.1c1.8.1,3.3-.3,4.7-1.1" style="fill:#001e41; stroke-width:0px;"/><rect x="1009.15" y="110.05" width="10" height="47.6" style="fill:#001e41; stroke-width:0px;"/><path d="m1061.05,143.25h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8s2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3,2.8-1.5,5.9-2.3,9.4-2.3s6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2-.1.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2s-3.4-2-5.6-2c-2.3-.1-4.2.6-5.8,1.9" style="fill:#001e41; stroke-width:0px;"/><rect x="475.45" y="195.25" width="587.8" height="3.1" style="fill:#004996; stroke-width:0px;"/><rect x="479.75" y="227.55" width="2.8" height="26.2" style="fill:#001e41; stroke-width:0px;"/><path d="m507.55,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.6.1,4.5.8,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m528.45,252.55c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3s1-.4,1.3-.7l.9,1.9h0Z" style="fill:#001e41; stroke-width:0px;"/><path d="m550.75,244.75h-16.5c.1,2,.9,3.7,2.4,5,1.4,1.3,3.2,1.9,5.4,1.9,1.2,0,2.3-.2,3.4-.7,1-.4,1.9-1.1,2.7-1.9l1.5,1.7c-.9,1-2,1.8-3.3,2.4-1.3.5-2.8.8-4.3.8-2,0-3.8-.4-5.4-1.3-1.6-.9-2.8-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.8-1.5,2-2.7,3.4-3.6,1.5-.8,3.1-1.3,4.9-1.3s3.5.4,4.9,1.3c1.4.8,2.6,2,3.4,3.5.8,1.5,1.2,3.2,1.2,5.2l-.1,1h0Zm-14.2-6.7c-1.3,1.2-2,2.8-2.2,4.7h14c-.2-1.9-.9-3.5-2.2-4.7s-2.9-1.8-4.8-1.8c-2-.1-3.6.6-4.8,1.8" style="fill:#001e41; stroke-width:0px;"/><path d="m562.65,234.95c1.2-.7,2.8-1,4.6-1v2.6h-.6c-2.1,0-3.7.6-4.9,1.9-1.2,1.3-1.8,3.1-1.8,5.3v10h-2.7v-19.7h2.5v3.9c.8-1.4,1.7-2.3,2.9-3" style="fill:#001e41; stroke-width:0px;"/><path d="m589.15,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.5.1,4.5.8,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m612.45,235.85c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.4.1,4.4.7,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1,1.5,0,2.8-.4,3.9-1" style="fill:#001e41; stroke-width:0px;"/><path d="m633.15,252.55c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3s1-.4,1.3-.7l.9,1.9h0Z" style="fill:#001e41; stroke-width:0px;"/><path d="m639.15,229.25c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6-.6-.1-1.1-.3-1.4-.6m0,4.8h2.7v19.7h-2.7v-19.7Z" style="fill:#001e41; stroke-width:0px;"/><path d="m653.25,252.65c-1.5-.9-2.7-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.8,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3s-3.6-.5-5.1-1.3m8.9-2c1.1-.6,2-1.5,2.6-2.7.6-1.2.9-2.5.9-4s-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7-1.1-.6-2.4-1-3.8-1s-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7s-1,2.5-1,4,.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7,1.1.6,2.4,1,3.8,1,1.4-.1,2.7-.4,3.8-1" style="fill:#001e41; stroke-width:0px;"/><path d="m690.85,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.5.1,4.5.8,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m714.15,235.85c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.4.1,4.4.7,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1,1.5,0,2.8-.4,3.9-1" style="fill:#001e41; stroke-width:0px;"/><rect x="724.55" y="225.95" width="2.7" height="27.8" style="fill:#001e41; stroke-width:0px;"/><path d="m758.85,252.25c-2.1-1.2-3.8-2.7-4.9-4.8-1.2-2-1.8-4.3-1.8-6.8s.6-4.8,1.8-6.8,2.8-3.6,4.9-4.8c2.1-1.2,4.5-1.7,7.1-1.7s4.9.6,7,1.7c2.1,1.1,3.7,2.7,4.9,4.8,1.2,2,1.8,4.3,1.8,6.8s-.6,4.8-1.8,6.8-2.8,3.6-4.9,4.8c-2.1,1.2-4.4,1.7-7,1.7s-5-.6-7.1-1.7m12.7-2.2c1.7-.9,3-2.2,3.9-3.9.9-1.7,1.4-3.5,1.4-5.6s-.5-3.9-1.4-5.6c-.9-1.7-2.3-3-3.9-3.9-1.7-.9-3.5-1.4-5.6-1.4s-3.9.5-5.6,1.4-3,2.2-4,3.9-1.4,3.5-1.4,5.6.5,3.9,1.4,5.6c1,1.7,2.3,3,4,3.9s3.6,1.4,5.6,1.4,3.9-.4,5.6-1.4" style="fill:#001e41; stroke-width:0px;"/><path d="m791.75,234.95c1.2-.7,2.8-1,4.6-1v2.6h-.6c-2.1,0-3.7.6-4.9,1.9-1.2,1.3-1.8,3.1-1.8,5.3v10h-2.7v-19.7h2.5v3.9c.7-1.4,1.6-2.3,2.9-3" style="fill:#001e41; stroke-width:0px;"/><path d="m820.25,234.05v17.3c0,3.3-.8,5.8-2.4,7.4-1.6,1.6-4.1,2.4-7.4,2.4-1.8,0-3.5-.3-5.2-.8-1.6-.5-3-1.3-4-2.2l1.3-2c.9.8,2.1,1.5,3.5,2s2.8.7,4.3.7c2.5,0,4.3-.6,5.5-1.7,1.2-1.2,1.8-3,1.8-5.4v-2.5c-.8,1.2-1.9,2.2-3.2,2.8s-2.8,1-4.4,1c-1.8,0-3.5-.4-5-1.2s-2.7-1.9-3.6-3.4c-.9-1.5-1.3-3.1-1.3-5s.4-3.5,1.3-4.9c.9-1.4,2-2.6,3.5-3.4,1.5-.8,3.2-1.2,5.1-1.2,1.7,0,3.2.3,4.5,1s2.4,1.6,3.3,2.9v-3.8h2.4Zm-6.2,15.7c1.1-.6,2-1.5,2.7-2.6.6-1.1,1-2.3,1-3.7s-.3-2.6-1-3.7c-.6-1.1-1.5-1.9-2.7-2.5-1.1-.6-2.4-.9-3.9-.9-1.4,0-2.7.3-3.8.9-1.1.6-2,1.4-2.7,2.5-.6,1.1-1,2.3-1,3.7s.3,2.6,1,3.7c.6,1.1,1.5,2,2.7,2.6,1.1.6,2.4.9,3.8.9s2.7-.3,3.9-.9" style="fill:#001e41; stroke-width:0px;"/><path d="m841.65,235.85c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.4.1,4.4.7,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1,1.5,0,2.8-.4,3.9-1" style="fill:#001e41; stroke-width:0px;"/><path d="m867.95,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.6.1,4.5.8,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m878.45,229.25c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6-.6-.1-1.1-.3-1.4-.6m0,4.8h2.7v19.7h-2.7v-19.7Z" style="fill:#001e41; stroke-width:0px;"/><polygon points="903.55 251.55 903.55 253.75 887.55 253.75 887.55 251.95 899.95 236.25 887.75 236.25 887.75 234.05 903.25 234.05 903.25 235.85 890.85 251.55 903.55 251.55" style="fill:#001e41; stroke-width:0px;"/><path d="m922.65,235.85c1.4,1.3,2.1,3.2,2.1,5.7v12.2h-2.5v-3.1c-.6,1-1.5,1.8-2.6,2.4-1.2.6-2.5.9-4.1.9-2.2,0-3.9-.5-5.2-1.6-1.3-1-1.9-2.4-1.9-4.2,0-1.7.6-3,1.8-4s3.1-1.5,5.8-1.5h6.2v-1.2c0-1.7-.5-3-1.4-3.9s-2.3-1.3-4.2-1.3c-1.2,0-2.4.2-3.6.6-1.1.4-2.1,1-3,1.7l-1.2-2c1-.8,2.2-1.5,3.6-2,1.4-.5,2.9-.7,4.4-.7,2.5.1,4.4.7,5.8,2m-3,15c1.1-.7,1.9-1.7,2.4-3v-3.2h-6.2c-3.4,0-5.1,1.2-5.1,3.5,0,1.1.4,2.1,1.3,2.7.9.7,2.1,1,3.7,1s2.9-.4,3.9-1" style="fill:#001e41; stroke-width:0px;"/><path d="m943.45,252.55c-.5.4-1.1.8-1.8,1s-1.5.4-2.3.4c-1.8,0-3.3-.5-4.3-1.5s-1.5-2.4-1.5-4.2v-11.9h-3.5v-2.2h3.5v-4.3h2.7v4.3h6v2.2h-6v11.7c0,1.2.3,2.1.9,2.7.6.6,1.4.9,2.5.9.5,0,1.1-.1,1.6-.3s1-.4,1.3-.7l.9,1.9h0Z" style="fill:#001e41; stroke-width:0px;"/><path d="m949.35,229.25c-.4-.4-.6-.8-.6-1.3s.2-.9.6-1.3c.4-.4.8-.6,1.4-.6.5,0,1,.2,1.4.5.4.4.6.8.6,1.3s-.2,1-.6,1.4c-.4.4-.8.6-1.4.6-.6-.1-1-.3-1.4-.6m0,4.8h2.7v19.7h-2.7v-19.7Z" style="fill:#001e41; stroke-width:0px;"/><path d="m963.45,252.65c-1.5-.9-2.7-2.1-3.6-3.6-.9-1.5-1.3-3.2-1.3-5.2s.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.8,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3-1.8,0-3.6-.5-5.1-1.3m8.9-2c1.1-.6,2-1.5,2.6-2.7.6-1.2.9-2.5.9-4s-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7-1.1-.6-2.4-1-3.8-1s-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7-.6,1.2-1,2.5-1,4s.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7,1.1.6,2.4,1,3.8,1,1.4-.1,2.7-.4,3.8-1" style="fill:#001e41; stroke-width:0px;"/><path d="m1001.05,236.05c1.5,1.4,2.2,3.5,2.2,6.3v11.4h-2.7v-11.1c0-2-.5-3.6-1.5-4.7-1-1.1-2.5-1.6-4.4-1.6-2.1,0-3.8.6-5,1.9-1.2,1.3-1.9,3-1.9,5.2v10.3h-2.7v-19.7h2.5v3.6c.7-1.2,1.7-2.1,3-2.8s2.8-1,4.5-1c2.6.1,4.5.8,6,2.2" style="fill:#001e41; stroke-width:0px;"/><path d="m1032.65,252.65c-1.5-.9-2.7-2.1-3.6-3.6s-1.3-3.2-1.3-5.2.4-3.6,1.3-5.2c.9-1.5,2.1-2.7,3.6-3.6,1.5-.8,3.2-1.3,5.1-1.3s3.6.4,5.1,1.3c1.5.9,2.7,2,3.6,3.6.9,1.5,1.3,3.2,1.3,5.2s-.4,3.6-1.3,5.2c-.9,1.5-2,2.7-3.6,3.6-1.5.9-3.2,1.3-5.1,1.3s-3.6-.5-5.1-1.3m8.9-2c1.1-.6,2-1.5,2.6-2.7.6-1.2.9-2.5.9-4s-.3-2.8-.9-4c-.6-1.2-1.5-2.1-2.6-2.7-1.1-.6-2.4-1-3.8-1s-2.6.3-3.8,1c-1.1.6-2,1.5-2.6,2.7s-1,2.5-1,4,.3,2.8,1,4c.6,1.2,1.5,2.1,2.6,2.7s2.4,1,3.8,1c1.4-.1,2.7-.4,3.8-1" style="fill:#001e41; stroke-width:0px;"/><path d="m1058.25,228.95c-.6.6-.9,1.5-.9,2.8v2.3h6.1v2.2h-6v17.4h-2.7v-17.4h-3.5v-2.2h3.5v-2.4c0-1.8.5-3.2,1.6-4.3,1-1,2.5-1.6,4.4-1.6.7,0,1.5.1,2.2.3s1.3.5,1.8.9l-.9,2c-.8-.6-1.7-1-2.9-1-1.3.1-2.1.4-2.7,1" style="fill:#001e41; stroke-width:0px;"/><polygon points="480.85 280.15 491.25 280.15 491.25 316.55 513.75 316.55 513.75 325.05 480.85 325.05 480.85 280.15" style="fill:#001e41; stroke-width:0px;"/><path d="m554.75,310.55h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2-.1.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2-1.5-1.3-3.4-2-5.6-2-2.4,0-4.3.6-5.8,1.9" style="fill:#001e41; stroke-width:0px;"/><path d="m599.75,290.45v28.7c0,6.3-1.6,11-4.9,14.1-3.3,3.1-8.1,4.6-14.4,4.6-3.3,0-6.5-.4-9.5-1.2-3-.8-5.5-2-7.4-3.5l4-7.2c1.5,1.2,3.3,2.1,5.5,2.9,2.2.7,4.4,1.1,6.7,1.1,3.5,0,6-.8,7.7-2.3,1.6-1.6,2.5-3.9,2.5-7.1v-1.5c-2.6,2.9-6.2,4.3-10.9,4.3-3.2,0-6.1-.7-8.7-2.1-2.6-1.4-4.7-3.3-6.3-5.9-1.5-2.5-2.3-5.4-2.3-8.7s.8-6.2,2.3-8.7,3.6-4.5,6.3-5.9c2.6-1.4,5.5-2.1,8.7-2.1,5,0,8.8,1.6,11.4,4.9v-4.4h9.3Zm-12.4,22.3c1.7-1.6,2.5-3.6,2.5-6.1s-.8-4.6-2.5-6.1c-1.7-1.6-3.9-2.3-6.5-2.3s-4.8.8-6.5,2.3c-1.7,1.6-2.6,3.6-2.6,6.1s.9,4.6,2.6,6.1c1.7,1.6,3.9,2.3,6.5,2.3s4.8-.7,6.5-2.3" style="fill:#001e41; stroke-width:0px;"/><path d="m637.85,293.75c2.9,2.5,4.3,6.4,4.3,11.5v19.7h-9.4v-4.3c-1.9,3.2-5.4,4.8-10.5,4.8-2.6,0-4.9-.4-6.9-1.3-1.9-.9-3.4-2.1-4.5-3.7-1-1.6-1.5-3.4-1.5-5.4,0-3.2,1.2-5.7,3.6-7.6,2.4-1.8,6.1-2.8,11.2-2.8h7.9c0-2.2-.7-3.9-2-5-1.3-1.2-3.3-1.8-6-1.8-1.8,0-3.6.3-5.4.9-1.8.6-3.3,1.4-4.5,2.3l-3.6-7c1.9-1.3,4.1-2.3,6.8-3.1,2.6-.7,5.3-1.1,8.1-1.1,5.4.1,9.5,1.4,12.4,3.9m-8.5,23.8c1.3-.8,2.3-2,2.8-3.5v-3.5h-6.9c-4.1,0-6.2,1.3-6.2,4,0,1.3.5,2.3,1.5,3s2.4,1.1,4.1,1.1c1.8.1,3.4-.3,4.7-1.1" style="fill:#001e41; stroke-width:0px;"/><rect x="653.75" y="277.45" width="10" height="47.5" style="fill:#001e41; stroke-width:0px;"/><polygon points="745.75 324.95 745.65 298.05 732.45 320.25 727.75 320.25 714.65 298.65 714.65 324.95 704.95 324.95 704.95 280.05 713.55 280.05 730.35 307.95 746.85 280.05 755.35 280.05 755.45 324.95 745.75 324.95" style="fill:#001e41; stroke-width:0px;"/><path d="m801.65,310.55h-26.1c.5,2.1,1.6,3.8,3.3,5.1,1.8,1.2,3.9,1.9,6.5,1.9,1.8,0,3.4-.3,4.8-.8,1.4-.5,2.7-1.4,3.9-2.5l5.3,5.8c-3.2,3.7-8,5.6-14.2,5.6-3.9,0-7.3-.8-10.3-2.3s-5.3-3.6-6.9-6.3c-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.4,2.4-9.1c1.6-2.7,3.8-4.8,6.6-6.3s5.9-2.3,9.4-2.3,6.4.7,9.2,2.2c2.7,1.5,4.9,3.5,6.4,6.3,1.6,2.7,2.3,5.9,2.3,9.5,0-.2-.1.7-.2,2.4m-23.4-11.1c-1.5,1.3-2.5,3-2.8,5.3h17c-.3-2.2-1.3-3.9-2.8-5.2-1.5-1.3-3.4-2-5.6-2-2.4,0-4.3.6-5.8,1.9" style="fill:#001e41; stroke-width:0px;"/><path d="m833.25,323.35c-1,.7-2.2,1.3-3.6,1.6-1.4.3-2.9.5-4.5.5-4.1,0-7.3-1-9.5-3.1s-3.4-5.2-3.4-9.2v-14.2h-5.3v-7.7h5.3v-8.4h10v8.4h8.6v7.7h-8.6v14c0,1.5.4,2.6,1.1,3.4.7.8,1.8,1.2,3.2,1.2,1.6,0,2.9-.4,4-1.3l2.7,7.1Z" style="fill:#001e41; stroke-width:0px;"/><path d="m855.85,291.25c2-.9,4.4-1.3,7-1.3v9.2c-1.1-.1-1.9-.1-2.2-.1-2.9,0-5.1.8-6.7,2.4-1.6,1.6-2.4,4-2.4,7.2v16.3h-10v-34.5h9.6v4.6c1.1-1.7,2.7-2.9,4.7-3.8" style="fill:#001e41; stroke-width:0px;"/><path d="m877.75,323.25c-2.9-1.5-5.1-3.6-6.8-6.3-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.5,2.4-9.2c1.6-2.7,3.9-4.8,6.8-6.3,2.9-1.5,6.1-2.3,9.8-2.3s6.9.8,9.7,2.3c2.9,1.5,5.1,3.6,6.7,6.3,1.6,2.7,2.4,5.8,2.4,9.2s-.8,6.5-2.4,9.2c-1.6,2.7-3.9,4.8-6.7,6.3-2.9,1.5-6.1,2.3-9.7,2.3s-6.9-.8-9.8-2.3m16.1-8.5c1.6-1.7,2.5-4.1,2.5-7s-.8-5.2-2.5-7c-1.6-1.7-3.7-2.6-6.3-2.6s-4.7.9-6.3,2.6c-1.7,1.7-2.5,4.1-2.5,7s.8,5.2,2.5,7c1.7,1.7,3.8,2.6,6.3,2.6,2.6-.1,4.7-.9,6.3-2.6" style="fill:#001e41; stroke-width:0px;"/><rect x="915.65" y="277.45" width="10" height="47.5" style="fill:#001e41; stroke-width:0px;"/><path d="m944.15,323.25c-2.9-1.5-5.1-3.6-6.8-6.3-1.6-2.7-2.4-5.7-2.4-9.2s.8-6.5,2.4-9.2c1.6-2.7,3.9-4.8,6.8-6.3,2.9-1.5,6.1-2.3,9.8-2.3s6.9.8,9.7,2.3c2.9,1.5,5.1,3.6,6.7,6.3,1.6,2.7,2.4,5.8,2.4,9.2s-.8,6.5-2.4,9.2c-1.6,2.7-3.9,4.8-6.7,6.3-2.9,1.5-6.1,2.3-9.7,2.3s-6.9-.8-9.8-2.3m16.1-8.5c1.6-1.7,2.5-4.1,2.5-7s-.8-5.2-2.5-7c-1.6-1.7-3.7-2.6-6.3-2.6s-4.7.9-6.3,2.6c-1.7,1.7-2.5,4.1-2.5,7s.8,5.2,2.5,7c1.7,1.7,3.8,2.6,6.3,2.6,2.6-.1,4.7-.9,6.3-2.6" style="fill:#001e41; stroke-width:0px;"/><path d="m1017.75,290.45v28.7c0,6.3-1.6,11-4.9,14.1-3.3,3.1-8.1,4.6-14.4,4.6-3.3,0-6.5-.4-9.5-1.2-3-.8-5.5-2-7.4-3.5l4-7.2c1.5,1.2,3.3,2.1,5.5,2.9,2.2.7,4.4,1.1,6.7,1.1,3.5,0,6-.8,7.7-2.3,1.6-1.6,2.5-3.9,2.5-7.1v-1.5c-2.6,2.9-6.2,4.3-10.9,4.3-3.2,0-6.1-.7-8.7-2.1-2.6-1.4-4.7-3.3-6.3-5.9-1.5-2.5-2.3-5.4-2.3-8.7s.8-6.2,2.3-8.7,3.6-4.5,6.3-5.9c2.6-1.4,5.5-2.1,8.7-2.1,5,0,8.8,1.6,11.4,4.9v-4.4h9.3Zm-12.4,22.3c1.7-1.6,2.5-3.6,2.5-6.1s-.8-4.6-2.5-6.1c-1.7-1.6-3.9-2.3-6.5-2.3s-4.8.8-6.5,2.3c-1.7,1.6-2.6,3.6-2.6,6.1s.9,4.6,2.6,6.1c1.7,1.6,3.9,2.3,6.5,2.3s4.8-.7,6.5-2.3" style="fill:#001e41; stroke-width:0px;"/><path d="m1063.85,290.45l-15.6,36.6c-1.6,4-3.5,6.8-5.9,8.4-2.3,1.6-5.1,2.4-8.4,2.4-1.8,0-3.6-.3-5.3-.8-1.8-.6-3.2-1.3-4.3-2.3l3.7-7.1c.8.7,1.7,1.2,2.7,1.6s2,.6,3,.6c1.4,0,2.5-.3,3.3-1,.9-.7,1.6-1.8,2.3-3.3l.1-.3-14.9-34.8h10.3l9.7,23.4,9.7-23.4h9.6Z" style="fill:#001e41; stroke-width:0px;"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-392c8297-f600-40b0-8154-0463046a40c3" xmlns="http://www.w3.org/2000/svg" width="400" height="350" viewBox="0 0 400 350"><path d="m197.45,339.95c-91,0-165-74-165-165S106.45,9.95,197.45,9.95s165,74,165,165-74,165-165,165m-83.7-26.9c24.4,14.9,53.1,23.5,83.8,23.5s59.5-8.6,84-23.6c-14.4-16.2-45.6-26.3-82.4-26.6h-1.2c-36.9,0-69.5,10.4-84.2,26.7m-3.5-273.9c-44.7,28.8-74.3,78.9-74.3,135.9s29.9,107.5,74.8,136.2c15.3-17.6,48.4-28.3,87.1-28.3h1.3c38.1.2,70.5,11,85.3,28.1,44.8-28.7,74.6-79,74.6-136.1s-29.5-106.9-74-135.7c-14.6,17.5-47.3,28.5-85.8,28.8-40,.2-73.8-10.8-89-28.9m2.9-1.9c14.5,16.7,47.4,27.4,84.8,27.4h1.2c37.3-.2,68.8-10.6,82.9-27.2-24.6-15.2-53.6-24-84.6-24s-59.7,8.7-84.3,23.8" style="fill:#61b4ff; stroke-width:0px;"/><path d="m49.55,226.55c27.6,0,43.4-25.5,43.4-51,0-23-20.1-46.3-43.4-46.3S6.05,152.55,6.05,175.55c0,25.5,15.9,51,43.5,51m22.9-35.4c0,5.4-.1,10.7-1.4,15.6-2.5,9.6-8.2,16.3-21.5,16.3s-19-6.7-21.5-16.3c-1.3-4.9-1.5-10.2-1.5-15.6v-30.4c0-5,.8-9.8,2.1-13.9,2.5-8.5,8.5-14.1,20.9-14.1s18,5.6,20.8,14.1c1.4,4.2,2.1,8.9,2.1,13.9,0,0,0,30.4,0,30.4Z" style="fill:#fff; stroke-width:0px;"/><polygon points="149.75 134.85 163.55 134.85 163.55 131.35 118.15 131.35 118.15 134.85 131.95 134.85 131.95 220.95 118.15 220.95 118.15 224.45 163.55 224.45 163.55 220.95 149.75 220.95 149.75 134.85" style="fill:#fff; stroke-width:0px;"/><polygon points="281.55 134.85 295.35 134.85 295.35 131.35 260.15 131.35 239.95 195.05 220.35 131.35 184.45 131.35 184.45 134.85 198.25 134.85 198.25 220.95 184.45 220.95 184.45 224.45 216.25 224.45 216.25 220.95 202.65 220.95 202.65 137.15 202.95 137.15 230.75 224.45 235.45 224.45 263.35 137.15 263.75 137.15 263.75 220.95 249.95 220.95 249.95 224.45 295.35 224.45 295.35 220.95 281.55 220.95 281.55 134.85" style="fill:#fff; stroke-width:0px;"/><path d="m392.55,224.45l1.4-31.4h-4.3c-.6,16-6.8,27.9-24.5,27.9h-18.3v-86.2h14.5v-3.5h-46.1v3.5h13.8v86.2h-13.8v3.5h77.3Z" style="fill:#fff; stroke-width:0px;"/><path d="m198.15,340.05h-.2v-2h-.2v1.9c-51.3,0-90.7-40.8-105.5-109l3.4-.7c13,59.8,45.2,98,87.5,105.1-25.2-17-34.5-76.5-37.5-104.5l3.4-.4c7,64.8,24.5,104.1,47.1,106l.1-106.3h3.4l-.2,106.4c23.1-1.7,40.8-41.3,47.5-106.6l3.4.4c-5.8,56-19.2,92.8-37.8,105.2,42.4-7.1,74.6-45.5,87.6-105.8l3.4.7c-14.8,68.6-54.2,109.6-105.4,109.6m49.3-212.9c-6.4-68-24.6-110.8-47.9-112.9l-.1,112.7h-3.4l.1-112.8c-23.7,2-42.1,44.9-48.2,112.9l-3.4-.3c5.3-59,19.4-98.7,38.9-111.6-44.2,7.1-77,47.6-89.2,111.5l-3.4-.6C104.65,53.65,144.55,10.55,197.65,10.55h.2v.1c53.3.1,93.3,43.2,107,115.5l-3.4.6c-12.1-63.9-45-104.5-89.5-111.6,19.3,12.9,33.4,52.6,38.9,111.6l-3.4.4h0Z" style="fill:#61b4ff; stroke-width:0px;"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-471777a6-cce6-451e-9dcd-006395a31ab3" xmlns="http://www.w3.org/2000/svg" width="400" height="350" viewBox="0 0 400 350"><path d="m197.45,339.95c-91,0-165-74-165-165S106.45,9.95,197.45,9.95s165,74,165,165-74,165-165,165m-83.7-26.9c24.4,14.9,53.1,23.5,83.8,23.5s59.5-8.6,84-23.6c-14.4-16.2-45.6-26.3-82.4-26.6h-1.2c-36.9,0-69.5,10.4-84.2,26.7m-3.5-273.9c-44.7,28.8-74.3,78.9-74.3,135.9s29.9,107.5,74.8,136.2c15.3-17.6,48.4-28.3,87.1-28.3h1.3c38.1.2,70.5,11,85.3,28.1,44.8-28.7,74.6-79,74.6-136.1s-29.5-106.9-74-135.7c-14.6,17.5-47.3,28.5-85.8,28.8-40,.2-73.8-10.8-89-28.9m2.9-1.9c14.5,16.7,47.4,27.4,84.8,27.4h1.2c37.3-.2,68.8-10.6,82.9-27.2-24.6-15.2-53.6-24-84.6-24s-59.7,8.7-84.3,23.8" style="fill:#004996; stroke-width:0px;"/><path d="m49.55,226.55c27.6,0,43.4-25.5,43.4-51,0-23-20.1-46.3-43.4-46.3S6.05,152.55,6.05,175.55c0,25.5,15.9,51,43.5,51m22.9-35.4c0,5.4-.1,10.7-1.4,15.6-2.5,9.6-8.2,16.3-21.5,16.3s-19-6.7-21.5-16.3c-1.3-4.9-1.5-10.2-1.5-15.6v-30.4c0-5,.8-9.8,2.1-13.9,2.5-8.5,8.5-14.1,20.9-14.1s18,5.6,20.8,14.1c1.4,4.2,2.1,8.9,2.1,13.9,0,0,0,30.4,0,30.4Z" style="fill:#1d1d1b; fill-rule:evenodd; stroke-width:0px;"/><polygon points="149.75 134.85 163.55 134.85 163.55 131.35 118.15 131.35 118.15 134.85 131.95 134.85 131.95 220.95 118.15 220.95 118.15 224.45 163.55 224.45 163.55 220.95 149.75 220.95 149.75 134.85" style="fill:#1d1d1b; stroke-width:0px;"/><polygon points="281.55 134.85 295.35 134.85 295.35 131.35 260.15 131.35 239.95 195.05 220.35 131.35 184.45 131.35 184.45 134.85 198.25 134.85 198.25 220.95 184.45 220.95 184.45 224.45 216.25 224.45 216.25 220.95 202.65 220.95 202.65 137.15 202.95 137.15 230.75 224.45 235.45 224.45 263.35 137.15 263.75 137.15 263.75 220.95 249.95 220.95 249.95 224.45 295.35 224.45 295.35 220.95 281.55 220.95 281.55 134.85" style="fill:#1d1d1b; stroke-width:0px;"/><path d="m392.55,224.45l1.4-31.4h-4.3c-.6,16-6.8,27.9-24.5,27.9h-18.3v-86.2h14.5v-3.5h-46.1v3.5h13.8v86.2h-13.8v3.5h77.3Z" style="fill:#1d1d1b; stroke-width:0px;"/><path d="m198.15,340.05h-.2v-2h-.2v1.9c-51.3,0-90.7-40.8-105.5-109l3.4-.7c13,59.8,45.2,98,87.5,105.1-25.2-17-34.5-76.5-37.5-104.5l3.4-.4c7,64.8,24.5,104.1,47.1,106l.1-106.3h3.4l-.2,106.4c23.1-1.7,40.8-41.3,47.5-106.6l3.4.4c-5.8,56-19.2,92.8-37.8,105.2,42.4-7.1,74.6-45.5,87.6-105.8l3.4.7c-14.8,68.6-54.2,109.6-105.4,109.6m49.3-212.9c-6.4-68-24.6-110.8-47.9-112.9l-.1,112.7h-3.4l.1-112.8c-23.7,2-42.1,44.9-48.2,112.9l-3.4-.3c5.3-59,19.4-98.7,38.9-111.6-44.2,7.1-77,47.6-89.2,111.5l-3.4-.6C104.65,53.65,144.55,10.55,197.65,10.55h.2v.1c53.3.1,93.3,43.2,107,115.5l-3.4.6c-12.1-63.9-45-104.5-89.5-111.6,19.3,12.9,33.4,52.6,38.9,111.6l-3.4.4h0Z" style="fill:#004996; stroke-width:0px;"/></svg>
|
data/data/logos/oiml-logo.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-18fdc505-5211-448b-be70-44ec1c4f262f" xmlns="http://www.w3.org/2000/svg" width="400" height="350" viewBox="0 0 400 350"><path d="m197.45,339.95c-91,0-165-74-165-165S106.45,9.95,197.45,9.95s165,74,165,165-74,165-165,165m-83.7-26.9c24.4,14.9,53.1,23.5,83.8,23.5s59.5-8.6,84-23.6c-14.4-16.2-45.6-26.3-82.4-26.6h-1.2c-36.9,0-69.5,10.4-84.2,26.7m-3.5-273.9c-44.7,28.8-74.3,78.9-74.3,135.9s29.9,107.5,74.8,136.2c15.3-17.6,48.4-28.3,87.1-28.3h1.3c38.1.2,70.5,11,85.3,28.1,44.8-28.7,74.6-79,74.6-136.1s-29.5-106.9-74-135.7c-14.6,17.5-47.3,28.5-85.8,28.8-40,.2-73.8-10.8-89-28.9m2.9-1.9c14.5,16.7,47.4,27.4,84.8,27.4h1.2c37.3-.2,68.8-10.6,82.9-27.2-24.6-15.2-53.6-24-84.6-24s-59.7,8.7-84.3,23.8" style="fill:#004996; stroke-width:0px;"/><path d="m49.55,226.55c27.6,0,43.4-25.5,43.4-51,0-23-20.1-46.3-43.4-46.3S6.05,152.55,6.05,175.55c0,25.5,15.9,51,43.5,51m22.9-35.4c0,5.4-.1,10.7-1.4,15.6-2.5,9.6-8.2,16.3-21.5,16.3s-19-6.7-21.5-16.3c-1.3-4.9-1.5-10.2-1.5-15.6v-30.4c0-5,.8-9.8,2.1-13.9,2.5-8.5,8.5-14.1,20.9-14.1s18,5.6,20.8,14.1c1.4,4.2,2.1,8.9,2.1,13.9v30.4Z" style="fill:#1d1d1b; fill-rule:evenodd; stroke-width:0px;"/><polygon points="149.75 134.85 163.55 134.85 163.55 131.35 118.15 131.35 118.15 134.85 131.95 134.85 131.95 220.95 118.15 220.95 118.15 224.45 163.55 224.45 163.55 220.95 149.75 220.95 149.75 134.85" style="fill:#1d1d1b; stroke-width:0px;"/><polygon points="281.55 134.85 295.35 134.85 295.35 131.35 260.15 131.35 239.95 195.05 220.35 131.35 184.45 131.35 184.45 134.85 198.25 134.85 198.25 220.95 184.45 220.95 184.45 224.45 216.25 224.45 216.25 220.95 202.65 220.95 202.65 137.15 202.95 137.15 230.75 224.45 235.45 224.45 263.35 137.15 263.75 137.15 263.75 220.95 249.95 220.95 249.95 224.45 295.35 224.45 295.35 220.95 281.55 220.95 281.55 134.85" style="fill:#1d1d1b; stroke-width:0px;"/><path d="m392.55,224.45l1.4-31.4h-4.3c-.6,16-6.8,27.9-24.5,27.9h-18.3v-86.2h14.5v-3.5h-46.1v3.5h13.8v86.2h-13.8v3.5h77.3Z" style="fill:#1d1d1b; stroke-width:0px;"/><path d="m198.15,340.05h-.2v-2h-.2v1.9c-51.3,0-90.7-40.8-105.5-109l3.4-.7c13,59.8,45.2,98,87.5,105.1-25.2-17-34.5-76.5-37.5-104.5l3.4-.4c7,64.8,24.5,104.1,47.1,106l.1-106.3h3.4l-.2,106.4c23.1-1.7,40.8-41.3,47.5-106.6l3.4.4c-5.8,56-19.2,92.8-37.8,105.2,42.4-7.1,74.6-45.5,87.6-105.8l3.4.7c-14.8,68.6-54.2,109.6-105.4,109.6m49.3-212.9c-6.4-68-24.6-110.8-47.9-112.9l-.1,112.7h-3.4l.1-112.8c-23.7,2-42.1,44.9-48.2,112.9l-3.4-.3c5.3-59,19.4-98.7,38.9-111.6-44.2,7.1-77,47.6-89.2,111.5l-3.4-.6C104.65,53.65,144.55,10.55,197.65,10.55h.2v.1c53.3.1,93.3,43.2,107,115.5l-3.4.6c-12.1-63.9-45-104.5-89.5-111.6,19.3,12.9,33.4,52.6,38.9,111.6l-3.4.4Z" style="fill:#004996; stroke-width:0px;"/></svg>
|
data/data/themes/oiml.yaml
DELETED
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
primary: "#004996"
|
|
2
|
-
accent: "#194780"
|
|
3
|
-
accent_deep: "#003a78"
|
|
4
|
-
gradient: "linear-gradient(135deg, #002d5a 0%, #004996 50%, #1a6bcc 100%)"
|
|
5
|
-
primary_light: "#edf3fa"
|
|
6
|
-
accent_light: "#e0ecf8"
|
|
7
|
-
warm: "#d4a017"
|
|
8
|
-
warm_light: "#fdf6e8"
|
|
9
|
-
font_body: "'Futura PT Book', 'Montserrat', 'Helvetica Neue', Arial, sans-serif"
|
|
10
|
-
font_sans: "'Futura PT Demi', 'Montserrat', 'Helvetica Neue', Arial, sans-serif"
|
|
11
|
-
font_mono: '"JetBrains Mono", "Fira Code", monospace'
|
|
12
|
-
font_url: "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap"
|
|
13
|
-
header_background: "linear-gradient(135deg, #002d5a 0%, #004996 50%, #1a6bcc 100%)"
|
|
14
|
-
cover_background: "linear-gradient(175deg, #001a3a 0%, #002d5a 25%, #004996 55%, #1a6bcc 85%, #d4a017 100%)"
|
|
15
|
-
cover_before_bg: "background: radial-gradient(ellipse at 25% 20%, rgba(26,107,204,0.15) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(0,73,150,0.2) 0%, transparent 40%)"
|
|
16
|
-
cover_after_bg: "height: 3px; background: linear-gradient(90deg, transparent, #d4a017, transparent)"
|
|
17
|
-
progress_bar_color: "#004996"
|
|
18
|
-
note_border: "#1a6bcc"
|
|
19
|
-
note_bg: "#e0ecf8"
|
|
20
|
-
note_color: "#1a6bcc"
|
|
21
|
-
example_border: "#004996"
|
|
22
|
-
example_bg: "#edf3fa"
|
|
23
|
-
example_color: "#004996"
|
|
24
|
-
admonition_border: "#d4a017"
|
|
25
|
-
admonition_color: "#d4a017"
|
|
26
|
-
footer_border_color: "#004996"
|
|
27
|
-
cover_separator_color: "rgba(0,73,150,0.25)"
|
|
28
|
-
|
|
29
|
-
# Publisher metadata
|
|
30
|
-
publishers:
|
|
31
|
-
- "OIML"
|
|
32
|
-
publisher_name: "OIML"
|
|
33
|
-
logos_light:
|
|
34
|
-
OIML: "oiml-logo-icon-light.svg"
|
|
35
|
-
logos_dark:
|
|
36
|
-
OIML: "oiml-logo-icon-dark.svg"
|
|
37
|
-
|
|
38
|
-
# Doctype labels (OIML uses doc ID prefix to determine type)
|
|
39
|
-
doctype_labels:
|
|
40
|
-
"R": "International Recommendation"
|
|
41
|
-
"G": "International Guide"
|
|
42
|
-
"D": "International Document"
|
|
43
|
-
"B": "International Basic Publication"
|
|
44
|
-
"E": "Expert Report"
|
|
45
|
-
"V": "Vocabulary"
|
|
46
|
-
"S": "Seminar Report"
|
|
47
|
-
|
|
48
|
-
# Section ordering
|
|
49
|
-
preface_order:
|
|
50
|
-
- foreword
|
|
51
|
-
- introduction
|
|
52
|
-
- abstract
|
|
53
|
-
- clause
|
|
54
|
-
- acknowledgements
|
|
55
|
-
- executivesummary
|
|
56
|
-
toc_filter_types: []
|
data/docs/html-renderer.adoc
DELETED
|
@@ -1,261 +0,0 @@
|
|
|
1
|
-
= HTML Renderer Architecture
|
|
2
|
-
|
|
3
|
-
== Overview
|
|
4
|
-
|
|
5
|
-
The HTML renderer converts a Metanorma document model (parsed from presentation XML) into a complete, self-contained HTML document. It produces all body content, header, footer, table of contents, CSS theming, and JavaScript interactivity.
|
|
6
|
-
|
|
7
|
-
== Pipeline
|
|
8
|
-
|
|
9
|
-
....
|
|
10
|
-
Generator.generate(doc)
|
|
11
|
-
├── Auto-selects renderer by document class
|
|
12
|
-
├── Renderer.new
|
|
13
|
-
└── renderer.generate_full_document(doc)
|
|
14
|
-
├── Header (publisher logos, document title)
|
|
15
|
-
├── ToC sidebar
|
|
16
|
-
├── Body content (recursive render)
|
|
17
|
-
├── Footnotes
|
|
18
|
-
├── Footer (copyright)
|
|
19
|
-
└── Asset pipeline (inline CSS + JS)
|
|
20
|
-
....
|
|
21
|
-
|
|
22
|
-
== Renderer Hierarchy
|
|
23
|
-
|
|
24
|
-
[source,ruby]
|
|
25
|
-
BaseRenderer # Core HTML rendering, document assembly, CSS/JS pipeline
|
|
26
|
-
└── StandardRenderer # Terms, definitions, annexes, bibliography
|
|
27
|
-
├── IsoRenderer # ISO cover page, copyright, title formatting
|
|
28
|
-
│ ├── IccRenderer # ICC publisher styling
|
|
29
|
-
│ └── PdfaRenderer # PDF Association publisher styling
|
|
30
|
-
├── IecRenderer # IEC-specific formatting
|
|
31
|
-
├── IeeeRenderer # IEEE-specific formatting
|
|
32
|
-
├── IetfRenderer # IETF-specific formatting
|
|
33
|
-
├── IhoRenderer # IHO-specific formatting
|
|
34
|
-
├── ItuRenderer # ITU-specific formatting
|
|
35
|
-
├── OgcRenderer # OGC-specific formatting
|
|
36
|
-
├── OimlRenderer # OIML-specific formatting
|
|
37
|
-
├── BipmRenderer # BIPM-specific formatting
|
|
38
|
-
├── CcRenderer # CC-specific formatting
|
|
39
|
-
└── RiboseRenderer # Ribose-specific formatting
|
|
40
|
-
|
|
41
|
-
=== Renderer Selection
|
|
42
|
-
|
|
43
|
-
The `Generator` uses a two-tier lookup:
|
|
44
|
-
|
|
45
|
-
1. **Taste match**: If the document's publisher matches a registered taste, use that renderer.
|
|
46
|
-
2. **Model class**: Walk the ancestor chain from most specific to `BaseRenderer`.
|
|
47
|
-
|
|
48
|
-
[source,ruby]
|
|
49
|
-
# ICC documents are IsoDocument::Root but use IccRenderer
|
|
50
|
-
Metanorma::Html::Generator.register_taste(
|
|
51
|
-
Metanorma::IsoDocument::Root,
|
|
52
|
-
"ICC",
|
|
53
|
-
Metanorma::Html::IccRenderer
|
|
54
|
-
)
|
|
55
|
-
|
|
56
|
-
== Class Name Ownership
|
|
57
|
-
|
|
58
|
-
The HTML renderer owns its class names entirely. **No XML-originated class names appear in the HTML output.**
|
|
59
|
-
|
|
60
|
-
The XML document model's `class_attr` is read as **input only** to determine semantic role. The renderer maps XML roles to HTML-specific class names via `SPAN_ROLE_CLASSES`:
|
|
61
|
-
|
|
62
|
-
[source,ruby]
|
|
63
|
-
SPAN_ROLE_CLASSES = {
|
|
64
|
-
"boldtitle" => "title-text",
|
|
65
|
-
"citefig" => "xref-fig",
|
|
66
|
-
"citesec" => "xref-section",
|
|
67
|
-
"fmt-element-name" => "element-label",
|
|
68
|
-
"fmt-obligation" => "obligation-text",
|
|
69
|
-
# ...
|
|
70
|
-
}.freeze
|
|
71
|
-
|
|
72
|
-
Block-level classes (`note-block`, `formula`, `figure`, etc.) are assigned by the renderer based on what it's rendering — never carried over from XML.
|
|
73
|
-
|
|
74
|
-
Inline span classes go through `html_class_for_span`:
|
|
75
|
-
|
|
76
|
-
[source,ruby]
|
|
77
|
-
def html_class_for_span(xml_class)
|
|
78
|
-
SPAN_ROLE_CLASSES[xml_class] || "span-#{xml_class}"
|
|
79
|
-
end
|
|
80
|
-
|
|
81
|
-
Raw XML content (e.g., boilerplate) passes through Nokogiri post-processing that remaps any remaining XML class names.
|
|
82
|
-
|
|
83
|
-
== Drop Pattern
|
|
84
|
-
|
|
85
|
-
Block elements (notes, examples, sourcecode, formulas, figures, admonitions) use the Drop pattern to separate data capture from template rendering.
|
|
86
|
-
|
|
87
|
-
=== How It Works
|
|
88
|
-
|
|
89
|
-
. A `Drop` class captures rendered content via `RendererContext`
|
|
90
|
-
. The Drop passes pre-rendered HTML strings to a Liquid template
|
|
91
|
-
. The template reads Drop attributes and outputs final HTML
|
|
92
|
-
|
|
93
|
-
[source,ruby]
|
|
94
|
-
# In the renderer:
|
|
95
|
-
def render_note(note, **_opts)
|
|
96
|
-
drop = Drops::NoteDrop.from_model(note, renderer: renderer_context)
|
|
97
|
-
@output << render_liquid("_note.html.liquid", { "block" => drop })
|
|
98
|
-
end
|
|
99
|
-
|
|
100
|
-
# In the Drop:
|
|
101
|
-
class NoteDrop < BlockElementDrop
|
|
102
|
-
def self.from_model(note, renderer:)
|
|
103
|
-
content_html = renderer.capture_output do
|
|
104
|
-
note.content.each { |para| renderer.render_paragraph(para) }
|
|
105
|
-
end
|
|
106
|
-
new(id: renderer.safe_attr(note, :id),
|
|
107
|
-
label_html: renderer.escape_html(label),
|
|
108
|
-
content_html: content_html,
|
|
109
|
-
css_class: "note-block")
|
|
110
|
-
end
|
|
111
|
-
end
|
|
112
|
-
|
|
113
|
-
=== BlockElementDrop
|
|
114
|
-
|
|
115
|
-
All block drops inherit from `BlockElementDrop`, which provides common attributes:
|
|
116
|
-
|
|
117
|
-
`id` :: HTML element id
|
|
118
|
-
`type` :: Block type identifier
|
|
119
|
-
`label_html` :: Pre-rendered label (e.g., "NOTE", "EXAMPLE 1")
|
|
120
|
-
`content_html` :: Pre-rendered inner content
|
|
121
|
-
`css_class` :: HTML-specific class name
|
|
122
|
-
|
|
123
|
-
=== RendererContext
|
|
124
|
-
|
|
125
|
-
`RendererContext` is a facade inside `BaseRenderer` that exposes only the rendering methods Drops need. Drops call renderer methods through this facade — the renderer's private interface stays encapsulated.
|
|
126
|
-
|
|
127
|
-
[source,ruby]
|
|
128
|
-
class RendererContext
|
|
129
|
-
def safe_attr(obj, method_name)
|
|
130
|
-
def escape_html(text)
|
|
131
|
-
def extract_block_label(block, default)
|
|
132
|
-
def extract_plain_text(node)
|
|
133
|
-
def capture_output(&block)
|
|
134
|
-
def render_paragraph(p)
|
|
135
|
-
def render_mixed_inline(node)
|
|
136
|
-
def render_inline_element(el)
|
|
137
|
-
def render_unordered_list(ul)
|
|
138
|
-
def render_ordered_list(ol)
|
|
139
|
-
def render_definition_list(dl)
|
|
140
|
-
def render_table(table)
|
|
141
|
-
def render_figure(figure)
|
|
142
|
-
end
|
|
143
|
-
|
|
144
|
-
== Liquid Templates
|
|
145
|
-
|
|
146
|
-
HTML structure is defined in `.liquid` templates under `lib/metanorma/html/templates/`.
|
|
147
|
-
|
|
148
|
-
[horizontal]
|
|
149
|
-
`document.html.liquid` :: Full document shell (`<html>`, `<head>`, `<body>`)
|
|
150
|
-
`_header.html.liquid` :: Sticky header with publisher logos
|
|
151
|
-
`_footer.html.liquid` :: Footer with copyright
|
|
152
|
-
`_cover.html.liquid` :: Generic cover page layout
|
|
153
|
-
`_iso_cover.html.liquid` :: ISO-specific cover page
|
|
154
|
-
`_iso_doc_title.html.liquid` :: ISO document title rendering
|
|
155
|
-
`_doc_title.html.liquid` :: Generic document title rendering
|
|
156
|
-
`_footnotes.html.liquid` :: Footnotes section
|
|
157
|
-
`_note.html.liquid` :: Note block
|
|
158
|
-
`_example.html.liquid` :: Example block
|
|
159
|
-
`_sourcecode.html.liquid` :: Source code block
|
|
160
|
-
`_formula.html.liquid` :: Formula block
|
|
161
|
-
`_figure.html.liquid` :: Figure block
|
|
162
|
-
`_admonition.html.liquid` :: Admonition block
|
|
163
|
-
|
|
164
|
-
Templates use `Liquid::LocalFileSystem` for partials (prefixed with `_`). The `render_liquid` method handles template caching.
|
|
165
|
-
|
|
166
|
-
=== Template Example
|
|
167
|
-
|
|
168
|
-
`_note.html.liquid`:
|
|
169
|
-
|
|
170
|
-
[source,liquid]
|
|
171
|
-
----
|
|
172
|
-
<div{% if block.id %} id="{{ block.id }}"{% endif %} class="{{ block.css_class }}">
|
|
173
|
-
{% if block.label_html %}
|
|
174
|
-
<p class="note-label"><strong>{{ block.label_html }}</strong></p>
|
|
175
|
-
{% endif %}
|
|
176
|
-
<div class="note-content">
|
|
177
|
-
{{ block.content_html }}
|
|
178
|
-
</div>
|
|
179
|
-
</div>
|
|
180
|
-
----
|
|
181
|
-
|
|
182
|
-
== Theming
|
|
183
|
-
|
|
184
|
-
Each renderer has a `Theme` object controlling colors, typography, and layout. Theme properties are emitted as CSS custom properties (`--mn-primary`, `--font-body`, etc.).
|
|
185
|
-
|
|
186
|
-
[source,ruby]
|
|
187
|
-
class MyRenderer < Metanorma::Html::StandardRenderer
|
|
188
|
-
def theme
|
|
189
|
-
@theme ||= begin
|
|
190
|
-
t = Theme.new
|
|
191
|
-
t.primary = "#1a5276"
|
|
192
|
-
t.accent = "#2e86c1"
|
|
193
|
-
t.font_body = '"Charter", serif'
|
|
194
|
-
t
|
|
195
|
-
end
|
|
196
|
-
end
|
|
197
|
-
end
|
|
198
|
-
|
|
199
|
-
=== Theme Properties
|
|
200
|
-
|
|
201
|
-
[horizontal]
|
|
202
|
-
`primary` :: Primary brand color
|
|
203
|
-
`accent` :: Accent/highlight color
|
|
204
|
-
`gradient` :: Header gradient
|
|
205
|
-
`font_body` :: Body text font stack
|
|
206
|
-
`font_sans` :: Sans-serif font stack
|
|
207
|
-
`font_mono` :: Monospace font stack
|
|
208
|
-
`font_url` :: Google Fonts URL
|
|
209
|
-
`note_border` :: Note block border color
|
|
210
|
-
`note_bg` :: Note block background
|
|
211
|
-
`example_border` :: Example block border color
|
|
212
|
-
`example_bg` :: Example block background
|
|
213
|
-
`admonition_border` :: Admonition border color
|
|
214
|
-
`admonition_bg` :: Admonition background
|
|
215
|
-
`extra_css` :: Additional CSS string appended after defaults
|
|
216
|
-
|
|
217
|
-
== Presentation XML
|
|
218
|
-
|
|
219
|
-
The HTML renderer expects **presentation XML** (not source XML). Presentation XML contains `fmt-*` display elements alongside semantic elements:
|
|
220
|
-
|
|
221
|
-
- `fmt-title` — formatted section/block titles
|
|
222
|
-
- `fmt-xref` — formatted cross-reference text
|
|
223
|
-
- `fmt-link` — formatted link text
|
|
224
|
-
- `fmt-concept` — formatted concept references
|
|
225
|
-
- `fmt-definition` — formatted term definitions
|
|
226
|
-
- `fmt-preferred` — formatted preferred term names
|
|
227
|
-
|
|
228
|
-
The renderer prioritizes `fmt-*` elements for rendering, falling back to semantic elements when display elements are absent.
|
|
229
|
-
|
|
230
|
-
== Asset Pipeline
|
|
231
|
-
|
|
232
|
-
The `AssetPipeline` compiles CSS and JavaScript from modular source files into inline `<style>` and `<script>` blocks for self-contained output.
|
|
233
|
-
|
|
234
|
-
=== CSS
|
|
235
|
-
|
|
236
|
-
[horizontal]
|
|
237
|
-
`data/stylesheets/base/` :: Reset, typography, layout, dark mode, print
|
|
238
|
-
`data/stylesheets/components/` :: Component stylesheets (inline, tables, notes, etc.)
|
|
239
|
-
|
|
240
|
-
=== JavaScript
|
|
241
|
-
|
|
242
|
-
[horizontal]
|
|
243
|
-
`data/javascripts/core/` :: Reader, theme, scroll, navigation, reveal
|
|
244
|
-
`data/javascripts/components/` :: ToC, search, lightbox, code copy, glossary, etc.
|
|
245
|
-
|
|
246
|
-
== Extending
|
|
247
|
-
|
|
248
|
-
To add a new flavor renderer:
|
|
249
|
-
|
|
250
|
-
. Subclass the appropriate base (usually `IsoRenderer` or `StandardRenderer`)
|
|
251
|
-
. Override `theme` with brand colors/fonts
|
|
252
|
-
. Override `publisher_logo_map` with logo filenames
|
|
253
|
-
. Register with the Generator:
|
|
254
|
-
|
|
255
|
-
[source,ruby]
|
|
256
|
-
Metanorma::Html::Generator.register(
|
|
257
|
-
Metanorma::MyDocument::Root,
|
|
258
|
-
Metanorma::Html::MyRenderer
|
|
259
|
-
)
|
|
260
|
-
|
|
261
|
-
To customize how a specific block renders, override the `render_*` method and either emit HTML directly or use the Drop pattern with a new template.
|