metanorma-taste 0.0.3 → 0.1.1
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/Gemfile +15 -0
- data/README.adoc +27 -14
- data/data/elf/config.yaml +1 -0
- data/data/elf/logo.svg +1 -0
- data/data/enosema/config.yaml +17 -0
- data/data/enosema/copyright.adoc +26 -0
- data/data/enosema/i18n.yaml +3 -0
- data/data/enosema/logo.svg +1 -0
- data/data/icc/config.yaml +1 -0
- data/data/icc/icc-full-new.svg +1 -0
- data/data/icc/icc-full.svg +1 -0
- data/data/icc/icc-small-new.svg +1 -0
- data/data/icc/icc-small.svg +1 -0
- data/lib/metanorma/taste/base.rb +286 -61
- data/lib/metanorma/taste/base_override.rb +24 -0
- data/lib/metanorma/taste/doctype_config.rb +20 -0
- data/lib/metanorma/taste/taste_config.rb +33 -0
- data/lib/metanorma/taste/version.rb +1 -1
- data/lib/metanorma/taste_register.rb +195 -56
- data/metanorma-taste.gemspec +1 -14
- metadata +18 -188
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ef00e42b85547e125b2a4fc021ecb9b9fc42c5f4ec5535c536b4b1cf7c6e9fd
|
4
|
+
data.tar.gz: 96dca7b1f86bab29bb496302ce4bf75900234ccec17da76bdb5fd911a79cd8cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e8cdc3982f9e70b3e376ef7bfe3902253058751a1fded487a805a922454ae78ddd0cd5723b8ff2c69626916e2dc4bece54206fcb40e0cfa666ffc2ab86cdd5c
|
7
|
+
data.tar.gz: 0beabd2954ffa0188978915cdcd70bb9a4c22ddc188d6b9c34aaed3e366bb357801960210364a4dc32e8abdb8ab30c55c57bf66807ae5eb729d23ee56cd64ea4
|
data/Gemfile
CHANGED
@@ -1,3 +1,18 @@
|
|
1
1
|
source "https://rubygems.org"
|
2
2
|
|
3
3
|
gemspec
|
4
|
+
|
5
|
+
gem "debug"
|
6
|
+
gem "equivalent-xml", "~> 0.6"
|
7
|
+
gem "metanorma"
|
8
|
+
gem "metanorma-iso"
|
9
|
+
gem "mnconvert"
|
10
|
+
gem "pry"
|
11
|
+
gem "rake", "~> 13.0"
|
12
|
+
gem "rspec", "~> 3.0"
|
13
|
+
gem "rspec-command", "~> 1.0"
|
14
|
+
gem "rubocop", "~> 1"
|
15
|
+
gem "rubocop-performance"
|
16
|
+
gem "sassc-embedded", "~> 1"
|
17
|
+
gem "simplecov", "~> 0.15"
|
18
|
+
gem "xml-c14n"
|
data/README.adoc
CHANGED
@@ -67,9 +67,12 @@ The gem is distributed within Metanorma.
|
|
67
67
|
|
68
68
|
=== Compiling documents
|
69
69
|
|
70
|
-
If a taste abbreviation is used instead of a flavor in compiling a Metanorma
|
71
|
-
|
72
|
-
|
70
|
+
If a taste abbreviation is used instead of a flavor in compiling a Metanorma
|
71
|
+
document, e.g. as the document attribute `:flavor: icc` or
|
72
|
+
`:mn-document-class: icc`, this gem is used to process that document as an
|
73
|
+
instance of its base flavor, and will substitute the necessary configuration
|
74
|
+
files and document attributes required to get the document to render as
|
75
|
+
expected.
|
73
76
|
|
74
77
|
=== Basic usage
|
75
78
|
|
@@ -90,16 +93,20 @@ taste.process_input_adoc_overrides(attributes, options)
|
|
90
93
|
[source,ruby]
|
91
94
|
----
|
92
95
|
# List all available tastes
|
93
|
-
Metanorma::TasteRegister.
|
94
|
-
# => [:icc]
|
96
|
+
Metanorma::TasteRegister.available_tastes
|
97
|
+
# => [:icc, :elf, :enosema]
|
95
98
|
|
96
99
|
# Get information about a specific taste
|
97
|
-
Metanorma::TasteRegister.
|
98
|
-
# =>
|
100
|
+
config = Metanorma::TasteRegister.get_config(:icc)
|
101
|
+
# => #<Metanorma::Taste::TasteConfig:...>
|
102
|
+
puts config.owner
|
103
|
+
# => "International Color Consortium"
|
104
|
+
puts config.base_flavor
|
105
|
+
# => "iso"
|
99
106
|
|
100
107
|
# Get flavor aliases (mapping to base flavours)
|
101
|
-
Metanorma::
|
102
|
-
# => { icc: :iso }
|
108
|
+
Metanorma::TasteRegister.aliases
|
109
|
+
# => { icc: :iso, elf: :iso, enosema: :iso }
|
103
110
|
|
104
111
|
# Demonstrate dynamic class creation
|
105
112
|
taste = Metanorma::TasteRegister.get(:icc)
|
@@ -151,6 +158,11 @@ currently available:
|
|
151
158
|
|`iso`
|
152
159
|
|ELF specifications and standards with ELF branding and copyright
|
153
160
|
|
161
|
+
|`enosema`
|
162
|
+
|Enosema Foundation
|
163
|
+
|`iso`
|
164
|
+
|Enosema specifications and standards with Enosema branding and copyright
|
165
|
+
|
154
166
|
|===
|
155
167
|
|
156
168
|
|
@@ -206,6 +218,7 @@ base-flavor: string # Base Metanorma flavor to extend (e.g., "iso")
|
|
206
218
|
copyright-notice: string # Path to boilerplate file (e.g., "copyright.adoc"), which includes
|
207
219
|
# copyright, license, legal, and feedback notices
|
208
220
|
i18n-dictionary: string # Path to internationalization dictionary (e.g., "i18n.yaml")
|
221
|
+
publisher-logo: string # Path to publisher logo (e.g., "icc.png")
|
209
222
|
base-override: # Hash of document attributes to override from base flavor
|
210
223
|
publisher: string # Publisher name override
|
211
224
|
publisher_abbr: string # Publisher abbreviation
|
@@ -344,7 +357,7 @@ The metanorma-taste system follows this architecture:
|
|
344
357
|
| (Singleton) | | |
|
345
358
|
| +available_tastes|<>---->| +flavor |
|
346
359
|
| +get(flavor) | | +config |
|
347
|
-
| +
|
360
|
+
| +get_config() | | +directory |
|
348
361
|
+--------+---------+ | +process_input_* |
|
349
362
|
| +-------------------+
|
350
363
|
|
|
@@ -353,10 +366,10 @@ The metanorma-taste system follows this architecture:
|
|
353
366
|
| data/ directory| | Dynamic Classes |
|
354
367
|
| | | |
|
355
368
|
| +{taste}/ |------>| Taste::Icc |
|
356
|
-
| config.yaml | | Taste::
|
357
|
-
| copyright.adoc | |
|
358
|
-
| i18n.yaml |
|
359
|
-
+------------------+
|
369
|
+
| config.yaml | | Taste::Elf |
|
370
|
+
| copyright.adoc | | Taste::Enosema |
|
371
|
+
| i18n.yaml | | (auto-generated) |
|
372
|
+
+------------------+ +-------------------+
|
360
373
|
----
|
361
374
|
|
362
375
|
=== Components
|
data/data/elf/config.yaml
CHANGED
data/data/elf/logo.svg
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1023 338"><defs><style>.f{fill:none;}.g{fill:#3d7cc9;}.h{fill:url(#b);}.h,.i,.j,.k{mix-blend-mode:multiply;}.i{fill:url(#e);}.i,.j,.k{opacity:.2;}.j{fill:url(#d);}.k{fill:url(#c);}.l{opacity:.5;}.m{isolation:isolate;}</style><linearGradient id="b" x1="80.41" y1="124.72" x2="300.75" y2="124.72" gradientTransform="matrix(1, 0, 0, 1, 0, 0)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity="0"/><stop offset=".19" stop-color="#fdfefe" stop-opacity="0"/><stop offset=".22" stop-color="#fdfefe" stop-opacity="0"/><stop offset=".4" stop-color="#c9cbce" stop-opacity=".22"/><stop offset=".69" stop-color="#3c444c" stop-opacity=".83"/><stop offset=".76" stop-color="#151e28"/></linearGradient><linearGradient id="c" x1="483.27" y1="106.17" x2="336.41" y2="106.17" xlink:href="#b"/><linearGradient id="d" x1="461.32" y1="241.65" x2="355.69" y2="241.65" xlink:href="#b"/><linearGradient id="e" x1="230" y1="227.24" x2="121.35" y2="227.24" xlink:href="#b"/></defs><g style="isolation:isolate;"><g id="a"><g><g><path d="M406.58,137.45h-41.9c-4.78,.14-10.9,1.82-17.51,8.78l-15.27,17.89h51.68l23-26.67Z" style="fill:#3d7cc9;"/><path d="M204.85,225.43h-60.72c-17.43,0-31.61-14.18-31.61-31.61v-11.86h64.53v-31.79H112.52v-.3c0-17.43,14.18-31.61,31.61-31.61h82.73l31.48,36.03,23.23-21.73-26.3-30.11c-11.32-13.02-24.3-15.58-30.78-15.99h-80.36c-34.96,0-63.4,28.44-63.4,63.4v43.95c0,34.96,28.44,63.4,63.4,63.4h32.94l27.77-31.79Z" style="fill:#3d7cc9;"/><g style="opacity:.5;"><path d="M255.26,102.45c-11.31-13.01-24.3-15.57-30.77-15.98h-80.36c-34.96,0-63.4,28.44-63.4,63.4v13.1l31.79-12.8v-.3c0-17.43,14.18-31.61,31.61-31.61h82.73l31.48,36.03,23.23-21.73-26.31-30.11Z" style="fill:url(#b); mix-blend-mode:multiply;"/></g><path d="M454.93,86.44s-73.74,.02-73.72,0h-25.49c-.77,0-1.58,.13-2.34,.23-6.7,.85-17.54,3.98-27.35,14.61l-29.66,33.88,21.1,24.15,29.26-33.39c5.47-4.64,10.52-7.36,15.3-7.66l65.48-.02,27.42-31.79Z" style="fill:#3d7cc9;"/><path d="M454.96,86.44h-57.34c-.12,.01-2.15,.22-2.15,.22-6.7,.85-17.54,3.98-27.35,14.61l-21.36,24.63c5.47-4.64,10.52-7.31,15.3-7.66l65.48-.02,27.41-31.78Z" style="fill:url(#c); mix-blend-mode:multiply; opacity:.2;"/><path d="M413.54,257.56l27.41-31.78-77.98-.03-39.85-45.61-.04,.04-68.9-78.87c-11.05-11.98-23.42-14.44-29.69-14.84h-25.49l67.64,77.42,.04-.04,68.9,78.87c11.06,11.98,23.42,14.44,29.69,14.84h25.49l-.02-.02,22.8,.02Z" style="fill:#3d7cc9;"/><path d="M440.96,225.78l-77.82-.03,13.73,15.83c9.59,10.39,20.05,14.44,27.6,15.97h9.08l27.41-31.77Z" style="fill:url(#d); mix-blend-mode:multiply; opacity:.2;"/><path d="M257.12,180.18l-.04-.04-67.64,77.42h25.49c5.39,0,18.64-2.86,29.69-14.84l39.94-45-21.08-24.13-6.35,6.59Z" style="fill:#3d7cc9;"/><path d="M177.07,257.22l27.77-31.79h-60.72c-16.27,0-29.7-12.36-31.41-28.18,1.8,33.36,29.43,59.97,63.23,59.97h1.13Z" style="fill:url(#e); mix-blend-mode:multiply; opacity:.2;"/></g><g><g><path d="M548.46,163.15v10.23h-42.63v-55.06h41.61v10.23h-28.94v11.96h25.56v9.91h-25.56v12.74h29.97Z" style="fill:#3d7cc9;"/><path d="M604.54,173.38l-13.29-19.11-13.06,19.11h-14.63l20.37-28-19.35-27.06h14.47l12.66,17.85,12.43-17.85h13.76l-19.19,26.58,20.53,28.47h-14.71Z" style="fill:#3d7cc9;"/><path d="M672.62,120.76c3.59,1.63,6.36,3.93,8.3,6.92,1.94,2.99,2.91,6.53,2.91,10.62s-.97,7.56-2.91,10.58c-1.94,3.02-4.71,5.32-8.3,6.92-3.59,1.6-7.83,2.4-12.7,2.4h-11.09v15.18h-12.74v-55.06h23.83c4.88,0,9.11,.81,12.7,2.44Zm-4.68,24.58c1.99-1.65,2.99-4,2.99-7.04s-1-5.47-2.99-7.12c-1.99-1.65-4.9-2.48-8.73-2.48h-10.38v19.11h10.38c3.83,0,6.74-.83,8.73-2.48Z" style="fill:#3d7cc9;"/><path d="M739.75,173.38l-10.62-15.34h-11.72v15.34h-12.74v-55.06h23.83c4.88,0,9.11,.81,12.7,2.44,3.59,1.63,6.36,3.93,8.3,6.92,1.94,2.99,2.91,6.53,2.91,10.62s-.98,7.62-2.95,10.58c-1.97,2.96-4.76,5.23-8.38,6.8l12.35,17.7h-13.69Zm-3.22-42.2c-1.99-1.65-4.9-2.48-8.73-2.48h-10.38v19.19h10.38c3.83,0,6.74-.84,8.73-2.52,1.99-1.68,2.99-4.04,2.99-7.08s-1-5.47-2.99-7.12Z" style="fill:#3d7cc9;"/><path d="M816.9,163.15v10.23h-42.63v-55.06h41.61v10.23h-28.94v11.96h25.56v9.91h-25.56v12.74h29.97Z" style="fill:#3d7cc9;"/><path d="M844.31,172.55c-4.06-1.18-7.33-2.71-9.79-4.6l4.33-9.6c2.36,1.73,5.16,3.12,8.42,4.17,3.25,1.05,6.5,1.57,9.75,1.57,3.62,0,6.29-.54,8.02-1.61,1.73-1.07,2.6-2.5,2.6-4.29,0-1.31-.51-2.4-1.53-3.26-1.02-.87-2.33-1.56-3.93-2.08-1.6-.52-3.76-1.1-6.49-1.73-4.2-1-7.63-1.99-10.3-2.99-2.67-1-4.97-2.6-6.88-4.8s-2.87-5.14-2.87-8.81c0-3.2,.87-6.1,2.6-8.69,1.73-2.6,4.34-4.65,7.83-6.17,3.49-1.52,7.75-2.28,12.78-2.28,3.51,0,6.95,.42,10.3,1.26,3.36,.84,6.29,2.04,8.81,3.62l-3.93,9.67c-5.09-2.88-10.17-4.33-15.26-4.33-3.57,0-6.2,.58-7.91,1.73-1.7,1.15-2.56,2.67-2.56,4.56s.98,3.29,2.95,4.21c1.97,.92,4.97,1.82,9.01,2.71,4.19,1,7.63,1.99,10.3,2.99,2.67,1,4.97,2.57,6.88,4.72,1.91,2.15,2.87,5.06,2.87,8.73,0,3.15-.88,6.02-2.63,8.61-1.76,2.6-4.39,4.65-7.91,6.17-3.51,1.52-7.79,2.28-12.82,2.28-4.35,0-8.56-.59-12.62-1.77Z" style="fill:#3d7cc9;"/><path d="M906.29,172.55c-4.06-1.18-7.33-2.71-9.79-4.6l4.33-9.6c2.36,1.73,5.16,3.12,8.42,4.17,3.25,1.05,6.5,1.57,9.75,1.57,3.62,0,6.29-.54,8.02-1.61,1.73-1.07,2.6-2.5,2.6-4.29,0-1.31-.51-2.4-1.53-3.26-1.02-.87-2.33-1.56-3.93-2.08-1.6-.52-3.76-1.1-6.49-1.73-4.2-1-7.63-1.99-10.3-2.99-2.67-1-4.97-2.6-6.88-4.8s-2.87-5.14-2.87-8.81c0-3.2,.87-6.1,2.6-8.69,1.73-2.6,4.34-4.65,7.83-6.17,3.49-1.52,7.75-2.28,12.78-2.28,3.51,0,6.95,.42,10.3,1.26,3.36,.84,6.29,2.04,8.81,3.62l-3.93,9.67c-5.09-2.88-10.17-4.33-15.26-4.33-3.57,0-6.2,.58-7.91,1.73-1.7,1.15-2.56,2.67-2.56,4.56s.98,3.29,2.95,4.21c1.97,.92,4.97,1.82,9.01,2.71,4.19,1,7.63,1.99,10.3,2.99,2.67,1,4.97,2.57,6.88,4.72,1.91,2.15,2.87,5.06,2.87,8.73,0,3.15-.88,6.02-2.63,8.61-1.76,2.6-4.39,4.65-7.91,6.17-3.51,1.52-7.79,2.28-12.82,2.28-4.35,0-8.56-.59-12.62-1.77Z" style="fill:#3d7cc9;"/></g><g><path d="M507.8,196.81h2.88v17.68h10.93v2.51h-13.82v-20.19Z" style="fill:#3d7cc9;"/><path d="M541.05,203.13c1.12,1.04,1.69,2.59,1.69,4.64v9.23h-2.62v-2.02c-.46,.71-1.12,1.25-1.98,1.63s-1.87,.56-3.04,.56c-1.71,0-3.08-.41-4.11-1.24-1.03-.83-1.54-1.91-1.54-3.26s.49-2.43,1.47-3.25,2.54-1.23,4.67-1.23h4.38v-.55c0-1.19-.35-2.11-1.04-2.74-.69-.63-1.71-.95-3.06-.95-.9,0-1.79,.15-2.65,.45-.87,.3-1.6,.7-2.19,1.2l-1.15-2.08c.79-.63,1.73-1.12,2.83-1.46,1.1-.34,2.26-.5,3.49-.5,2.12,0,3.74,.52,4.86,1.56Zm-2.75,11.21c.77-.47,1.33-1.14,1.67-2v-2.13h-4.27c-2.35,0-3.52,.79-3.52,2.37,0,.77,.3,1.38,.89,1.82,.6,.44,1.42,.66,2.48,.66s1.97-.24,2.74-.71Z" style="fill:#3d7cc9;"/><path d="M566.66,203.26c1.14,1.12,1.72,2.77,1.72,4.95v8.8h-2.77v-8.48c0-1.48-.36-2.6-1.07-3.35-.71-.75-1.73-1.12-3.06-1.12-1.5,0-2.68,.44-3.55,1.31-.87,.88-1.3,2.13-1.3,3.76v7.87h-2.77v-15.29h2.65v2.31c.56-.79,1.31-1.39,2.26-1.82s2.03-.63,3.25-.63c1.94,0,3.49,.56,4.63,1.69Z" style="fill:#3d7cc9;"/><path d="M594.22,201.72v13.21c0,2.67-.66,4.65-1.99,5.93-1.33,1.28-3.31,1.92-5.94,1.92-1.44,0-2.82-.2-4.12-.59-1.31-.39-2.37-.96-3.17-1.69l1.33-2.13c.71,.62,1.59,1.1,2.64,1.46,1.05,.36,2.13,.53,3.25,.53,1.79,0,3.11-.42,3.97-1.27,.86-.85,1.28-2.13,1.28-3.87v-1.21c-.65,.79-1.46,1.38-2.41,1.77s-1.99,.59-3.1,.59c-1.46,0-2.78-.31-3.97-.94-1.18-.62-2.11-1.5-2.78-2.62s-1.01-2.41-1.01-3.85,.34-2.73,1.01-3.85,1.6-1.99,2.78-2.61c1.18-.62,2.5-.92,3.97-.92,1.15,0,2.23,.21,3.22,.63s1.8,1.05,2.44,1.88v-2.37h2.62Zm-5.26,11.59c.8-.42,1.42-1.01,1.88-1.77s.68-1.62,.68-2.58c0-1.48-.49-2.68-1.47-3.59s-2.24-1.37-3.78-1.37-2.83,.46-3.81,1.37-1.47,2.11-1.47,3.59c0,.96,.23,1.82,.68,2.58,.45,.76,1.08,1.35,1.88,1.77,.8,.42,1.71,.63,2.73,.63s1.9-.21,2.7-.63Z" style="fill:#3d7cc9;"/><path d="M619.75,201.72v15.29h-2.62v-2.31c-.56,.79-1.29,1.4-2.21,1.83-.91,.43-1.91,.65-2.99,.65-2.04,0-3.64-.56-4.82-1.69s-1.76-2.78-1.76-4.98v-8.8h2.77v8.48c0,1.48,.36,2.6,1.07,3.36,.71,.76,1.73,1.14,3.06,1.14,1.46,0,2.62-.44,3.46-1.33,.85-.88,1.27-2.13,1.27-3.75v-7.9h2.77Z" style="fill:#3d7cc9;"/><path d="M641.45,203.13c1.12,1.04,1.69,2.59,1.69,4.64v9.23h-2.62v-2.02c-.46,.71-1.12,1.25-1.98,1.63s-1.87,.56-3.04,.56c-1.71,0-3.08-.41-4.11-1.24-1.03-.83-1.54-1.91-1.54-3.26s.49-2.43,1.47-3.25,2.54-1.23,4.67-1.23h4.38v-.55c0-1.19-.35-2.11-1.04-2.74-.69-.63-1.71-.95-3.06-.95-.9,0-1.79,.15-2.65,.45-.87,.3-1.6,.7-2.19,1.2l-1.15-2.08c.79-.63,1.73-1.12,2.83-1.46,1.1-.34,2.26-.5,3.49-.5,2.12,0,3.74,.52,4.86,1.56Zm-2.75,11.21c.77-.47,1.33-1.14,1.67-2v-2.13h-4.27c-2.35,0-3.52,.79-3.52,2.37,0,.77,.3,1.38,.89,1.82,.6,.44,1.42,.66,2.48,.66s1.97-.24,2.74-.71Z" style="fill:#3d7cc9;"/><path d="M668.99,201.72v13.21c0,2.67-.66,4.65-1.99,5.93-1.33,1.28-3.31,1.92-5.94,1.92-1.44,0-2.82-.2-4.12-.59-1.31-.39-2.37-.96-3.17-1.69l1.33-2.13c.71,.62,1.59,1.1,2.64,1.46,1.05,.36,2.13,.53,3.25,.53,1.79,0,3.11-.42,3.97-1.27,.86-.85,1.28-2.13,1.28-3.87v-1.21c-.65,.79-1.46,1.38-2.41,1.77s-1.99,.59-3.1,.59c-1.46,0-2.78-.31-3.97-.94-1.18-.62-2.11-1.5-2.78-2.62s-1.01-2.41-1.01-3.85,.34-2.73,1.01-3.85,1.6-1.99,2.78-2.61c1.18-.62,2.5-.92,3.97-.92,1.15,0,2.23,.21,3.22,.63s1.8,1.05,2.44,1.88v-2.37h2.62Zm-5.26,11.59c.8-.42,1.42-1.01,1.88-1.77s.68-1.62,.68-2.58c0-1.48-.49-2.68-1.47-3.59s-2.24-1.37-3.78-1.37-2.83,.46-3.81,1.37-1.47,2.11-1.47,3.59c0,.96,.23,1.82,.68,2.58,.45,.76,1.08,1.35,1.88,1.77,.8,.42,1.71,.63,2.73,.63s1.9-.21,2.7-.63Z" style="fill:#3d7cc9;"/><path d="M694.02,210.28h-12.4c.17,1.35,.76,2.43,1.77,3.25,1.01,.82,2.26,1.23,3.76,1.23,1.83,0,3.3-.62,4.41-1.85l1.53,1.79c-.69,.81-1.55,1.42-2.58,1.85-1.03,.42-2.18,.63-3.45,.63-1.62,0-3.05-.33-4.3-1-1.25-.66-2.22-1.59-2.9-2.78s-1.02-2.54-1.02-4.04,.33-2.82,1-4.01c.66-1.19,1.58-2.12,2.74-2.78,1.16-.66,2.48-1,3.94-1s2.76,.33,3.91,1c1.14,.66,2.04,1.59,2.68,2.78,.64,1.19,.97,2.56,.97,4.1,0,.21-.02,.49-.06,.84Zm-10.83-5.16c-.89,.81-1.42,1.87-1.57,3.17h9.81c-.15-1.29-.68-2.34-1.57-3.16-.89-.82-2-1.23-3.33-1.23s-2.44,.4-3.33,1.21Z" style="fill:#3d7cc9;"/><path d="M720.96,199.32v7.04h10.12v2.48h-10.12v8.16h-2.88v-20.19h14.25v2.51h-11.36Z" style="fill:#3d7cc9;"/><path d="M743.95,216.17c-1.21-.67-2.16-1.6-2.84-2.78s-1.02-2.52-1.02-4.02,.34-2.84,1.02-4.02,1.63-2.11,2.84-2.77c1.21-.66,2.58-1,4.1-1s2.88,.33,4.08,1c1.2,.66,2.14,1.59,2.83,2.77,.68,1.18,1.02,2.52,1.02,4.02s-.34,2.84-1.02,4.02c-.68,1.18-1.63,2.11-2.83,2.78-1.2,.67-2.56,1.01-4.08,1.01s-2.88-.34-4.1-1.01Zm6.74-2.09c.78-.45,1.39-1.09,1.83-1.9s.66-1.75,.66-2.81-.22-2-.66-2.81-1.05-1.45-1.83-1.89c-.78-.44-1.66-.66-2.64-.66s-1.86,.22-2.64,.66c-.78,.44-1.39,1.07-1.85,1.89-.45,.82-.68,1.75-.68,2.81s.23,2,.68,2.81c.45,.82,1.07,1.45,1.85,1.9,.78,.45,1.66,.68,2.64,.68s1.86-.23,2.64-.68Z" style="fill:#3d7cc9;"/><path d="M780.06,201.72v15.29h-2.62v-2.31c-.56,.79-1.29,1.4-2.21,1.83-.91,.43-1.91,.65-2.99,.65-2.04,0-3.64-.56-4.82-1.69s-1.76-2.78-1.76-4.98v-8.8h2.77v8.48c0,1.48,.36,2.6,1.07,3.36,.71,.76,1.73,1.14,3.06,1.14,1.46,0,2.62-.44,3.46-1.33,.85-.88,1.27-2.13,1.27-3.75v-7.9h2.77Z" style="fill:#3d7cc9;"/><path d="M804.13,203.26c1.14,1.12,1.72,2.77,1.72,4.95v8.8h-2.77v-8.48c0-1.48-.36-2.6-1.07-3.35-.71-.75-1.73-1.12-3.06-1.12-1.5,0-2.68,.44-3.55,1.31-.87,.88-1.3,2.13-1.3,3.76v7.87h-2.77v-15.29h2.65v2.31c.56-.79,1.31-1.39,2.26-1.82s2.03-.63,3.25-.63c1.94,0,3.49,.56,4.63,1.69Z" style="fill:#3d7cc9;"/><path d="M831.49,195.6v21.4h-2.65v-2.42c-.62,.85-1.39,1.49-2.34,1.93s-1.98,.66-3.12,.66c-1.48,0-2.81-.33-3.98-.98-1.17-.65-2.09-1.57-2.75-2.75-.66-1.18-1-2.54-1-4.08s.33-2.89,1-4.07c.66-1.17,1.58-2.09,2.75-2.74,1.17-.65,2.5-.98,3.98-.98,1.1,0,2.11,.21,3.03,.62,.92,.41,1.69,1.02,2.31,1.83v-8.42h2.77Zm-5.25,18.47c.79-.45,1.4-1.09,1.85-1.9s.66-1.75,.66-2.81-.22-2-.66-2.81-1.06-1.45-1.85-1.89c-.79-.44-1.66-.66-2.62-.66s-1.86,.22-2.64,.66c-.78,.44-1.39,1.07-1.85,1.89-.45,.82-.68,1.75-.68,2.81s.23,2,.68,2.81c.45,.82,1.07,1.45,1.85,1.9,.78,.45,1.66,.68,2.64,.68s1.84-.23,2.62-.68Z" style="fill:#3d7cc9;"/><path d="M853.17,203.13c1.12,1.04,1.69,2.59,1.69,4.64v9.23h-2.62v-2.02c-.46,.71-1.12,1.25-1.98,1.63s-1.87,.56-3.04,.56c-1.71,0-3.08-.41-4.11-1.24-1.03-.83-1.54-1.91-1.54-3.26s.49-2.43,1.47-3.25,2.54-1.23,4.67-1.23h4.38v-.55c0-1.19-.35-2.11-1.04-2.74-.69-.63-1.71-.95-3.06-.95-.9,0-1.79,.15-2.65,.45-.87,.3-1.6,.7-2.19,1.2l-1.15-2.08c.79-.63,1.73-1.12,2.83-1.46,1.1-.34,2.26-.5,3.49-.5,2.12,0,3.74,.52,4.86,1.56Zm-2.75,11.21c.77-.47,1.33-1.14,1.67-2v-2.13h-4.27c-2.35,0-3.52,.79-3.52,2.37,0,.77,.3,1.38,.89,1.82,.6,.44,1.42,.66,2.48,.66s1.97-.24,2.74-.71Z" style="fill:#3d7cc9;"/><path d="M874.59,216.11c-.4,.35-.9,.61-1.5,.79-.6,.18-1.21,.27-1.85,.27-1.54,0-2.73-.41-3.58-1.24-.85-.83-1.27-2.01-1.27-3.55v-8.39h-2.6v-2.28h2.6v-3.35h2.77v3.35h4.38v2.28h-4.38v8.28c0,.83,.21,1.46,.62,1.9,.41,.44,1,.66,1.77,.66,.85,0,1.57-.24,2.16-.72l.87,1.99Z" style="fill:#3d7cc9;"/><path d="M883.97,198.26c-.36-.35-.53-.77-.53-1.27s.18-.93,.53-1.28c.36-.36,.8-.53,1.34-.53s.98,.17,1.34,.5c.36,.34,.53,.75,.53,1.25s-.18,.96-.53,1.31-.8,.53-1.34,.53-.99-.17-1.34-.52Zm-.04,3.46h2.77v15.29h-2.77v-15.29Z" style="fill:#3d7cc9;"/><path d="M900.43,216.17c-1.21-.67-2.16-1.6-2.84-2.78s-1.02-2.52-1.02-4.02,.34-2.84,1.02-4.02,1.63-2.11,2.84-2.77c1.21-.66,2.58-1,4.1-1s2.88,.33,4.08,1c1.2,.66,2.14,1.59,2.83,2.77,.68,1.18,1.02,2.52,1.02,4.02s-.34,2.84-1.02,4.02c-.68,1.18-1.63,2.11-2.83,2.78-1.2,.67-2.56,1.01-4.08,1.01s-2.88-.34-4.1-1.01Zm6.74-2.09c.78-.45,1.39-1.09,1.83-1.9s.66-1.75,.66-2.81-.22-2-.66-2.81-1.05-1.45-1.83-1.89c-.78-.44-1.66-.66-2.64-.66s-1.86,.22-2.64,.66c-.78,.44-1.39,1.07-1.85,1.89-.45,.82-.68,1.75-.68,2.81s.23,2,.68,2.81c.45,.82,1.07,1.45,1.85,1.9,.78,.45,1.66,.68,2.64,.68s1.86-.23,2.64-.68Z" style="fill:#3d7cc9;"/><path d="M935.09,203.26c1.14,1.12,1.72,2.77,1.72,4.95v8.8h-2.77v-8.48c0-1.48-.36-2.6-1.07-3.35-.71-.75-1.73-1.12-3.06-1.12-1.5,0-2.68,.44-3.55,1.31-.87,.88-1.3,2.13-1.3,3.76v7.87h-2.77v-15.29h2.65v2.31c.56-.79,1.31-1.39,2.26-1.82s2.03-.63,3.25-.63c1.94,0,3.49,.56,4.63,1.69Z" style="fill:#3d7cc9;"/></g></g></g><rect width="1023" height="338" style="fill:none;"/></g></g></svg>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
---
|
2
|
+
flavor: enosema
|
3
|
+
owner: Enosema Foundation
|
4
|
+
base-flavor: iso
|
5
|
+
copyright-notice: copyright.adoc
|
6
|
+
i18n-dictionary: i18n.yaml
|
7
|
+
publisher-logo: logo.svg
|
8
|
+
base-override:
|
9
|
+
publisher: Enosema Foundation
|
10
|
+
publisher_abbr: EFS
|
11
|
+
presentation-metadata-color-secondary: '#007724'
|
12
|
+
presentation-metadata-backcover-text: enosema.org
|
13
|
+
doctypes:
|
14
|
+
- taste: standard
|
15
|
+
base: international-standard
|
16
|
+
- taste: guide
|
17
|
+
base: guide
|
@@ -0,0 +1,26 @@
|
|
1
|
+
== copyright-statement
|
2
|
+
=== {blank}
|
3
|
+
(c) {{ docyear }} Enosema Foundation.
|
4
|
+
|
5
|
+
All rights reserved. Unless otherwise specified, or required in the context of
|
6
|
+
its implementation, no part of this publication may be reproduced or utilized
|
7
|
+
otherwise in any form or by any means, electronic or mechanical, including
|
8
|
+
photocopying, or posting on the internet or an intranet, without prior written
|
9
|
+
permission. Permission can be requested from the Enosema Foundation.
|
10
|
+
|
11
|
+
Enosema Foundation +
|
12
|
+
2885 Sanford Ave Sw Suite 32361 +
|
13
|
+
Grandville MI 49418-1342 +
|
14
|
+
USA
|
15
|
+
|
16
|
+
E-mail: link:mailto:info@enosema.org[info@enosema.org]
|
17
|
+
|
18
|
+
Published in the USA
|
19
|
+
|
20
|
+
|
21
|
+
== feedback-statement
|
22
|
+
|
23
|
+
=== {blank}
|
24
|
+
|
25
|
+
[align=center]
|
26
|
+
[css color:#007724]#**Making meaning meaningful**#
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-9904fc61-5966-45a2-a96d-82a541efe75d" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 250"><g><path d="M284.54,152.15c10.06,0,17.34-4.66,20.99-10.64l10.79,6.12c-6.41,9.91-17.49,16.47-32.07,16.47-23.47,0-39.07-16.47-39.07-38.34s15.45-38.34,38.19-38.34,36.3,18.08,36.3,38.48c0,1.9-.15,3.79-.44,5.69h-61.08c2.47,13.12,12.83,20.55,26.39,20.55Zm-26.39-31.63h48.68c-2.19-14.43-12.53-21.14-23.47-21.14-13.7,0-23.18,8.46-25.21,21.14Z" style="fill:#348f41;"/><path d="M398.81,117.46v44.75h-12.68v-44.02c0-11.95-6.85-18.66-18.07-18.66s-21.14,6.85-21.14,24.05v38.63h-12.68V89.32h12.68v10.5c5.39-8.6,13.41-12.39,23.61-12.39,17.06,0,28.28,11.37,28.28,30.03Z" style="fill:#348f41;"/><path d="M412.36,125.77c0-21.58,17.06-38.34,38.34-38.34s38.48,16.76,38.48,38.34-17.2,38.34-38.48,38.34-38.34-16.76-38.34-38.34Zm64.14,0c0-14.72-11.22-25.95-25.8-25.95s-25.66,11.22-25.66,25.95,11.22,25.95,25.66,25.95,25.8-11.22,25.8-25.95Z" style="fill:#348f41;"/><path d="M554.33,142.24c0,13.56-11.67,21.87-27.26,21.87-14.58,0-24.79-7-29.01-17.05l10.93-6.27c2.33,7,9.04,11.37,18.08,11.37,7.72,0,14.43-2.77,14.43-9.91,0-15.6-40.81-6.71-40.81-33.09,0-12.83,11.08-21.72,25.8-21.72,11.95,0,21.58,5.69,26.24,15.16l-10.64,5.98c-2.77-6.56-9.19-9.33-15.6-9.33s-12.98,3.21-12.98,9.77c0,15.6,40.82,6.41,40.82,33.24Z" style="fill:#348f41;"/><path d="M602.57,152.15c10.06,0,17.35-4.66,20.99-10.64l10.79,6.12c-6.41,9.91-17.49,16.47-32.07,16.47-23.47,0-39.06-16.47-39.06-38.34s15.45-38.34,38.19-38.34,36.3,18.08,36.3,38.48c0,1.9-.14,3.79-.44,5.69h-61.08c2.48,13.12,12.83,20.55,26.39,20.55Zm-26.39-31.63h48.69c-2.19-14.43-12.54-21.14-23.47-21.14-13.7,0-23.18,8.46-25.22,21.14Z" style="fill:#348f41;"/><path d="M758.39,116.88v45.34h-12.68v-44.9c0-11.51-6.41-17.78-16.04-17.78-10.2,0-17.93,6.41-17.93,22.16v40.52h-12.68v-44.9c0-11.51-5.98-17.78-15.45-17.78s-18.66,6.41-18.66,22.16v40.52h-12.68V89.32h12.68v9.77c5.25-8.16,12.83-11.66,21.72-11.66,9.91,0,17.2,4.52,21.43,12.39,5.1-8.31,13.41-12.39,22.88-12.39,16.18,0,27.41,11.22,27.41,29.45Z" style="fill:#348f41;"/><path d="M849.05,89.32v72.89h-12.68v-12.54c-5.83,8.89-15.16,14.43-27.55,14.43-20.26,0-36.88-16.76-36.88-38.34s16.62-38.34,36.88-38.34c12.39,0,21.72,5.54,27.55,14.43v-12.54h12.68Zm-12.68,36.45c0-14.87-11.22-26.09-25.95-26.09s-25.8,11.22-25.8,26.09,11.22,26.09,25.8,26.09,25.95-11.23,25.95-26.09Z" style="fill:#348f41;"/></g><path d="M123.16,52.79c-39.81,0-72.21,32.39-72.21,72.2s32.39,72.21,72.21,72.21,72.21-32.39,72.21-72.21S162.97,52.79,123.16,52.79Zm0,11.67c29.59,0,54.28,21.35,59.51,49.45-5.95-7.43-19.87-22.25-32.04-16.01-15.65,8.02-32.87,68.46-87.68,33.35-.21-2.06-.32-4.15-.32-6.26,0-33.38,27.16-60.54,60.54-60.54Zm0,121.08c-27.15,0-50.19-17.97-57.84-42.64,11.52,6.91,37.66,18.87,60.5,2.36,28.52-20.62,40.19-43.23,57.29-11.95-4.06,29.46-29.39,52.23-59.96,52.23Z" style="fill:#348f41;"/></svg>
|
data/data/icc/config.yaml
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-9bf42bb3-8ca3-4310-8d2a-ee82dc609955" xmlns="http://www.w3.org/2000/svg" width="431.07mm" height="110.25mm" viewBox="0 0 1221.92 312.52"><g id="uuid-d578ad4a-7e99-4d73-a868-e7057360f52d"><polygon points="555.47 187.1 531.69 222.94 194.58 103.74 555.47 187.1" style="fill:#090909;"/><path d="M243.23,115.6c1.04-.29,26.48-26.16,16.58-45.06-10.14-19.37-18.37-28.88-41.23-37.17-2.3-.84-11.56-4.75-12.35-.96-.97,4.68,15.92,6.23,18.43,24.42.42,3.07,5.19,40.48-33.25,39.72-31.14-.61-32.48-28.24-32.17-33.4,1.17-19.86,19.05-24.37,17-28.89-3.43-7.57-49.76,5.93-49.11,43.12.52,29.72,31.74,51.88,45.55,62.27-11.77-3.6-27.1-9.3-40.92-17.32-28.63-16.6-28.79-33.39-29.04-43.08,0,0-24.83,28.9-48.85,40.91-27.03,13.51-38.77,9.08-38.77,9.08,0,0,19.27-7.09,52.72-43.64C89.86,61.52,114.57.53,200.46,4.13c62.03,2.6,72.5,30.07,133.15,45.47-25.32,3.44-61.51-4.64-61.51-4.64,0,0,6.14,1.23,7.87,25.16.91,12.49-5.46,35.11-21.28,49.12l-15.45-3.63Z" style="fill:#090909;"/><polygon points="194.58 103.74 463.68 263.26 388.8 272.3 194.58 103.74" style="fill:#359cd7;"/><polygon points="194.58 103.74 378.55 274.09 299.63 274.09 194.58 103.74" style="fill:#cd1e75;"/><path d="M271.6,228.6l-1-.5s.64-.13,1,.5Z" style="fill:#db3e92;"/><path d="M194.58,103.74c107.3,38.66,329.73,126.43,329.73,126.43l-51.94,28.36s-187.43-104.16-277.79-154.8Z" style="fill:#f0e92a;"/><path d="M230.6,124.6l-1.5-.5c.12.07.73.04,1.5.5Z" style="fill:#f4f5c6;"/></g><path d="M510.17,147.62h-11.71l10.77-88.72h11.84l-10.91,88.72Z" style="fill:#231f20;"/><path d="M539.7,95.08c3.33-4.79,6.78-7.85,12.9-7.85,6.65,0,10.24,3.99,10.24,10.51,0,2.53-.27,5.05-.53,7.58l-5.19,42.3h-10.91l4.92-39.77c.13-1.6.4-3.19.4-4.79,0-3.46-1.6-6.25-5.32-6.25-6.65,0-7.58,7.18-8.25,12.37l-4.79,38.44h-10.77l7.32-59.46h10.77l-.8,6.92Z" style="fill:#231f20;"/><path d="M592.9,96.68h-5.85l-6.25,50.94h-10.77l6.25-50.94h-5.99l1.06-8.51h5.99l2-16.89h10.77l-2,16.89h5.85l-1.06,8.51Z" style="fill:#231f20;"/><path d="M628.42,127.54c-.67,4.39-1.46,8.11-3.72,11.97-3.19,5.72-9.18,9.04-15.7,9.04-11.97,0-15.03-9.44-15.03-19.69,0-7.58,1.06-15.03,2.93-22.35,2.53-9.71,7.85-19.29,19.29-19.29s14.5,11.04,14.5,20.62c0,4.12-.4,8.25-.93,12.24h-24.61c-.27,2.66-.53,5.19-.53,7.85,0,4.12,0,11.17,5.72,11.17s7.45-7.05,7.98-11.57h10.11ZM619.9,105.72c0-3.46-.27-9.18-5.05-9.18-6.38,0-7.85,10.91-8.78,15.56h13.7c.13-1.46.13-2.93.13-4.39v-2Z" style="fill:#231f20;"/><path d="M664.86,98.28c-.67-.13-1.2-.13-1.86-.13-9.04,0-11.44,5.45-12.37,13.43l-4.52,36.05h-10.77l7.32-59.46h10.77l-.93,7.45c3.86-5.32,6.92-8.25,13.83-8.78l-1.46,11.44Z" style="fill:#231f20;"/><path d="M682.55,95.08c3.33-4.79,6.78-7.85,12.9-7.85,6.65,0,10.24,3.99,10.24,10.51,0,2.53-.27,5.05-.53,7.58l-5.19,42.3h-10.91l4.92-39.77c.13-1.6.4-3.19.4-4.79,0-3.46-1.6-6.25-5.32-6.25-6.65,0-7.58,7.18-8.25,12.37l-4.79,38.44h-10.77l7.32-59.46h10.77l-.8,6.92Z" style="fill:#231f20;"/><path d="M744.93,147.62h-10.77l.93-7.58c-2.79,4.92-5.72,8.51-11.84,8.51-9.44,0-11.04-9.84-11.04-17.29,0-11.97,1.73-44.03,18.62-44.03,5.32,0,7.98,3.06,9.84,7.71l.8-6.78h10.77l-7.32,59.46ZM733.89,97.21c-5.59,0-7.32,6.92-8.25,11.31-1.46,6.78-2.39,13.7-2.39,20.62,0,3.72.4,9.58,5.45,9.58s6.65-6.25,7.58-10.11c1.73-7.18,2.66-14.63,2.66-22.08,0-3.46-.4-9.31-5.05-9.31Z" style="fill:#231f20;"/><path d="M780.7,96.68h-5.85l-6.25,50.94h-10.77l6.25-50.94h-5.99l1.06-8.51h5.99l2-16.89h10.77l-2,16.89h5.85l-1.06,8.51Z" style="fill:#231f20;"/><path d="M792.28,147.62h-10.77l7.32-59.46h10.77l-7.32,59.46ZM794.94,77.79c-3.59,0-6.38-2.93-6.38-6.52,0-4.39,3.99-8.38,8.38-8.38,3.86,0,6.38,2.93,6.38,6.65,0,4.39-3.99,8.25-8.38,8.25Z" style="fill:#231f20;"/><path d="M819.81,148.55c-12.24,0-15.16-9.71-15.16-20.08,0-14.9,3.19-41.23,22.88-41.23,11.84,0,15.3,9.44,15.3,19.69,0,14.9-3.06,41.63-23.01,41.63ZM826.32,97.21c-2.39,0-3.86,1.2-5.05,3.06-3.72,5.59-5.19,22.48-5.19,29.4,0,3.59.67,8.65,5.32,8.65,2.39,0,3.86-1.2,5.19-3.19,3.72-5.59,5.19-22.35,5.19-29.26,0-3.72-.67-8.65-5.45-8.65Z" style="fill:#231f20;"/><path d="M865.16,95.08c3.33-4.79,6.78-7.85,12.9-7.85,6.65,0,10.24,3.99,10.24,10.51,0,2.53-.27,5.05-.53,7.58l-5.19,42.3h-10.91l4.92-39.77c.13-1.6.4-3.19.4-4.79,0-3.46-1.6-6.25-5.32-6.25-6.65,0-7.58,7.18-8.25,12.37l-4.79,38.44h-10.77l7.32-59.46h10.77l-.8,6.92Z" style="fill:#231f20;"/><path d="M927.54,147.62h-10.77l.93-7.58c-2.79,4.92-5.72,8.51-11.84,8.51-9.44,0-11.04-9.84-11.04-17.29,0-11.97,1.73-44.03,18.62-44.03,5.32,0,7.98,3.06,9.84,7.71l.8-6.78h10.77l-7.32,59.46ZM916.5,97.21c-5.59,0-7.32,6.92-8.25,11.31-1.46,6.78-2.39,13.7-2.39,20.62,0,3.72.4,9.58,5.45,9.58s6.65-6.25,7.58-10.11c1.73-7.18,2.66-14.63,2.66-22.08,0-3.46-.4-9.31-5.05-9.31Z" style="fill:#231f20;"/><path d="M949.88,147.62h-10.77l11.84-96.96h10.77l-11.84,96.96Z" style="fill:#231f20;"/><path d="M609.37,197.61c-2.26-1.33-4.66-2.26-7.32-2.26-7.71,0-12.77,6.25-15.43,12.9-3.72,9.18-5.72,24.47-5.72,34.45,0,9.18,1.73,20.88,13.43,20.88,2.53,0,4.79-.53,7.05-1.73l-1.33,10.91c-3.33,2-5.85,2.53-9.71,2.53-17.69,0-22.08-15.03-22.08-29.93,0-12.5,2.53-29.13,7.05-40.7,4.39-11.31,12.77-20.35,25.67-20.35,3.86,0,6.25.4,9.58,2.53l-1.2,10.77Z" style="fill:#231f20;"/><path d="M624.53,275.03c-12.24,0-15.16-9.71-15.16-20.08,0-14.9,3.19-41.23,22.88-41.23,11.84,0,15.3,9.44,15.3,19.69,0,14.9-3.06,41.63-23.01,41.63ZM631.05,223.68c-2.39,0-3.86,1.2-5.05,3.06-3.72,5.59-5.19,22.48-5.19,29.4,0,3.59.67,8.65,5.32,8.65,2.39,0,3.86-1.2,5.19-3.19,3.72-5.59,5.19-22.35,5.19-29.26,0-3.72-.67-8.65-5.45-8.65Z" style="fill:#231f20;"/><path d="M663.37,274.09h-10.77l11.84-96.96h10.77l-11.84,96.96Z" style="fill:#231f20;"/><path d="M690.77,275.03c-12.24,0-15.16-9.71-15.16-20.08,0-14.9,3.19-41.23,22.88-41.23,11.84,0,15.3,9.44,15.3,19.69,0,14.9-3.06,41.63-23.01,41.63ZM697.28,223.68c-2.39,0-3.86,1.2-5.05,3.06-3.72,5.59-5.19,22.48-5.19,29.4,0,3.59.67,8.65,5.32,8.65,2.39,0,3.86-1.2,5.19-3.19,3.72-5.59,5.19-22.35,5.19-29.26,0-3.72-.67-8.65-5.45-8.65Z" style="fill:#231f20;"/><path d="M748.36,224.75c-.67-.13-1.2-.13-1.86-.13-9.04,0-11.44,5.45-12.37,13.43l-4.52,36.05h-10.77l7.32-59.46h10.77l-.93,7.45c3.86-5.32,6.92-8.25,13.83-8.78l-1.46,11.44Z" style="fill:#231f20;"/><path d="M815.71,198.81c-2.26-1.33-4.66-2.26-7.32-2.26-7.71,0-12.77,6.25-15.43,12.9-3.72,9.18-5.72,24.47-5.72,34.45,0,9.18,1.73,20.88,13.43,20.88,2.53,0,4.79-.53,7.05-1.73l-1.33,10.91c-3.33,2-5.85,2.53-9.71,2.53-17.69,0-22.08-15.03-22.08-29.93,0-12.5,2.53-29.13,7.05-40.7,4.39-11.31,12.77-20.35,25.67-20.35,3.86,0,6.25.4,9.58,2.53l-1.2,10.77Z" style="fill:#231f20;"/><path d="M830.2,276.22c-12.24,0-15.16-9.71-15.16-20.08,0-14.9,3.19-41.23,22.88-41.23,11.84,0,15.3,9.44,15.3,19.69,0,14.9-3.06,41.63-23.01,41.63ZM836.72,224.88c-2.39,0-3.86,1.2-5.05,3.06-3.72,5.59-5.19,22.48-5.19,29.4,0,3.59.67,8.65,5.32,8.65,2.39,0,3.86-1.2,5.19-3.19,3.72-5.59,5.19-22.35,5.19-29.26,0-3.72-.67-8.65-5.45-8.65Z" style="fill:#231f20;"/><path d="M874.89,222.75c3.33-4.79,6.78-7.85,12.9-7.85,6.65,0,10.24,3.99,10.24,10.51,0,2.53-.27,5.05-.53,7.58l-5.19,42.3h-10.91l4.92-39.77c.13-1.6.4-3.19.4-4.79,0-3.46-1.6-6.25-5.32-6.25-6.65,0-7.58,7.18-8.25,12.37l-4.79,38.44h-10.77l7.32-59.46h10.77l-.8,6.92Z" style="fill:#231f20;"/><path d="M931.68,227.27c-2.26-1.73-4.92-2.93-7.85-2.93-3.99,0-7.85,3.33-7.85,7.45,0,8.51,14.9,10.51,14.9,24.21,0,11.17-7.71,20.22-19.15,20.22-3.86,0-5.99-.67-9.18-2.79l1.33-10.64c2.53,2.13,5.05,3.59,8.51,3.59,5.19,0,8.38-3.59,8.38-8.65,0-8.78-15.16-11.57-15.16-24.34,0-10.51,7.32-18.89,18.09-18.89,3.46,0,6.38.8,9.31,2.53l-1.33,10.24Z" style="fill:#231f20;"/><path d="M951.9,276.22c-12.24,0-15.16-9.71-15.16-20.08,0-14.9,3.19-41.23,22.88-41.23,11.84,0,15.3,9.44,15.3,19.69,0,14.9-3.06,41.63-23.01,41.63ZM958.42,224.88c-2.39,0-3.86,1.2-5.05,3.06-3.72,5.59-5.19,22.48-5.19,29.4,0,3.59.67,8.65,5.32,8.65,2.39,0,3.86-1.2,5.19-3.19,3.72-5.59,5.19-22.35,5.19-29.26,0-3.72-.67-8.65-5.45-8.65Z" style="fill:#231f20;"/><path d="M1008.83,225.94c-.67-.13-1.2-.13-1.86-.13-9.04,0-11.44,5.45-12.37,13.43l-4.52,36.05h-10.77l7.32-59.46h10.77l-.93,7.45c3.86-5.32,6.92-8.25,13.83-8.78l-1.46,11.44Z" style="fill:#231f20;"/><path d="M1035.29,224.34h-5.85l-6.25,50.94h-10.77l6.25-50.94h-5.99l1.06-8.51h5.99l2-16.89h10.77l-2,16.89h5.85l-1.06,8.51Z" style="fill:#231f20;"/><path d="M1046.2,275.29h-10.77l7.32-59.46h10.77l-7.32,59.46ZM1048.86,205.46c-3.59,0-6.38-2.93-6.38-6.52,0-4.39,3.99-8.38,8.38-8.38,3.86,0,6.38,2.93,6.38,6.65,0,4.39-3.99,8.25-8.38,8.25Z" style="fill:#231f20;"/><path d="M1094.88,251.48c-1.73,14.37-3.72,24.87-21.02,24.87-9.71,0-14.76-4.92-14.76-14.63,0-2.26.27-4.39.53-6.65l4.79-39.24h10.77l-4.39,35.65c-.4,2.79-.67,5.45-.67,8.25,0,4.39,1.73,6.12,6.12,6.12,5.72,0,6.52-5.32,7.18-9.84.27-1.46.53-3.06.67-4.52l4.26-35.65h10.91l-4.39,35.65Z" style="fill:#231f20;"/><path d="M1120.01,223.15c3.19-4.66,6.92-8.25,12.9-8.25s8.78,2.66,9.98,8.25c3.33-5.19,6.92-8.25,13.3-8.25s11.17,3.46,11.17,10.24c0,.93,0,1.86-.13,2.79l-5.85,47.35h-10.77l4.79-39.1c.27-1.86.4-3.72.4-5.59,0-3.46-1.2-5.72-4.92-5.72-6.78,0-7.45,5.99-8.11,11.31l-4.79,39.1h-11.17l4.79-39.1c.27-2,.4-3.86.4-5.85,0-3.46-1.86-5.45-5.32-5.45-6.65,0-7.45,6.12-8.11,11.31l-4.92,39.1h-10.77l7.32-59.46h10.77l-.93,7.32Z" style="fill:#231f20;"/><path d="M1194.88,216.46c-9.12,0-16.53-7.41-16.53-16.53s7.41-16.53,16.53-16.53,16.48,7.45,16.48,16.53-7.36,16.53-16.48,16.53ZM1194.88,185.74c-7.79,0-13.95,6.4-13.95,14.14s6.16,14.24,13.95,14.24,13.9-6.5,13.9-14.19-6.07-14.19-13.9-14.19ZM1197.61,209.53l-3.92-8.41v8.41h-3.34v-19.25h4.39c3.97,0,5.54,1.29,5.54,5.3,0,2.39-.91,4.73-3.58,4.92l4.4,9.03h-3.49ZM1194.55,198.26c2.05,0,2.48-1,2.48-2.87,0-2.01-.53-2.77-2.63-2.77h-.72v5.64h.86Z" style="fill:#231f20;"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-73864094-f043-4722-bdaa-7af47c32468a" xmlns="http://www.w3.org/2000/svg" width="387.08mm" height="110.25mm" viewBox="0 0 1097.23 312.52"><path d="M542.72,166.51h-6.4l8.61-70.03h6.4l-8.61,70.03Z" style="fill:#231f20;"/><path d="M563.01,123.35c2.52-2.52,5.88-4.51,9.45-4.51,5.35,0,7.87,3.57,7.87,8.61,0,1.47-.1,2.94-.31,4.31l-4.2,34.75h-5.88l4.09-33.7c.21-1.36.42-2.73.42-4.09,0-2.83-1.47-5.04-4.41-5.04-6.4,0-7.87,6.19-8.4,11.23l-3.89,31.6h-5.88l5.77-46.93h5.77l-.42,3.78Z" style="fill:#231f20;"/><path d="M604.05,125.03h-7.77l-5.14,41.47h-5.77l5.15-41.47h-4.94l.63-5.46h5.04l1.57-13.33h5.77l-1.57,13.33h7.66l-.63,5.46Z" style="fill:#231f20;"/><path d="M627.88,150.55c-1.15,7.56-4.62,16.69-13.75,16.69s-10.92-9.34-10.92-16.8c0-4.3.42-8.82,1.36-13.02,1.47-7.35,6.09-18.58,15.12-18.58s10.08,9.45,10.08,16.27c0,3.15-.31,6.09-.84,9.13h-19.42c-.31,2.1-.52,4.1-.52,6.19,0,3.99.21,11.23,5.67,11.23s6.61-7.14,7.35-11.13h5.88ZM623.89,139.21c.1-1.68.21-3.57.21-5.35,0-3.36-.31-9.55-4.93-9.55-6.09,0-8.29,10.4-9.03,14.91h13.75Z" style="fill:#231f20;"/><path d="M651.97,125.66c-7.88,0-8.61,6.09-9.34,12.39l-3.57,28.45h-5.88l5.88-46.93h5.77l-.74,6.09c2-3.36,4.41-6.61,8.71-6.82l-.84,6.82Z" style="fill:#231f20;"/><path d="M662.73,123.35c2.52-2.52,5.88-4.51,9.45-4.51,5.35,0,7.88,3.57,7.88,8.61,0,1.47-.11,2.94-.32,4.31l-4.2,34.75h-5.88l4.09-33.7c.21-1.36.42-2.73.42-4.09,0-2.83-1.47-5.04-4.41-5.04-6.4,0-7.88,6.19-8.4,11.23l-3.88,31.6h-5.88l5.77-46.93h5.78l-.42,3.78Z" style="fill:#231f20;"/><path d="M707.43,166.51h-5.77l.42-3.78c-2.42,2.73-4.83,4.51-8.5,4.51-7.24,0-8.61-6.82-8.61-12.6,0-7.87,1.47-23.52,5.46-30.24,2.1-3.36,5.67-5.56,9.76-5.56,3.15,0,5.04,1.15,6.82,3.88l.42-3.15h5.78l-5.78,46.93ZM700.92,123.56c-2.73,0-4.3,1.68-5.56,3.88-3.04,5.56-4.41,19.53-4.41,26.04,0,3.57.21,8.92,5.04,8.92,5.56,0,6.93-6.61,7.67-10.81,1.26-6.4,2.31-12.81,2.31-19.42,0-3.36-.52-8.61-5.04-8.61Z" style="fill:#231f20;"/><path d="M736.11,125.03h-7.77l-5.14,41.47h-5.77l5.14-41.47h-4.93l.63-5.46h5.04l1.58-13.33h5.78l-1.58,13.33h7.66l-.63,5.46Z" style="fill:#231f20;"/><path d="M741,166.51h-5.88l5.77-46.93h5.78l-5.67,46.93ZM745.09,109.18c-2.21,0-3.88-1.68-3.88-3.78,0-2.73,2.31-5.04,5.04-5.04,2.1,0,3.78,1.68,3.78,3.88,0,2.73-2.31,4.94-4.93,4.94Z" style="fill:#231f20;"/><path d="M777.6,133.85c0,10.5-2.1,33.39-16.48,33.39-9.55,0-11.03-9.45-11.03-17.01,0-10.39,3.15-31.39,16.9-31.39,7.67,0,10.61,6.51,10.61,13.23v1.78ZM766.26,124.3c-8.61,0-10.18,20.68-10.18,26.77,0,3.68.52,10.6,5.56,10.6,8.4,0,9.87-20.47,9.87-26.46,0-3.78-.11-10.92-5.25-10.92Z" style="fill:#231f20;"/><path d="M792.23,123.35c2.52-2.52,5.88-4.51,9.45-4.51,5.35,0,7.88,3.57,7.88,8.61,0,1.47-.11,2.94-.32,4.31l-4.2,34.75h-5.88l4.09-33.7c.21-1.36.42-2.73.42-4.09,0-2.83-1.47-5.04-4.41-5.04-6.4,0-7.88,6.19-8.4,11.23l-3.88,31.6h-5.88l5.77-46.93h5.78l-.42,3.78Z" style="fill:#231f20;"/><path d="M836.93,166.51h-5.77l.42-3.78c-2.42,2.73-4.83,4.51-8.5,4.51-7.24,0-8.61-6.82-8.61-12.6,0-7.87,1.47-23.52,5.46-30.24,2.1-3.36,5.67-5.56,9.76-5.56,3.15,0,5.04,1.15,6.82,3.88l.42-3.15h5.78l-5.78,46.93ZM830.42,123.56c-2.73,0-4.3,1.68-5.56,3.88-3.04,5.56-4.41,19.53-4.41,26.04,0,3.57.21,8.92,5.04,8.92,5.56,0,6.93-6.61,7.67-10.81,1.26-6.4,2.31-12.81,2.31-19.42,0-3.36-.52-8.61-5.04-8.61Z" style="fill:#231f20;"/><path d="M851.31,166.51h-5.88l9.45-76.54h5.78l-9.34,76.54Z" style="fill:#231f20;"/><path d="M650.67,220.69c-2.42-1.79-4.62-3.04-7.67-3.04-4.41,0-7.87,2.73-10.08,6.4-5.25,8.5-7.04,26.14-7.04,36.12,0,6.3.63,16.8,9.24,16.8,3.36,0,6.19-1.36,8.92-3.15l-.74,6.51c-2.83,1.79-5.98,2.94-9.34,2.94-12.07,0-14.91-12.81-14.91-22.47,0-12.28,3.04-32.65,10.71-42.42,3.36-4.2,8.19-7.03,13.65-7.03,2.83,0,5.77.52,8.08,2.21l-.84,7.14Z" style="fill:#231f20;"/><path d="M676.08,249.67c0,10.5-2.1,33.39-16.48,33.39-9.55,0-11.02-9.45-11.02-17.01,0-10.39,3.15-31.39,16.9-31.39,7.66,0,10.6,6.51,10.6,13.23v1.78ZM664.74,240.11c-8.61,0-10.18,20.68-10.18,26.77,0,3.68.53,10.6,5.56,10.6,8.4,0,9.87-20.47,9.87-26.46,0-3.78-.11-10.92-5.25-10.92Z" style="fill:#231f20;"/><path d="M685.47,282.32h-5.88l9.45-76.54h5.77l-9.34,76.54Z" style="fill:#231f20;"/><path d="M722.24,249.67c0,10.5-2.1,33.39-16.48,33.39-9.55,0-11.02-9.45-11.02-17.01,0-10.39,3.15-31.39,16.9-31.39,7.67,0,10.6,6.51,10.6,13.23v1.78ZM710.9,240.11c-8.61,0-10.18,20.68-10.18,26.77,0,3.68.53,10.6,5.56,10.6,8.4,0,9.87-20.47,9.87-26.46,0-3.78-.1-10.92-5.25-10.92Z" style="fill:#231f20;"/><path d="M744.54,241.48c-7.88,0-8.61,6.09-9.34,12.39l-3.57,28.45h-5.88l5.88-46.93h5.77l-.74,6.09c2-3.36,4.41-6.61,8.71-6.82l-.84,6.82Z" style="fill:#231f20;"/><path d="M1067.14,235.85c-6.88,0-12.45-5.58-12.45-12.45s5.58-12.46,12.45-12.46,12.42,5.62,12.42,12.46-5.54,12.45-12.42,12.45ZM1067.14,212.71c-5.87,0-10.51,4.82-10.51,10.65s4.64,10.73,10.51,10.73,10.47-4.9,10.47-10.69-4.57-10.69-10.47-10.69ZM1069.19,230.63l-2.95-6.34v6.34h-2.52v-14.51h3.31c2.99,0,4.17.97,4.17,4,0,1.8-.68,3.56-2.7,3.71l3.31,6.8h-2.63ZM1066.88,222.14c1.55,0,1.87-.76,1.87-2.16,0-1.51-.4-2.09-1.98-2.09h-.54v4.25h.65Z" style="fill:#231f20;"/><path d="M355.46,49.53c-6.88,0-12.45-5.58-12.45-12.45s5.58-12.46,12.45-12.46,12.42,5.62,12.42,12.46-5.54,12.45-12.42,12.45ZM355.46,26.39c-5.87,0-10.51,4.82-10.51,10.65s4.64,10.73,10.51,10.73,10.47-4.9,10.47-10.69-4.57-10.69-10.47-10.69ZM357.51,44.31l-2.95-6.34v6.34h-2.52v-14.51h3.31c2.99,0,4.18.97,4.18,4,0,1.8-.68,3.56-2.7,3.71l3.31,6.8h-2.63ZM355.21,35.82c1.55,0,1.87-.76,1.87-2.16,0-1.51-.4-2.09-1.98-2.09h-.54v4.25h.65Z" style="fill:#231f20;"/><polygon points="437.19 312.52 232.24 123.65 516.06 299.55 437.19 312.52" style="fill:#00aeef;"/><polyline points="568.51 266.35 232.24 123.65 516.02 299.54 568.51 266.35" style="fill:#fff200;"/><polygon points="604.4 223.52 567.74 267.13 232.24 123.65 604.4 223.52" style="fill:#231f20;"/><path d="M268.04,132.99s21.15-26.49,25.42-44.1c4.66-19.21-1.89-33.3-4.15-39.95-.84-2.49-1.56-6.23-1.56-6.23l56.56,8.3S266.57,17.25,234.81,6.36C224.42,2.79,202.45-.37,192.31.03c-50.93,2.01-83.71,29.27-92.07,37.88-7.48,7.71-51.64,59.4-54.8,63.94C32.27,120.77,0,140.08,0,140.08c0,0,28.11.98,44.92-11.24,27.17-19.75,36.73-33.62,39.43-37.36,1.95-2.69,8.42-9.83,10.38-9.86,3.11-.05,10.73,32.24,22.31,43.59,25.94,25.42,49.29,25.42,49.29,25.42,0,0-40.99-18.68-45.66-57.59-4.67-38.91,29.41-56.03,33.09-57.47,12.59-4.89,26.53-5.75,26.53-5.75,0,0-15.77,16.99-16.55,31.04-.52,9.33,11.29,48.22,30.09,48.26,16.77.03,32.78-25.03,30.61-43.07-2.19-18.18-6.75-38.91-6.75-38.91,0,0,23.1,2.93,43.59,21.79,9.04,8.32,21.27,23.87,17.12,45.14-4.15,21.27-17.81,37.08-17.81,37.08l7.44,1.84Z" style="fill:#231f20;"/><polygon points="232.24 123.65 353.3 310.86 437.46 312.5 232.24 123.65" style="fill:#ec008c;"/><path d="M796.99,221.63c-2.42-1.79-4.62-3.04-7.66-3.04-4.41,0-7.88,2.73-10.08,6.4-5.25,8.5-7.03,26.14-7.03,36.12,0,6.3.63,16.8,9.24,16.8,3.36,0,6.19-1.36,8.92-3.15l-.74,6.51c-2.83,1.79-5.98,2.94-9.34,2.94-12.07,0-14.91-12.81-14.91-22.47,0-12.28,3.04-32.65,10.71-42.42,3.36-4.2,8.19-7.03,13.65-7.03,2.83,0,5.77.52,8.08,2.21l-.84,7.14Z" style="fill:#231f20;"/><path d="M822.4,250.61c0,10.5-2.1,33.39-16.48,33.39-9.55,0-11.03-9.45-11.03-17.01,0-10.39,3.15-31.39,16.9-31.39,7.67,0,10.61,6.51,10.61,13.23v1.78ZM811.06,241.06c-8.61,0-10.18,20.68-10.18,26.77,0,3.67.52,10.6,5.56,10.6,8.4,0,9.87-20.47,9.87-26.46,0-3.78-.11-10.92-5.25-10.92Z" style="fill:#231f20;"/><path d="M837.04,240.11c2.52-2.52,5.88-4.51,9.45-4.51,5.35,0,7.88,3.57,7.88,8.61,0,1.47-.11,2.94-.32,4.31l-4.2,34.75h-5.88l4.09-33.7c.21-1.36.42-2.73.42-4.09,0-2.83-1.47-5.04-4.41-5.04-6.4,0-7.88,6.19-8.4,11.23l-3.88,31.6h-5.88l5.77-46.93h5.78l-.42,3.78Z" style="fill:#231f20;"/><path d="M879.84,245.89c-1.79-2.52-3.99-4.83-7.35-4.83-3.88,0-6.61,3.36-6.61,7.14,0,7.98,12.28,10.29,12.28,20.58,0,7.87-5.99,15.22-14.07,15.22-3.25,0-5.88-1.15-8.19-3.25l.73-6.93c2,2.52,4.2,4.62,7.67,4.62,4.41,0,7.66-4.1,7.66-8.29,0-7.98-12.18-11.55-12.18-21.1,0-7.24,5.46-13.44,12.91-13.44,3.15,0,5.56,1.05,7.88,3.04l-.74,7.24Z" style="fill:#231f20;"/><path d="M909.94,250.61c0,10.5-2.1,33.39-16.48,33.39-9.55,0-11.03-9.45-11.03-17.01,0-10.39,3.15-31.39,16.9-31.39,7.67,0,10.61,6.51,10.61,13.23v1.78ZM898.6,241.06c-8.61,0-10.18,20.68-10.18,26.77,0,3.67.52,10.6,5.56,10.6,8.4,0,9.87-20.47,9.87-26.46,0-3.78-.11-10.92-5.25-10.92Z" style="fill:#231f20;"/><path d="M932.24,242.42c-7.88,0-8.61,6.09-9.34,12.39l-3.57,28.45h-5.88l5.88-46.93h5.77l-.74,6.09c2-3.36,4.41-6.61,8.71-6.82l-.84,6.82Z" style="fill:#231f20;"/><path d="M954.07,241.79h-7.77l-5.14,41.47h-5.77l5.14-41.47h-4.93l.63-5.46h5.04l1.58-13.33h5.78l-1.58,13.33h7.66l-.63,5.46Z" style="fill:#231f20;"/><path d="M958.95,283.26h-5.88l5.77-46.93h5.78l-5.67,46.93ZM963.04,225.94c-2.21,0-3.88-1.68-3.88-3.78,0-2.73,2.31-5.04,5.04-5.04,2.1,0,3.78,1.68,3.78,3.88,0,2.73-2.31,4.94-4.93,4.94Z" style="fill:#231f20;"/><path d="M992.79,271.82c-.95,7.45-6.09,12.18-13.65,12.18-6.4,0-10.5-3.67-10.5-10.18,0-.63,0-1.36.1-1.99l4.3-35.49h5.88l-3.78,30.55c-.21,1.79-.42,3.67-.42,5.35,0,3.78,1.26,6.19,5.25,6.19,6.51,0,6.93-6.72,7.56-11.55l3.78-30.55h5.77l-4.3,35.49Z" style="fill:#231f20;"/><path d="M1011.05,240.22c2.52-2.52,5.56-4.62,8.92-4.62,3.99,0,6.61,1.78,7.88,5.46,2.94-3.15,5.77-5.46,10.29-5.46,5.77,0,8.61,3.15,8.61,8.4,0,1.47-.21,2.94-.42,4.31l-4.2,34.96h-5.88l4.3-34.75c.1-.84.21-1.89.21-2.83,0-3.15-1.26-5.25-4.62-5.25-2.94,0-5.77,2.1-6.93,4.83-.94,2.31-1.36,5.46-1.68,7.98l-3.67,30.03h-5.77l4.2-34.65c.11-.95.21-2.1.21-3.15,0-2.83-1.05-5.04-4.09-5.04-2.31,0-4.72,1.16-6.09,3.04-2.1,2.83-2.62,7.24-3.04,10.71l-3.57,29.08h-5.88l5.77-46.93h5.88l-.42,3.88Z" style="fill:#231f20;"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-3f899830-4184-486c-a566-1cffe215520e" xmlns="http://www.w3.org/2000/svg" width="204.03mm" height="109.78mm" viewBox="0 0 578.35 311.19"><g id="uuid-25784d54-943b-4b01-b576-3d7f69fdbce8"><polygon points="559.35 193.34 535.58 229.18 198.46 109.98 559.35 193.34" style="fill:#090909;"/><path d="M247.12,121.84c1.04-.29,26.48-26.16,16.58-45.06-10.14-19.37-18.37-28.88-41.23-37.17-2.3-.84-11.56-4.75-12.35-.96-.97,4.68,15.92,6.23,18.43,24.42.42,3.07,5.19,40.48-33.25,39.72-31.14-.61-32.48-28.24-32.17-33.4,1.17-19.86,19.05-24.37,17-28.89-3.43-7.57-49.76,5.93-49.11,43.12.52,29.72,31.74,51.88,45.55,62.27-11.77-3.6-27.1-9.3-40.92-17.32-28.63-16.6-28.79-33.39-29.04-43.08,0,0-24.83,28.9-48.85,40.91-27.03,13.51-38.77,9.08-38.77,9.08,0,0,19.27-7.09,52.72-43.64C93.75,67.76,118.45,6.77,204.34,10.37c62.03,2.6,72.5,30.07,133.15,45.47-25.32,3.44-61.51-4.64-61.51-4.64,0,0,6.14,1.23,7.87,25.16.91,12.49-5.46,35.11-21.28,49.12l-15.45-3.63Z" style="fill:#090909;"/><polygon points="198.46 109.98 467.57 269.5 392.69 278.54 198.46 109.98" style="fill:#359cd7;"/><polygon points="198.46 109.98 382.43 280.33 303.52 280.33 198.46 109.98" style="fill:#cd1e75;"/><path d="M275.49,234.83l-1-.5s.64-.13,1,.5Z" style="fill:#db3e92;"/><path d="M198.46,109.98c107.3,38.66,329.73,126.43,329.73,126.43l-51.94,28.36s-187.43-104.16-277.79-154.8Z" style="fill:#f0e92a;"/><path d="M234.49,130.83l-1.5-.5c.12.07.73.04,1.5.5Z" style="fill:#f4f5c6;"/></g><path d="M532.11,289.65c-9.12,0-16.53-7.41-16.53-16.53s7.41-16.53,16.53-16.53,16.48,7.45,16.48,16.53-7.36,16.53-16.48,16.53ZM532.11,258.93c-7.79,0-13.95,6.4-13.95,14.14s6.16,14.24,13.95,14.24,13.9-6.5,13.9-14.19-6.07-14.19-13.9-14.19ZM534.84,282.72l-3.92-8.41v8.41h-3.34v-19.25h4.4c3.97,0,5.54,1.29,5.54,5.3,0,2.39-.91,4.73-3.58,4.92l4.4,9.03h-3.49ZM531.78,271.45c2.05,0,2.48-1,2.48-2.87,0-2.01-.53-2.77-2.63-2.77h-.72v5.64h.86Z" style="fill:#231f20;"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-75011c32-23f5-4667-82af-3063520eb52e" xmlns="http://www.w3.org/2000/svg" width="213.22mm" height="110.25mm" viewBox="0 0 604.4 312.52"><path d="M355.46,49.53c-6.88,0-12.45-5.58-12.45-12.45s5.58-12.46,12.45-12.46,12.42,5.62,12.42,12.46-5.54,12.45-12.42,12.45ZM355.46,26.39c-5.87,0-10.51,4.82-10.51,10.65s4.64,10.73,10.51,10.73,10.47-4.9,10.47-10.69-4.57-10.69-10.47-10.69ZM357.51,44.31l-2.95-6.34v6.34h-2.52v-14.51h3.31c2.99,0,4.18.97,4.18,4,0,1.8-.68,3.56-2.7,3.71l3.31,6.8h-2.63ZM355.21,35.82c1.55,0,1.87-.76,1.87-2.16,0-1.51-.4-2.09-1.98-2.09h-.54v4.25h.65Z" style="fill:#231f20;"/><polygon points="437.19 312.52 232.24 123.65 516.06 299.55 437.19 312.52" style="fill:#00aeef;"/><polyline points="568.51 266.35 232.24 123.65 516.02 299.54 568.51 266.35" style="fill:#fff200;"/><polygon points="604.4 223.52 567.74 267.13 232.24 123.65 604.4 223.52" style="fill:#231f20;"/><path d="M268.04,132.99s21.15-26.49,25.42-44.1c4.66-19.21-1.89-33.3-4.15-39.95-.84-2.49-1.56-6.23-1.56-6.23l56.56,8.3S266.57,17.25,234.81,6.36C224.42,2.79,202.45-.37,192.31.03c-50.93,2.01-83.71,29.27-92.07,37.88-7.48,7.71-51.64,59.4-54.8,63.94C32.27,120.77,0,140.08,0,140.08c0,0,28.11.98,44.92-11.24,27.17-19.75,36.73-33.62,39.43-37.36,1.95-2.69,8.42-9.83,10.38-9.86,3.11-.05,10.73,32.24,22.31,43.59,25.94,25.42,49.29,25.42,49.29,25.42,0,0-40.99-18.68-45.66-57.59-4.67-38.91,29.41-56.03,33.09-57.47,12.59-4.89,26.53-5.75,26.53-5.75,0,0-15.77,16.99-16.55,31.04-.52,9.33,11.29,48.22,30.09,48.26,16.77.03,32.78-25.03,30.61-43.07-2.19-18.18-6.75-38.91-6.75-38.91,0,0,23.1,2.93,43.59,21.79,9.04,8.32,21.27,23.87,17.12,45.14-4.15,21.27-17.81,37.08-17.81,37.08l7.44,1.84Z" style="fill:#231f20;"/><polygon points="232.24 123.65 353.3 310.86 437.46 312.5 232.24 123.65" style="fill:#ec008c;"/></svg>
|