metanorma-taste 0.0.4 → 0.1.2
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 +23 -15
- data/data/icc/config.yaml +5 -1
- data/data/icc/copyright.adoc +10 -5
- data/data/icc/htmlcoverpage.html +18 -0
- data/data/icc/htmlstylesheet-override.scss +14 -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 +293 -80
- data/lib/metanorma/taste/base_override.rb +30 -0
- data/lib/metanorma/taste/doctype_config.rb +20 -0
- data/lib/metanorma/taste/taste_config.rb +53 -0
- data/lib/metanorma/taste/version.rb +1 -1
- data/lib/metanorma/taste_register.rb +195 -57
- data/metanorma-taste.gemspec +1 -14
- metadata +15 -189
- data/data/icc/icc.png +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c526c9f410e607e4e5e8d2762a5b579c2daf1b3d1eda8b9206fe53a81cdc975
|
4
|
+
data.tar.gz: afa5c3d412d33e17d771dc4f92c605328d62a2268477f71d53fdc65a1e66d364
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5179c044951e81372db5d7d14915dc0345ea7dc76fb624dd48a5d2f4a5e3de74eb90eb0712e8d9db7fb959478049eac7dae6ea297b67d17ee633d9b0391ad71f
|
7
|
+
data.tar.gz: 473502639257573b2a5376fc607d3ece135fb2d38edb7b76ea31824a41c5e13e725854c5f9b17aaf062c8b2b18000dc6bc21dc9ea25ebc68e04d1ac0a25b9214
|
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
@@ -9,7 +9,8 @@ image:https://img.shields.io/github/commits-since/metanorma/metanorma-taste/late
|
|
9
9
|
|
10
10
|
=== Overview
|
11
11
|
|
12
|
-
A **Metanorma Taste** is a lightweight, configuration-only customization of an
|
12
|
+
A **Metanorma Taste** is a lightweight, configuration-only customization of an
|
13
|
+
existing Metanorma flavor.
|
13
14
|
|
14
15
|
Unlike a full Metanorma flavor, a taste does not define its own document
|
15
16
|
structure, validation rules, or processing logic. Instead, it provides
|
@@ -67,9 +68,12 @@ The gem is distributed within Metanorma.
|
|
67
68
|
|
68
69
|
=== Compiling documents
|
69
70
|
|
70
|
-
If a taste abbreviation is used instead of a flavor in compiling a Metanorma
|
71
|
-
|
72
|
-
|
71
|
+
If a taste abbreviation is used instead of a flavor in compiling a Metanorma
|
72
|
+
document, e.g. as the document attribute `:flavor: icc` or
|
73
|
+
`:mn-document-class: icc`, this gem is used to process that document as an
|
74
|
+
instance of its base flavor, and will substitute the necessary configuration
|
75
|
+
files and document attributes required to get the document to render as
|
76
|
+
expected.
|
73
77
|
|
74
78
|
=== Basic usage
|
75
79
|
|
@@ -90,16 +94,20 @@ taste.process_input_adoc_overrides(attributes, options)
|
|
90
94
|
[source,ruby]
|
91
95
|
----
|
92
96
|
# List all available tastes
|
93
|
-
Metanorma::TasteRegister.
|
94
|
-
# => [:icc]
|
97
|
+
Metanorma::TasteRegister.available_tastes
|
98
|
+
# => [:icc, :elf, :enosema]
|
95
99
|
|
96
100
|
# Get information about a specific taste
|
97
|
-
Metanorma::TasteRegister.
|
98
|
-
# =>
|
101
|
+
config = Metanorma::TasteRegister.get_config(:icc)
|
102
|
+
# => #<Metanorma::Taste::TasteConfig:...>
|
103
|
+
puts config.owner
|
104
|
+
# => "International Color Consortium"
|
105
|
+
puts config.base_flavor
|
106
|
+
# => "iso"
|
99
107
|
|
100
108
|
# Get flavor aliases (mapping to base flavours)
|
101
|
-
Metanorma::
|
102
|
-
# => { icc: :iso }
|
109
|
+
Metanorma::TasteRegister.aliases
|
110
|
+
# => { icc: :iso, elf: :iso, enosema: :iso }
|
103
111
|
|
104
112
|
# Demonstrate dynamic class creation
|
105
113
|
taste = Metanorma::TasteRegister.get(:icc)
|
@@ -350,7 +358,7 @@ The metanorma-taste system follows this architecture:
|
|
350
358
|
| (Singleton) | | |
|
351
359
|
| +available_tastes|<>---->| +flavor |
|
352
360
|
| +get(flavor) | | +config |
|
353
|
-
| +
|
361
|
+
| +get_config() | | +directory |
|
354
362
|
+--------+---------+ | +process_input_* |
|
355
363
|
| +-------------------+
|
356
364
|
|
|
@@ -359,10 +367,10 @@ The metanorma-taste system follows this architecture:
|
|
359
367
|
| data/ directory| | Dynamic Classes |
|
360
368
|
| | | |
|
361
369
|
| +{taste}/ |------>| Taste::Icc |
|
362
|
-
| config.yaml | | Taste::
|
363
|
-
| copyright.adoc | |
|
364
|
-
| i18n.yaml |
|
365
|
-
+------------------+
|
370
|
+
| config.yaml | | Taste::Elf |
|
371
|
+
| copyright.adoc | | Taste::Enosema |
|
372
|
+
| i18n.yaml | | (auto-generated) |
|
373
|
+
+------------------+ +-------------------+
|
366
374
|
----
|
367
375
|
|
368
376
|
=== Components
|
data/data/icc/config.yaml
CHANGED
@@ -4,12 +4,16 @@ owner: International Color Consortium
|
|
4
4
|
base-flavor: iso
|
5
5
|
copyright-notice: copyright.adoc
|
6
6
|
i18n-dictionary: i18n.yaml
|
7
|
-
publisher-logo: icc.
|
7
|
+
publisher-logo: icc-full.svg
|
8
|
+
htmlcoverpage: htmlcoverpage.html
|
9
|
+
htmlstylesheet-override: htmlstylesheet-override.scss
|
8
10
|
base-override:
|
9
11
|
publisher: International Color Consortium
|
10
12
|
publisher_abbr: ICC
|
11
13
|
presentation-metadata-color-secondary: '#376795'
|
12
14
|
presentation-metadata-backcover-text: color.org
|
15
|
+
body-font: Arial, 'Helvetica Neue', Helvetica, sans-serif
|
16
|
+
header-font: Arial, 'Helvetica Neue', Helvetica, sans-serif
|
13
17
|
doctypes:
|
14
18
|
- taste: specification # Specification # The name goes into i18n.yaml
|
15
19
|
base: international-standard
|
data/data/icc/copyright.adoc
CHANGED
@@ -1,14 +1,19 @@
|
|
1
1
|
== copyright-statement
|
2
|
+
|
3
|
+
// This is approved by ICC at metanorma/metanorma-taste#16
|
4
|
+
// Modified from mn-samples-icc's copyright-2004.adoc with the removal of the
|
5
|
+
// phrase 'modify, '.
|
6
|
+
|
2
7
|
=== Copyright notice
|
3
8
|
|
4
|
-
Copyright (c) {{ docyear }} International Color Consortium
|
9
|
+
Copyright (c) {{ docyear }} International Color Consortium (R)
|
5
10
|
|
6
11
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
7
12
|
this Specification (the "Specification") to exploit the Specification without
|
8
|
-
restriction including, without limitation, the rights to use, copy,
|
9
|
-
|
10
|
-
|
11
|
-
|
13
|
+
restriction including, without limitation, the rights to use, copy, merge,
|
14
|
+
publish, distribute, and/or sublicense, copies of the Specification, and to
|
15
|
+
permit persons to whom the Specification is furnished to do so, subject to the
|
16
|
+
following conditions:
|
12
17
|
|
13
18
|
Elements of this Specification may be the subject of intellectual property
|
14
19
|
rights of third parties throughout the world including, without limitation,
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<div id='toggle'> <span>•</span> </div>
|
2
|
+
|
3
|
+
<p class="coverpage_docnumber"><b>{{ docnumber }}</b></p>
|
4
|
+
|
5
|
+
<div class="logo">
|
6
|
+
<img src="{{ copublisher_logos[0] }}"/>
|
7
|
+
</div>
|
8
|
+
|
9
|
+
<div class="docidentifier">
|
10
|
+
<p><b>
|
11
|
+
{{doctype_display}}<br/>
|
12
|
+
{{docnumber}}
|
13
|
+
</b></p>
|
14
|
+
</div>
|
15
|
+
|
16
|
+
<div>
|
17
|
+
<p class="doctitle-en">{{ doctitle }}</p>
|
18
|
+
</div>
|
@@ -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>
|