lutaml 0.10.6 → 0.10.8
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/.rubocop_todo.yml +5 -203
- data/lib/lutaml/cli/uml/spa_command.rb +4 -0
- data/lib/lutaml/uml_repository/static_site/generator.rb +33 -1
- data/lib/lutaml/uml_repository/static_site/serializers/diagram_serializer.rb +21 -1
- data/lib/lutaml/version.rb +1 -1
- data/templates/static_site/assets/images/lutaml-full.svg +1 -0
- data/templates/static_site/assets/images/lutaml-icon.svg +1 -0
- data/templates/static_site/assets/scripts/core/state.js +28 -1
- data/templates/static_site/assets/scripts/ui/sidebar.js +57 -148
- data/templates/static_site/assets/styles/00-variables.css +128 -128
- data/templates/static_site/assets/styles/01-reset.css +20 -30
- data/templates/static_site/assets/styles/02-base.css +105 -110
- data/templates/static_site/assets/styles/03-layout.css +51 -101
- data/templates/static_site/assets/styles/04-components.css +636 -587
- data/templates/static_site/assets/styles/05-utilities.css +8 -74
- data/templates/static_site/assets/styles/06-diagrams.css +43 -246
- data/templates/static_site/components/content.liquid +277 -304
- data/templates/static_site/components/header.liquid +99 -119
- data/templates/static_site/components/sidebar.liquid +69 -39
- data/templates/static_site/multi_file.liquid +9 -6
- data/templates/static_site/single_file.liquid +9 -4
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '051396a82ca3536e91e66975e0719e25868b3d5bd94e3af93ccc5537e10402fe'
|
|
4
|
+
data.tar.gz: 25f158495d42220c0179ddcf978a4f9f87931e97b55e1eff3ecd5fb5a8de16a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4db9674d30585deac30dd924bdc5be7f2ddf4deb872dd1cc2627b6357df8f1f5a898a5615bf403107e058fbc3f247eddd89c5cf4404163af020c9fdb1339d5c6
|
|
7
|
+
data.tar.gz: 4f0d5e16b0eb6081da73709c3988e776c2af10c050f0fc78379af319c78fc242ea149f252e784561b159a0f200773d771a77fe1c6834c8e532ef8636be9cdfd8
|
data/.rubocop_todo.yml
CHANGED
|
@@ -1,163 +1,18 @@
|
|
|
1
1
|
# This configuration was generated by
|
|
2
2
|
# `rubocop --auto-gen-config`
|
|
3
|
-
# on 2026-05-
|
|
3
|
+
# on 2026-05-07 10:38:32 UTC using RuboCop version 1.86.1.
|
|
4
4
|
# The point is for the user to remove these configuration records
|
|
5
5
|
# one by one as the offenses are removed from the code base.
|
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
|
8
8
|
|
|
9
|
-
# Offense count:
|
|
10
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
11
|
-
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
|
12
|
-
# SupportedStyles: with_first_argument, with_fixed_indentation
|
|
13
|
-
Layout/ArgumentAlignment:
|
|
14
|
-
Exclude:
|
|
15
|
-
- 'lib/lutaml/qea/factory/generalization_builder.rb'
|
|
16
|
-
- 'lib/lutaml/uml_repository/exporters/markdown_exporter.rb'
|
|
17
|
-
- 'lib/lutaml/uml_repository/static_site/data_transformer.rb'
|
|
18
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/inheritance_resolver.rb'
|
|
19
|
-
|
|
20
|
-
# Offense count: 11
|
|
21
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
22
|
-
# Configuration parameters: EnforcedStyleAlignWith.
|
|
23
|
-
# SupportedStylesAlignWith: either, start_of_block, start_of_line
|
|
24
|
-
Layout/BlockAlignment:
|
|
25
|
-
Exclude:
|
|
26
|
-
- 'lib/lutaml/qea/factory/class_transformer.rb'
|
|
27
|
-
- 'lib/lutaml/uml_repository/exporters/markdown/class_page_builder.rb'
|
|
28
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/inheritance_resolver.rb'
|
|
29
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/package_serializer.rb'
|
|
30
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/package_tree_builder.rb'
|
|
31
|
-
- 'spec/lutaml/uml_repository/package_exporter_spec.rb'
|
|
32
|
-
- 'spec/lutaml/uml_repository/static_site/template_file_system_spec.rb'
|
|
33
|
-
|
|
34
|
-
# Offense count: 11
|
|
35
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
36
|
-
Layout/BlockEndNewline:
|
|
37
|
-
Exclude:
|
|
38
|
-
- 'lib/lutaml/qea/factory/class_transformer.rb'
|
|
39
|
-
- 'lib/lutaml/uml_repository/exporters/markdown/class_page_builder.rb'
|
|
40
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/inheritance_resolver.rb'
|
|
41
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/package_serializer.rb'
|
|
42
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/package_tree_builder.rb'
|
|
43
|
-
- 'spec/lutaml/uml_repository/package_exporter_spec.rb'
|
|
44
|
-
- 'spec/lutaml/uml_repository/static_site/template_file_system_spec.rb'
|
|
45
|
-
|
|
46
|
-
# Offense count: 2
|
|
47
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
48
|
-
Layout/ClosingParenthesisIndentation:
|
|
49
|
-
Exclude:
|
|
50
|
-
- 'lib/lutaml/uml_repository/static_site/data_transformer.rb'
|
|
51
|
-
|
|
52
|
-
# Offense count: 1
|
|
53
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
54
|
-
Layout/ElseAlignment:
|
|
55
|
-
Exclude:
|
|
56
|
-
- 'lib/lutaml/uml_repository/static_site/data_transformer.rb'
|
|
57
|
-
|
|
58
|
-
# Offense count: 16
|
|
59
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
60
|
-
Layout/EmptyLineAfterGuardClause:
|
|
61
|
-
Exclude:
|
|
62
|
-
- 'lib/lutaml/qea/factory/association_builder.rb'
|
|
63
|
-
- 'lib/lutaml/uml/inheritance_walker.rb'
|
|
64
|
-
- 'lib/lutaml/uml_repository/static_site/data_transformer.rb'
|
|
65
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/class_serializer.rb'
|
|
66
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/diagram_serializer.rb'
|
|
67
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/inheritance_resolver.rb'
|
|
68
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/package_serializer.rb'
|
|
69
|
-
|
|
70
|
-
# Offense count: 4
|
|
71
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
72
|
-
# Configuration parameters: EmptyLineBetweenMethodDefs, EmptyLineBetweenClassDefs, EmptyLineBetweenModuleDefs, DefLikeMacros, AllowAdjacentOneLineDefs, NumberOfEmptyLines.
|
|
73
|
-
Layout/EmptyLineBetweenDefs:
|
|
74
|
-
Exclude:
|
|
75
|
-
- 'lib/lutaml/cli/interactive_shell/command_base.rb'
|
|
76
|
-
|
|
77
|
-
# Offense count: 1
|
|
78
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
79
|
-
Layout/EmptyLinesAfterModuleInclusion:
|
|
80
|
-
Exclude:
|
|
81
|
-
- 'lib/lutaml/uml_repository/repository.rb'
|
|
82
|
-
|
|
83
|
-
# Offense count: 1
|
|
84
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
85
|
-
# Configuration parameters: EnforcedStyleAlignWith.
|
|
86
|
-
# SupportedStylesAlignWith: keyword, variable, start_of_line
|
|
87
|
-
Layout/EndAlignment:
|
|
88
|
-
Exclude:
|
|
89
|
-
- 'lib/lutaml/uml_repository/static_site/data_transformer.rb'
|
|
90
|
-
|
|
91
|
-
# Offense count: 2
|
|
92
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
93
|
-
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
|
94
|
-
# SupportedStyles: consistent, consistent_relative_to_receiver, special_for_inner_method_call, special_for_inner_method_call_in_parentheses
|
|
95
|
-
Layout/FirstArgumentIndentation:
|
|
96
|
-
Exclude:
|
|
97
|
-
- 'lib/lutaml/uml_repository/static_site/data_transformer.rb'
|
|
98
|
-
|
|
99
|
-
# Offense count: 2
|
|
100
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
101
|
-
# Configuration parameters: AllowMultipleStyles, EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle.
|
|
102
|
-
# SupportedHashRocketStyles: key, separator, table
|
|
103
|
-
# SupportedColonStyles: key, separator, table
|
|
104
|
-
# SupportedLastArgumentHashStyles: always_inspect, always_ignore, ignore_implicit, ignore_explicit
|
|
105
|
-
Layout/HashAlignment:
|
|
106
|
-
Exclude:
|
|
107
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/class_serializer.rb'
|
|
108
|
-
- 'spec/lutaml/uml_repository/package_exporter_spec.rb'
|
|
109
|
-
|
|
110
|
-
# Offense count: 24
|
|
111
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
112
|
-
# Configuration parameters: Width, EnforcedStyleAlignWith, AllowedPatterns.
|
|
113
|
-
# SupportedStylesAlignWith: start_of_line, relative_to_receiver
|
|
114
|
-
Layout/IndentationWidth:
|
|
115
|
-
Exclude:
|
|
116
|
-
- 'lib/lutaml/qea/factory/class_transformer.rb'
|
|
117
|
-
- 'lib/lutaml/uml_repository/exporters/markdown/class_page_builder.rb'
|
|
118
|
-
- 'lib/lutaml/uml_repository/static_site/data_transformer.rb'
|
|
119
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/inheritance_resolver.rb'
|
|
120
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/package_serializer.rb'
|
|
121
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/package_tree_builder.rb'
|
|
122
|
-
- 'spec/lutaml/uml_repository/package_exporter_spec.rb'
|
|
123
|
-
- 'spec/lutaml/uml_repository/static_site/template_file_system_spec.rb'
|
|
124
|
-
|
|
125
|
-
# Offense count: 192
|
|
9
|
+
# Offense count: 172
|
|
126
10
|
# This cop supports safe autocorrection (--autocorrect).
|
|
127
11
|
# Configuration parameters: Max, AllowHeredoc, AllowURI, AllowQualifiedName, URISchemes, AllowRBSInlineAnnotation, AllowCopDirectives, AllowedPatterns, SplitStrings.
|
|
128
12
|
# URISchemes: http, https
|
|
129
13
|
Layout/LineLength:
|
|
130
14
|
Enabled: false
|
|
131
15
|
|
|
132
|
-
# Offense count: 1
|
|
133
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
134
|
-
# Configuration parameters: EnforcedStyle.
|
|
135
|
-
# SupportedStyles: symmetrical, new_line, same_line
|
|
136
|
-
Layout/MultilineMethodCallBraceLayout:
|
|
137
|
-
Exclude:
|
|
138
|
-
- 'lib/lutaml/uml_repository/static_site/data_transformer.rb'
|
|
139
|
-
|
|
140
|
-
# Offense count: 2
|
|
141
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
142
|
-
# Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBraces.
|
|
143
|
-
# SupportedStyles: space, no_space, compact
|
|
144
|
-
# SupportedStylesForEmptyBraces: space, no_space
|
|
145
|
-
Layout/SpaceInsideHashLiteralBraces:
|
|
146
|
-
Exclude:
|
|
147
|
-
- 'lib/lutaml/uml/model_helpers.rb'
|
|
148
|
-
|
|
149
|
-
# Offense count: 11
|
|
150
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
151
|
-
# Configuration parameters: AllowInHeredoc.
|
|
152
|
-
Layout/TrailingWhitespace:
|
|
153
|
-
Exclude:
|
|
154
|
-
- 'lib/lutaml/qea/factory/generalization_builder.rb'
|
|
155
|
-
- 'lib/lutaml/uml_repository/exporters/markdown_exporter.rb'
|
|
156
|
-
- 'lib/lutaml/uml_repository/static_site/data_transformer.rb'
|
|
157
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/class_serializer.rb'
|
|
158
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/inheritance_resolver.rb'
|
|
159
|
-
- 'spec/lutaml/uml_repository/package_exporter_spec.rb'
|
|
160
|
-
|
|
161
16
|
# Offense count: 1
|
|
162
17
|
Lint/BinaryOperatorWithIdenticalOperands:
|
|
163
18
|
Exclude:
|
|
@@ -209,13 +64,6 @@ Lint/MissingSuper:
|
|
|
209
64
|
Exclude:
|
|
210
65
|
- 'lib/lutaml/uml_repository/lazy_repository.rb'
|
|
211
66
|
|
|
212
|
-
# Offense count: 2
|
|
213
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
214
|
-
Lint/RedundantRequireStatement:
|
|
215
|
-
Exclude:
|
|
216
|
-
- 'lib/lutaml/qea/factory/generalization_builder.rb'
|
|
217
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/inheritance_resolver.rb'
|
|
218
|
-
|
|
219
67
|
# Offense count: 1
|
|
220
68
|
# This cop supports safe autocorrection (--autocorrect).
|
|
221
69
|
# Configuration parameters: AllowUnusedKeywordArguments, IgnoreEmptyMethods, IgnoreNotImplementedMethods, NotImplementedExceptions.
|
|
@@ -245,7 +93,7 @@ Metrics/BlockLength:
|
|
|
245
93
|
Metrics/CyclomaticComplexity:
|
|
246
94
|
Enabled: false
|
|
247
95
|
|
|
248
|
-
# Offense count:
|
|
96
|
+
# Offense count: 67
|
|
249
97
|
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
|
|
250
98
|
Metrics/MethodLength:
|
|
251
99
|
Max: 62
|
|
@@ -320,7 +168,7 @@ RSpec/ContextWording:
|
|
|
320
168
|
RSpec/DescribeClass:
|
|
321
169
|
Enabled: false
|
|
322
170
|
|
|
323
|
-
# Offense count:
|
|
171
|
+
# Offense count: 654
|
|
324
172
|
# Configuration parameters: CountAsOne.
|
|
325
173
|
RSpec/ExampleLength:
|
|
326
174
|
Max: 30
|
|
@@ -374,7 +222,7 @@ RSpec/MessageSpies:
|
|
|
374
222
|
- 'spec/lutaml/uml_repository/presenters/diagram_presenter_spec.rb'
|
|
375
223
|
- 'spec/lutaml/uml_repository/repository_spec.rb'
|
|
376
224
|
|
|
377
|
-
# Offense count:
|
|
225
|
+
# Offense count: 38
|
|
378
226
|
RSpec/MultipleExpectations:
|
|
379
227
|
Max: 6
|
|
380
228
|
|
|
@@ -430,23 +278,6 @@ Security/MarshalLoad:
|
|
|
430
278
|
Exclude:
|
|
431
279
|
- 'lib/lutaml/uml_repository/package_loader.rb'
|
|
432
280
|
|
|
433
|
-
# Offense count: 15
|
|
434
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
435
|
-
# Configuration parameters: EnforcedStyle, ProceduralMethods, FunctionalMethods, AllowedMethods, AllowedPatterns, AllowBracesOnProceduralOneLiners, BracesRequiredMethods.
|
|
436
|
-
# SupportedStyles: line_count_based, semantic, braces_for_chaining, always_braces
|
|
437
|
-
# ProceduralMethods: benchmark, bm, bmbm, create, each_with_object, measure, new, realtime, tap, with_object
|
|
438
|
-
# FunctionalMethods: let, let!, subject, watch
|
|
439
|
-
# AllowedMethods: lambda, proc, it
|
|
440
|
-
Style/BlockDelimiters:
|
|
441
|
-
Exclude:
|
|
442
|
-
- 'lib/lutaml/qea/factory/class_transformer.rb'
|
|
443
|
-
- 'lib/lutaml/uml_repository/exporters/markdown/class_page_builder.rb'
|
|
444
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/inheritance_resolver.rb'
|
|
445
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/package_serializer.rb'
|
|
446
|
-
- 'lib/lutaml/uml_repository/static_site/serializers/package_tree_builder.rb'
|
|
447
|
-
- 'spec/lutaml/uml_repository/package_exporter_spec.rb'
|
|
448
|
-
- 'spec/lutaml/uml_repository/static_site/template_file_system_spec.rb'
|
|
449
|
-
|
|
450
281
|
# Offense count: 2
|
|
451
282
|
# This cop supports safe autocorrection (--autocorrect).
|
|
452
283
|
Style/ComparableClamp:
|
|
@@ -464,19 +295,6 @@ Style/EvalWithLocation:
|
|
|
464
295
|
Exclude:
|
|
465
296
|
- 'spec/lutaml/cli/uml/search_command_spec.rb'
|
|
466
297
|
|
|
467
|
-
# Offense count: 1
|
|
468
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
469
|
-
Style/MultilineTernaryOperator:
|
|
470
|
-
Exclude:
|
|
471
|
-
- 'lib/lutaml/uml_repository/static_site/data_transformer.rb'
|
|
472
|
-
|
|
473
|
-
# Offense count: 1
|
|
474
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
475
|
-
# Configuration parameters: AllowMethodComparison, ComparisonsThreshold.
|
|
476
|
-
Style/MultipleComparison:
|
|
477
|
-
Exclude:
|
|
478
|
-
- 'lib/lutaml/cli/interactive_shell.rb'
|
|
479
|
-
|
|
480
298
|
# Offense count: 1
|
|
481
299
|
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
482
300
|
Style/PartitionInsteadOfDoubleSelect:
|
|
@@ -489,19 +307,3 @@ Style/SafeNavigationChainLength:
|
|
|
489
307
|
Exclude:
|
|
490
308
|
- 'lib/lutaml/qea/validation/attribute_validator.rb'
|
|
491
309
|
- 'lib/lutaml/qea/validation/operation_validator.rb'
|
|
492
|
-
|
|
493
|
-
# Offense count: 1
|
|
494
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
495
|
-
# Configuration parameters: EnforcedStyleForMultiline.
|
|
496
|
-
# SupportedStylesForMultiline: comma, consistent_comma, diff_comma, no_comma
|
|
497
|
-
Style/TrailingCommaInArguments:
|
|
498
|
-
Exclude:
|
|
499
|
-
- 'lib/lutaml/qea/factory/class_transformer.rb'
|
|
500
|
-
|
|
501
|
-
# Offense count: 2
|
|
502
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
503
|
-
# Configuration parameters: EnforcedStyleForMultiline.
|
|
504
|
-
# SupportedStylesForMultiline: comma, consistent_comma, diff_comma, no_comma
|
|
505
|
-
Style/TrailingCommaInHashLiteral:
|
|
506
|
-
Exclude:
|
|
507
|
-
- 'lib/lutaml/cli/interactive_shell.rb'
|
|
@@ -47,6 +47,9 @@ module Lutaml
|
|
|
47
47
|
desc: "Minify HTML/CSS/JS output"
|
|
48
48
|
thor_class.option :theme, type: :string, default: "light",
|
|
49
49
|
desc: "Default theme: 'light' or 'dark'"
|
|
50
|
+
thor_class.option :render_diagrams, type: :boolean, default: false,
|
|
51
|
+
desc: "Render diagram SVGs " \
|
|
52
|
+
"(may increase output size)"
|
|
50
53
|
end
|
|
51
54
|
|
|
52
55
|
def run(input_path) # rubocop:disable Metrics/AbcSize,Metrics/MethodLength
|
|
@@ -169,6 +172,7 @@ module Lutaml
|
|
|
169
172
|
title: options[:title] || "UML Model Browser",
|
|
170
173
|
minify: options[:minify] || false,
|
|
171
174
|
theme: options[:theme] || "light",
|
|
175
|
+
render_diagrams: options[:render_diagrams] || false,
|
|
172
176
|
}
|
|
173
177
|
|
|
174
178
|
Lutaml::UmlRepository::StaticSite.generate(repository,
|
|
@@ -164,7 +164,8 @@ module Lutaml
|
|
|
164
164
|
include_diagrams: config_opts["include_diagrams"] != false,
|
|
165
165
|
format_definitions: config_opts["format_definitions"] != false,
|
|
166
166
|
max_definition_length: config_opts["max_definition_length"],
|
|
167
|
-
}.merge(@options.slice(:include_diagrams, :format_definitions
|
|
167
|
+
}.merge(@options.slice(:include_diagrams, :format_definitions,
|
|
168
|
+
:render_diagrams))
|
|
168
169
|
end
|
|
169
170
|
|
|
170
171
|
def search_options
|
|
@@ -316,10 +317,16 @@ module Lutaml
|
|
|
316
317
|
"apiMode" => false, # Static mode by default
|
|
317
318
|
}
|
|
318
319
|
|
|
320
|
+
images_dir = File.join(@options[:template_path], "assets", "images")
|
|
321
|
+
lutaml_icon = read_svg_asset(images_dir, "lutaml-icon.svg")
|
|
322
|
+
lutaml_full_logo = read_svg_asset(images_dir, "lutaml-full.svg")
|
|
323
|
+
|
|
319
324
|
{
|
|
320
325
|
"config" => JSON.generate(config_hash),
|
|
321
326
|
"data" => data,
|
|
322
327
|
"searchIndex" => search_index,
|
|
328
|
+
"lutamlIcon" => lutaml_icon,
|
|
329
|
+
"lutamlFullLogo" => lutaml_full_logo,
|
|
323
330
|
"buildInfo" => {
|
|
324
331
|
"timestamp" => Time.now.utc.iso8601,
|
|
325
332
|
"generator" => "LutaML Static Site Generator v1.0",
|
|
@@ -333,6 +340,13 @@ module Lutaml
|
|
|
333
340
|
puts " ✓ #{File.basename(path)} (#{File.size(path) / 1024}KB)"
|
|
334
341
|
end
|
|
335
342
|
|
|
343
|
+
def read_svg_asset(images_dir, filename)
|
|
344
|
+
path = File.join(images_dir, filename)
|
|
345
|
+
return "" unless File.exist?(path)
|
|
346
|
+
|
|
347
|
+
File.read(path).strip
|
|
348
|
+
end
|
|
349
|
+
|
|
336
350
|
def generate_assets(output_dir) # rubocop:disable Metrics/MethodLength
|
|
337
351
|
assets_dir = File.join(output_dir, "assets")
|
|
338
352
|
|
|
@@ -347,6 +361,23 @@ module Lutaml
|
|
|
347
361
|
js_path = File.join(assets_dir, "app.js")
|
|
348
362
|
File.write(js_path, js_content)
|
|
349
363
|
puts " ✓ app.js (#{File.size(js_path) / 1024}KB)"
|
|
364
|
+
|
|
365
|
+
# Copy image assets
|
|
366
|
+
copy_image_assets(assets_dir)
|
|
367
|
+
end
|
|
368
|
+
|
|
369
|
+
def copy_image_assets(assets_dir)
|
|
370
|
+
images_src = File.join(@options[:template_path], "assets", "images")
|
|
371
|
+
return unless Dir.exist?(images_src)
|
|
372
|
+
|
|
373
|
+
images_dest = File.join(assets_dir, "images")
|
|
374
|
+
FileUtils.mkdir_p(images_dest)
|
|
375
|
+
Dir.glob(File.join(images_src, "*")).each do |src_file|
|
|
376
|
+
next if File.directory?(src_file)
|
|
377
|
+
|
|
378
|
+
dest_file = File.join(images_dest, File.basename(src_file))
|
|
379
|
+
FileUtils.cp(src_file, dest_file)
|
|
380
|
+
end
|
|
350
381
|
end
|
|
351
382
|
|
|
352
383
|
def build_css
|
|
@@ -358,6 +389,7 @@ module Lutaml
|
|
|
358
389
|
"03-layout.css",
|
|
359
390
|
"04-components.css",
|
|
360
391
|
"05-utilities.css",
|
|
392
|
+
"06-diagrams.css",
|
|
361
393
|
]
|
|
362
394
|
|
|
363
395
|
css_parts = css_files.map do |file|
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
require_relative "../../presenters/diagram_presenter"
|
|
4
|
+
|
|
3
5
|
module Lutaml
|
|
4
6
|
module UmlRepository
|
|
5
7
|
module StaticSite
|
|
@@ -25,13 +27,31 @@ module Lutaml
|
|
|
25
27
|
private
|
|
26
28
|
|
|
27
29
|
def serialize(diagram, id)
|
|
28
|
-
{
|
|
30
|
+
data = {
|
|
29
31
|
id: id,
|
|
30
32
|
xmiId: diagram.xmi_id,
|
|
31
33
|
name: diagram.name,
|
|
32
34
|
type: diagram.diagram_type,
|
|
33
35
|
package: find_diagram_package(diagram),
|
|
36
|
+
objectCount: (diagram.diagram_objects || []).size,
|
|
37
|
+
linkCount: (diagram.diagram_links || []).size,
|
|
34
38
|
}
|
|
39
|
+
|
|
40
|
+
if @options[:render_diagrams]
|
|
41
|
+
svg = render_svg(diagram)
|
|
42
|
+
data[:svg] = svg if svg
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
data
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
def render_svg(diagram)
|
|
49
|
+
return nil unless diagram.diagram_objects&.any?
|
|
50
|
+
|
|
51
|
+
presenter = Presenters::DiagramPresenter.new(diagram, @repository)
|
|
52
|
+
presenter.svg_output
|
|
53
|
+
rescue StandardError
|
|
54
|
+
nil
|
|
35
55
|
end
|
|
36
56
|
|
|
37
57
|
def find_diagram_package(diagram)
|
data/lib/lutaml/version.rb
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="3400" height="900" viewBox="0 0 3400 900"><path d="m1308.91,694.2h-332.56V243.03h89.7v373.76h242.86v77.41Z" style="fill:#2d4087; stroke-width:0px;"/><path d="m1562.39,375.26h85.05v187.71c0,80.73-60.8,137.88-150.83,137.88s-149.17-56.48-149.17-135.88v-189.7h85.38v179.07c0,40.53,26.25,68.11,63.79,68.11,39.54,0,65.78-27.58,65.78-68.11v-179.07Z" style="fill:#2d4087; stroke-width:0px;"/><path d="m1833.82,446.02v131.23c0,33.22,18.6,47.84,47.18,47.84,15.95,0,36.21-2.66,54.15-7.64l7.97,70.76c-19.6,7.64-51.16,12.62-77.08,12.62-70.1,0-117.28-36.21-117.28-111.3v-143.52h-53.82v-70.76h54.15v-102.33h82.72v102.33h92.36v70.76h-90.37Z" style="fill:#2d4087; stroke-width:0px;"/><path d="m1970.37,534.06c0-96.68,66.11-165.45,153.82-165.45,49.5,0,83.06,18.94,103.99,45.18l1.66-38.54h83.39v318.94h-83.39l-1.66-38.54c-20.93,26.58-54.49,45.18-103.99,45.18-87.71,0-153.82-70.1-153.82-166.78Zm170.43-89.37c-51.16,0-85.71,38.54-85.71,89.37s34.55,91.03,85.71,91.03,87.04-39.87,87.04-91.03-36.21-89.37-87.04-89.37Z" style="fill:#2d4087; stroke-width:0px;"/><path d="m2643.13,556.32l-151.83-170.1v307.98h-89.7V243.03h77.74l170.77,202,170.1-202h77.41v451.17h-89.37v-308.31l-150.83,170.43h-14.29Z" style="fill:#2f75b9; stroke-width:0px;"/><path d="m3326.53,694.2h-332.56V243.03h89.7v373.76h242.86v77.41Z" style="fill:#2f75b9; stroke-width:0px;"/><path d="m165.63,610.17c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#dce8f3; stroke-width:0px;"/><path d="m298.66,395.48l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m425.87,612.82c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99,1,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.28-1.01.28Z" style="fill:#dce8f3; stroke-width:0px;"/><path d="m298.66,395.48l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m289.46,683.29c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78s.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#cdc8bd; stroke-width:0px;"/><path d="m301.93,538.21l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45.04-1.46-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m289.46,683.29c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.41.98-1.77.31-.18.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#feffff; stroke-width:0px;"/><path d="m161.92,465.17l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m289.46,683.29c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#feffff; stroke-width:0px;"/><path d="m422.97,467.76l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m165.63,431.12c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#dce8f3; stroke-width:0px;"/><path d="m298.66,216.43l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m425.87,433.77c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99,1,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.28-1.01.28Z" style="fill:#dce8f3; stroke-width:0px;"/><path d="m298.66,216.43l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m289.46,504.24c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78s.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#cdc8bd; stroke-width:0px;"/><path d="m301.93,359.16l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45.04-1.46-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m289.46,504.24c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#feffff; stroke-width:0px;"/><path d="m161.92,286.12l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m289.46,504.24c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#feffff; stroke-width:0px;"/><path d="m422.97,288.71l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m323.93,699.94c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#dce8f3; stroke-width:0px;"/><path d="m456.96,485.25l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m584.17,702.59c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99.99,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.28-1.01.28Z" style="fill:#dce8f3; stroke-width:0px;"/><path d="m456.96,485.25l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m447.76,773.06c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78s.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#cdc8bd; stroke-width:0px;"/><path d="m460.23,627.98l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45s-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m447.76,773.06c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.41.98-1.77.31-.18.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#feffff; stroke-width:0px;"/><path d="m320.22,554.94l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m447.76,773.06c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#fff; stroke-width:0px;"/><path d="m581.27,557.53l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m323.93,520.89c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#dce8f3; stroke-width:0px;"/><path d="m456.96,306.2l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m584.17,523.54c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99.99,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.28-1.01.28Z" style="fill:#dce8f3; stroke-width:0px;"/><path d="m456.96,306.2l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m447.76,594.01c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78s.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#cdc8bd; stroke-width:0px;"/><path d="m460.23,448.93l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45s-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m447.76,594.01c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.41.98-1.77.31-.18.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#feffff; stroke-width:0px;"/><path d="m320.22,375.89l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m447.76,594.01c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#feffff; stroke-width:0px;"/><path d="m581.27,378.48l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m481.22,789.63c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#dce8f3; stroke-width:0px;"/><path d="m614.25,574.94l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m741.46,792.29c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99.99,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.28-1.01.28Z" style="fill:#dce8f3; stroke-width:0px;"/><path d="m614.25,574.94l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m605.05,862.76c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78s.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#cdc8bd; stroke-width:0px;"/><path d="m617.53,717.68l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45.04-1.46-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m605.05,862.76c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.41.98-1.77.31-.18.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#feffff; stroke-width:0px;"/><path d="m477.52,644.63l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m605.05,862.76c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#feffff; stroke-width:0px;"/><path d="m738.56,647.23l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m481.22,610.59c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#dce8f3; stroke-width:0px;"/><path d="m614.25,395.89l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m741.46,613.24c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99.99,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.28-1.01.28Z" style="fill:#dce8f3; stroke-width:0px;"/><path d="m614.25,395.89l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m605.05,683.71c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78s.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#cdc8bd; stroke-width:0px;"/><path d="m617.53,538.63l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45.04-1.46-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m605.05,683.71c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.41.98-1.77.31-.18.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#feffff; stroke-width:0px;"/><path d="m477.52,465.58l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m605.05,683.71c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#feffff; stroke-width:0px;"/><path d="m738.56,468.18l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m323.93,342.75c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#dce8f3; stroke-width:0px;"/><path d="m456.96,128.06l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m584.17,345.4c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99.99,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#dce8f3; stroke-width:0px;"/><path d="m456.96,128.06l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m447.76,415.87c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78.02-.73.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#cdc8bd; stroke-width:0px;"/><path d="m460.23,270.79l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45s-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m447.76,415.87c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#feffff; stroke-width:0px;"/><path d="m320.22,197.75l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#264997; stroke-width:0px;"/><path d="m447.76,415.87c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#feffff; stroke-width:0px;"/><path d="m581.27,200.34l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#264997; stroke-width:0px;"/><g style="opacity:.5;"><path d="m481.22,435.48c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#e9c0a9; stroke-width:0px;"/><path d="m614.25,220.79l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#982c21; stroke-width:0px;"/><path d="m741.46,438.13c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99.99,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.28-1.01.28Z" style="fill:#e9c0a9; stroke-width:0px;"/><path d="m614.25,220.79l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#982c21; stroke-width:0px;"/><path d="m605.05,508.6c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78s.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#e48d67; stroke-width:0px;"/><path d="m617.53,363.53l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45.04-1.46-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#612c2b; stroke-width:0px;"/><path d="m605.05,508.6c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#c67a4f; stroke-width:0px;"/><path d="m477.52,290.48l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#982c21; stroke-width:0px;"/><path d="m605.05,508.6c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#c67a4f; stroke-width:0px;"/><path d="m738.56,293.08l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#982c21; stroke-width:0px;"/></g><g style="opacity:.5;"><path d="m162.24,253.94c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#a4d9cc; stroke-width:0px;"/><path d="m295.28,39.24l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#1e3638; stroke-width:0px;"/><path d="m422.48,256.59c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99,1,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#a4d9cc; stroke-width:0px;"/><path d="m295.28,39.24l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#1e3638; stroke-width:0px;"/><path d="m286.08,327.06c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78.02-.73.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#97cc6c; stroke-width:0px;"/><path d="m298.55,181.98l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45s-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#5f612c; stroke-width:0px;"/><path d="m286.08,327.06c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#66c4ab; stroke-width:0px;"/><path d="m158.54,108.93l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#1e3638; stroke-width:0px;"/><path d="m286.08,327.06c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#66c4ab; stroke-width:0px;"/><path d="m419.58,111.53l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#1e3638; stroke-width:0px;"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="900" viewBox="0 0 900 900"><path d="m165.63,610.17c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#5b9cd4; stroke-width:0px;"/><path d="m298.66,395.48l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#26489e; stroke-width:0px;"/><path d="m425.87,612.82c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99,1,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#5b9cd4; stroke-width:0px;"/><path d="m298.66,395.48l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#26489e; stroke-width:0px;"/><path d="m289.46,683.29c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78.02-.73.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#dbab3e; stroke-width:0px;"/><path d="m301.93,538.21l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45s-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#26489e; stroke-width:0px;"/><g style="opacity:.68;"><path d="m289.46,683.29c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#feffff; stroke-width:0px;"/><path d="m161.92,465.17l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#26489e; stroke-width:0px;"/></g><g style="opacity:.68;"><path d="m289.46,683.29c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#feffff; stroke-width:0px;"/><path d="m422.97,467.76l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#26489e; stroke-width:0px;"/></g><path d="m165.63,431.12c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#5b9cd4; stroke-width:0px;"/><path d="m298.66,216.43l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#26489e; stroke-width:0px;"/><path d="m425.87,433.77c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99,1,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#5b9cd4; stroke-width:0px;"/><path d="m298.66,216.43l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#26489e; stroke-width:0px;"/><path d="m289.46,504.24c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78.02-.73.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#dbab3e; stroke-width:0px;"/><path d="m301.93,359.16l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45s-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#26489e; stroke-width:0px;"/><g style="opacity:.68;"><path d="m289.46,504.24c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#feffff; stroke-width:0px;"/><path d="m161.92,286.12l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#26489e; stroke-width:0px;"/></g><g style="opacity:.68;"><path d="m289.46,504.24c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#feffff; stroke-width:0px;"/><path d="m422.97,288.71l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#26489e; stroke-width:0px;"/></g><path d="m323.93,699.94c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#5b9cd4; stroke-width:0px;"/><path d="m456.96,485.25l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#26489e; stroke-width:0px;"/><path d="m584.17,702.59c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99.99,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#5b9cd4; stroke-width:0px;"/><path d="m456.96,485.25l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#26489e; stroke-width:0px;"/><path d="m447.76,773.06c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78.02-.73.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#dbab3e; stroke-width:0px;"/><path d="m460.23,627.98l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45s-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#26489e; stroke-width:0px;"/><g style="opacity:.68;"><path d="m447.76,773.06c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#feffff; stroke-width:0px;"/><path d="m320.22,554.94l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#26489e; stroke-width:0px;"/></g><g style="opacity:.68;"><path d="m447.76,773.06c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#fff; stroke-width:0px;"/><path d="m581.27,557.53l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#26489e; stroke-width:0px;"/></g><path d="m323.93,520.89c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#5b9cd4; stroke-width:0px;"/><path d="m456.96,306.2l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#26489e; stroke-width:0px;"/><path d="m584.17,523.54c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99.99,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#5b9cd4; stroke-width:0px;"/><path d="m456.96,306.2l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#26489e; stroke-width:0px;"/><path d="m447.76,594.01c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78.02-.73.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#dbab3e; stroke-width:0px;"/><path d="m460.23,448.93l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45s-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#26489e; stroke-width:0px;"/><g style="opacity:.68;"><path d="m447.76,594.01c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#feffff; stroke-width:0px;"/><path d="m320.22,375.89l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#26489e; stroke-width:0px;"/></g><g style="opacity:.68;"><path d="m447.76,594.01c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#feffff; stroke-width:0px;"/><path d="m581.27,378.48l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#26489e; stroke-width:0px;"/></g><path d="m481.22,789.64c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#5b9cd4; stroke-width:0px;"/><path d="m614.25,574.94l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#26489e; stroke-width:0px;"/><path d="m741.46,792.29c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99.99,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#5b9cd4; stroke-width:0px;"/><path d="m614.25,574.94l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#26489e; stroke-width:0px;"/><path d="m605.05,862.76c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78.02-.73.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#dbab3e; stroke-width:0px;"/><path d="m617.53,717.68l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45.04-1.46-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#26489e; stroke-width:0px;"/><g style="opacity:.68;"><path d="m605.05,862.76c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#feffff; stroke-width:0px;"/><path d="m477.52,644.63l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#26489e; stroke-width:0px;"/></g><g style="opacity:.68;"><path d="m605.05,862.76c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#feffff; stroke-width:0px;"/><path d="m738.56,647.23l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#26489e; stroke-width:0px;"/></g><path d="m481.22,610.59c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#5b9cd4; stroke-width:0px;"/><path d="m614.25,395.89l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#26489e; stroke-width:0px;"/><path d="m741.46,613.24c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99.99,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#5b9cd4; stroke-width:0px;"/><path d="m614.25,395.89l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#26489e; stroke-width:0px;"/><path d="m605.05,683.71c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78.02-.73.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#dbab3e; stroke-width:0px;"/><path d="m617.53,538.63l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45.04-1.46-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#26489e; stroke-width:0px;"/><g style="opacity:.68;"><path d="m605.05,683.71c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#feffff; stroke-width:0px;"/><path d="m477.52,465.58l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#26489e; stroke-width:0px;"/></g><g style="opacity:.68;"><path d="m605.05,683.71c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#feffff; stroke-width:0px;"/><path d="m738.56,468.18l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#26489e; stroke-width:0px;"/></g><path d="m323.93,342.75c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#5b9cd4; stroke-width:0px;"/><path d="m456.96,128.06l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#26489e; stroke-width:0px;"/><path d="m584.17,345.4c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99.99,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#5b9cd4; stroke-width:0px;"/><path d="m456.96,128.06l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#26489e; stroke-width:0px;"/><path d="m447.76,415.87c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78.02-.73.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#dbab3e; stroke-width:0px;"/><path d="m460.23,270.79l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45s-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#26489e; stroke-width:0px;"/><g style="opacity:.68;"><path d="m447.76,415.87c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#feffff; stroke-width:0px;"/><path d="m320.22,197.75l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#26489e; stroke-width:0px;"/></g><g style="opacity:.68;"><path d="m447.76,415.87c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#feffff; stroke-width:0px;"/><path d="m581.27,200.34l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#26489e; stroke-width:0px;"/></g><g style="opacity:.8;"><path d="m481.22,435.48c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#ef7028; stroke-width:0px;"/><path d="m614.25,220.79l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#b31f24; stroke-width:0px;"/><path d="m741.46,438.13c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99.99,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#ef7028; stroke-width:0px;"/><path d="m614.25,220.79l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#b31f24; stroke-width:0px;"/><path d="m605.05,508.6c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78.02-.73.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#ea5624; stroke-width:0px;"/><path d="m617.53,363.53l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45.04-1.46-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#8b1e1c; stroke-width:0px;"/><path d="m605.05,508.6c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#d55727; stroke-width:0px;"/><path d="m477.52,290.48l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#b31f24; stroke-width:0px;"/><path d="m605.05,508.6c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#d55727; stroke-width:0px;"/><path d="m738.56,293.08l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#b31f24; stroke-width:0px;"/></g><g style="opacity:.8;"><path d="m162.24,253.94c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.77.4-1.48,1.09-1.83l136.74-69.69c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.98.97,1.67l3.27,142.74c.02.77-.4,1.48-1.09,1.83l-136.31,69.96c-.29.15-.6.22-.91.22Z" style="fill:#60c3a7; stroke-width:0px;"/><path d="m295.28,39.24l3.27,142.74-136.31,69.96-3.7-143,136.74-69.69m0-4c-.62,0-1.24.14-1.82.44l-136.74,69.69c-1.37.7-2.22,2.13-2.18,3.67l3.7,143c.04,1.37.78,2.64,1.96,3.34.63.37,1.33.56,2.04.56.63,0,1.25-.15,1.83-.44l136.31-69.96c1.36-.7,2.21-2.12,2.17-3.65l-3.27-142.74c-.03-1.38-.77-2.64-1.95-3.34-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#0b5e64; stroke-width:0px;"/><path d="m422.48,256.59c-.35,0-.7-.09-1.01-.27l-123.94-72.61c-.6-.35-.97-.99-.99-1.68l-3.27-142.74c-.02-.72.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.69.09,1.01.27l124.31,72.29c.6.35.98.99,1,1.69l2.9,143.06c.01.72-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#60c3a7; stroke-width:0px;"/><path d="m295.28,39.24l124.31,72.29,2.9,143.06-123.94-72.61-3.27-142.74m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.09-1.96,3.54l3.27,142.74c.03,1.39.78,2.66,1.98,3.36l123.94,72.61c.62.37,1.32.55,2.02.55s1.4-.18,2.02-.55c1.25-.73,2-2.08,1.98-3.53l-2.9-143.06c-.03-1.4-.78-2.68-1.99-3.38l-124.31-72.29c-.62-.36-1.32-.54-2.01-.54h0Z" style="fill:#0b5e64; stroke-width:0px;"/><path d="m286.08,327.06c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.63-.37-1-1.05-.98-1.78.02-.73.44-1.39,1.09-1.72l136.31-69.96c.29-.15.6-.22.91-.22.35,0,.7.09,1.01.27l123.94,72.61c.63.37,1.01,1.05.99,1.78-.02.73-.43,1.39-1.08,1.72l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#7cc242; stroke-width:0px;"/><path d="m298.55,181.98l123.94,72.61-136.41,70.47-123.83-73.12,136.31-69.96m0-4c-.63,0-1.25.15-1.83.44l-136.31,69.96c-1.3.67-2.13,1.98-2.17,3.44-.04,1.46.71,2.82,1.96,3.56l123.83,73.12c.63.37,1.33.56,2.03.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.3-.67,2.12-1.99,2.16-3.45s-.72-2.82-1.98-3.56l-123.94-72.61c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#878d36; stroke-width:0px;"/><path d="m286.08,327.06c-.35,0-.7-.09-1.02-.28l-123.83-73.12c-.59-.35-.96-.98-.98-1.67l-3.7-143c-.02-.73.36-1.4.98-1.77.31-.19.67-.28,1.02-.28s.7.09,1.01.27l124.2,72.8c.6.35.97.99.99,1.68l3.33,143.33c.02.73-.36,1.4-.99,1.77-.31.18-.66.27-1.01.27Z" style="fill:#4dbe99; stroke-width:0px;"/><path d="m158.54,108.93l124.2,72.8,3.33,143.33-123.83-73.12-3.7-143m0-4c-.7,0-1.41.19-2.03.56-1.25.74-2,2.1-1.97,3.55l3.7,143c.04,1.38.78,2.64,1.96,3.34l123.83,73.12c.63.37,1.33.56,2.03.56s1.4-.18,2.02-.55c1.25-.73,2.01-2.09,1.98-3.54l-3.33-143.33c-.03-1.39-.78-2.66-1.98-3.36l-124.2-72.8c-.62-.37-1.32-.55-2.02-.55h0Z" style="fill:#0b5e64; stroke-width:0px;"/><path d="m286.08,327.06c-.35,0-.71-.09-1.02-.28-.59-.35-.96-.98-.98-1.67l-3.33-143.33c-.02-.77.4-1.48,1.09-1.83l136.84-70.2c.29-.15.6-.22.91-.22.36,0,.71.09,1.03.28.59.35.96.99.97,1.68l2.9,143.06c.01.76-.4,1.47-1.08,1.82l-136.41,70.47c-.29.15-.6.22-.92.22Z" style="fill:#4dbe99; stroke-width:0px;"/><path d="m419.58,111.53l2.9,143.06-136.41,70.47-3.33-143.33,136.84-70.2m0-4c-.63,0-1.25.15-1.83.44l-136.84,70.2c-1.36.7-2.21,2.12-2.17,3.65l3.33,143.33c.03,1.38.77,2.64,1.96,3.35.63.37,1.33.56,2.04.56.63,0,1.26-.15,1.84-.45l136.41-70.47c1.36-.7,2.19-2.11,2.16-3.63l-2.9-143.06c-.03-1.38-.76-2.65-1.95-3.35-.63-.38-1.34-.57-2.05-.57h0Z" style="fill:#0b5e64; stroke-width:0px;"/></g></svg>
|